commit 5429ff7969d0d8bf4abc77e3317e8187da3f48a1 Author: Calli Date: Fri Jun 23 12:07:45 2023 +0300 First working version of EVE-PI diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..64fc8dd --- /dev/null +++ b/.dockerignore @@ -0,0 +1,10 @@ +.env* +.git +.gitignore +.github +*.md +node_modules +npm-debug.log +docker +scripts +.next \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..7ebb8d2 --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +# Populate these env variables from the app you create at https://developers.eveonline.com/ +EVE_SSO_CLIENT_ID=Client ID +EVE_SSO_SECRET=Secret Key +EVE_SSO_CALLBACK_URL=Callback URL (This should be the domain you are hosting at or if run locally it should be http://localhost:3000) \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..bffb357 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "next/core-web-vitals" +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45c1abc --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local +.env + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4bc4c81 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,51 @@ +FROM node:18-alpine AS base + +# Install dependencies only when needed +FROM base AS deps +# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. +RUN apk add --no-cache libc6-compat +WORKDIR /app + +# Install dependencies based on the preferred package manager +COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ +RUN \ + if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ + elif [ -f package-lock.json ]; then npm ci; \ + elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \ + else echo "Lockfile not found." && exit 1; \ + fi + + +FROM base AS builder +WORKDIR /app +COPY --from=deps /app/node_modules ./node_modules +COPY . . + +ENV NEXT_TELEMETRY_DISABLED 1 + +RUN npm run build + +# Production image, copy all the files and run next +FROM base AS runner +WORKDIR /app + +ENV NODE_ENV production +ENV NEXT_TELEMETRY_DISABLED 1 + +RUN addgroup --system --gid 1001 nodejs +RUN adduser --system --uid 1001 nextjs + +COPY --from=builder /app/public ./public + +# Automatically leverage output traces to reduce image size +# https://nextjs.org/docs/advanced-features/output-file-tracing +COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ +COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static + +USER nextjs + +EXPOSE 3000 + +ENV PORT 3000 + +CMD ["node", "server.js"] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..36fc766 --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# Callis PI tool + +Simple tool to track your PI planet extractors. Login with your characters and hit refresh. + +## [Avanto hosted PI tool](https://pi.avanto.tk) + +![Screenshot of PI tool](https://github.com/calli-eve/eve-pi/blob/main/images/eve-pi.png) + +Features: + +- Group characters to account groups by clickin on the character icon +- Track amount of planets +- Track extractor status + - When the cycle will end + - Highlight the planet if extractor has stopped or has not been started. + +## Security + +All eve sso information is stored in your browser and refresh token is encrypted with apps EVE SSO secret. Backend processes only the token exchange, refresh and revoke that need the EVE_SSO_SECRET. Everything else is handled in frontend. + +## EVE SSO Callback + +Callback is handled by the SPA so when running you should point to the domain. There is no separate callback path. + +## Running + +To run the app you need to create a EVE SSO application here: https://developers.eveonline.com/ + +You will need these env variables from the application settings: + +``` +EVE_SSO_CLIENT_ID=Client ID +EVE_SSO_SECRET=Secret Key +EVE_SSO_CALLBACK_URL=Callback URL (This should be the domain you are hosting at or if run locally it should be http://localhost:3000) +``` + +## Run locally + +1. Create .env file in the directory root and populate with env variables you get from the EVE app you created. Example env file: .env.example +2. run `npm run dev` + +## Run the container + +1. Populate the environment variables in .env file +2. Run 'docker-compose up + +## Hosting + +Easiest way to host is deploy the app through Vercel https://vercel.com. Login with github, point to eve-pi repository, setup the env variables and the app should work out of the box. diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..39cfe29 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +--- +version: "2.1" +services: + eve-pi: + build: . + container_name: eve-pi + environment: + - EVE_SSO_CLIENT_ID=${EVE_SSO_CLIENT_ID} + - EVE_SSO_CALLBACK_URL=${EVE_SSO_CALLBACK_URL} + - EVE_SSO_SECRET=${EVE_SSO_SECRET} + ports: + - 3000:3000 + restart: unless-stopped diff --git a/images/eve-pi.png b/images/eve-pi.png new file mode 100644 index 0000000..e582b7f Binary files /dev/null and b/images/eve-pi.png differ diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..19487da --- /dev/null +++ b/next.config.js @@ -0,0 +1,16 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "images.evetech.net", + port: "", + pathname: "/**", + }, + ], + }, + output: "standalone", +}; + +module.exports = nextConfig; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1dd0220 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8066 @@ +{ + "name": "eve-pi", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "eve-pi", + "version": "0.1.0", + "dependencies": { + "@emotion/react": "^11.11.1", + "@emotion/styled": "^11.11.0", + "@fontsource/roboto": "^5.0.3", + "@mui/icons-material": "^5.11.16", + "@mui/material": "^5.13.5", + "@types/node": "20.3.1", + "@types/react": "18.2.12", + "@types/react-dom": "18.2.5", + "autoprefixer": "10.4.14", + "crypto-js": "^4.1.1", + "eslint": "8.42.0", + "eslint-config-next": "13.4.5", + "luxon": "^3.3.0", + "next": "13.4.5", + "react": "18.2.0", + "react-countdown": "^2.3.5", + "react-dom": "18.2.0", + "sharp": "^0.32.1", + "typescript": "5.1.3" + }, + "devDependencies": { + "@types/crypto-js": "^4.1.1", + "@types/luxon": "^3.3.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "dependencies": { + "@babel/highlight": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "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==", + "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==", + "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==", + "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==" + }, + "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==", + "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==", + "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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", + "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "dependencies": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "dependencies": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "dependencies": { + "@emotion/memoize": "^0.8.1" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, + "node_modules/@emotion/react": { + "version": "11.11.1", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz", + "integrity": "sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz", + "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==", + "dependencies": { + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" + }, + "node_modules/@emotion/styled": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", + "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/is-prop-valid": "^1.2.1", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/unitless": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.42.0.tgz", + "integrity": "sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@fontsource/roboto": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@fontsource/roboto/-/roboto-5.0.3.tgz", + "integrity": "sha512-jbZDFwEFARDlo8TqG7th/xjhuq87GYfFpFb+uxuy+0Ng1bhRVgBRWlLj8+WIKhCTOr+h4QXbjpybLWFLUirOwQ==" + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@mui/base": { + "version": "5.0.0-beta.4", + "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.4.tgz", + "integrity": "sha512-ejhtqYJpjDgHGEljjMBQWZ22yEK0OzIXNa7toJmmXsP4TT3W7xVy8bTJ0TniPDf+JNjrsgfgiFTDGdlEhV1E+g==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@emotion/is-prop-valid": "^1.2.1", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.13.1", + "@popperjs/core": "^2.11.8", + "clsx": "^1.2.1", + "prop-types": "^15.8.1", + "react-is": "^18.2.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/base/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/@mui/core-downloads-tracker": { + "version": "5.13.4", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.13.4.tgz", + "integrity": "sha512-yFrMWcrlI0TqRN5jpb6Ma9iI7sGTHpytdzzL33oskFHNQ8UgrtPas33Y1K7sWAMwCrr1qbWDrOHLAQG4tAzuSw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + } + }, + "node_modules/@mui/icons-material": { + "version": "5.11.16", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.16.tgz", + "integrity": "sha512-oKkx9z9Kwg40NtcIajF9uOXhxiyTZrrm9nmIJ4UjkU2IdHpd4QVLbCc/5hZN/y0C6qzi2Zlxyr9TGddQx2vx2A==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@mui/material": "^5.0.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/material": { + "version": "5.13.5", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.13.5.tgz", + "integrity": "sha512-eMay+Ue1OYXOFMQA5Aau7qbAa/kWHLAyi0McsbPTWssCbGehqkF6CIdPsfVGw6tlO+xPee1hUitphHJNL3xpOQ==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@mui/base": "5.0.0-beta.4", + "@mui/core-downloads-tracker": "^5.13.4", + "@mui/system": "^5.13.5", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.13.1", + "@types/react-transition-group": "^4.4.6", + "clsx": "^1.2.1", + "csstype": "^3.1.2", + "prop-types": "^15.8.1", + "react-is": "^18.2.0", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/material/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/@mui/private-theming": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.13.1.tgz", + "integrity": "sha512-HW4npLUD9BAkVppOUZHeO1FOKUJWAwbpy0VQoGe3McUYTlck1HezGHQCfBQ5S/Nszi7EViqiimECVl9xi+/WjQ==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@mui/utils": "^5.13.1", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/styled-engine": { + "version": "5.13.2", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.13.2.tgz", + "integrity": "sha512-VCYCU6xVtXOrIN8lcbuPmoG+u7FYuOERG++fpY74hPpEWkyFQG97F+/XfTQVYzlR2m7nPjnwVUgATcTCMEaMvw==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@emotion/cache": "^11.11.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@mui/system": { + "version": "5.13.5", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.13.5.tgz", + "integrity": "sha512-n0gzUxoZ2ZHZgnExkh2Htvo9uW2oakofgPRQrDoa/GQOWyRD0NH9MDszBwOb6AAoXZb+OV5TE7I4LeZ/dzgHYA==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@mui/private-theming": "^5.13.1", + "@mui/styled-engine": "^5.13.2", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.13.1", + "clsx": "^1.2.1", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0", + "react": "^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/types": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.4.tgz", + "integrity": "sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==", + "peerDependencies": { + "@types/react": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/utils": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.13.1.tgz", + "integrity": "sha512-6lXdWwmlUbEU2jUI8blw38Kt+3ly7xkmV9ljzY4Q20WhsJMWiNry9CX8M+TaP/HbtuyR8XKsdMgQW7h7MM3n3A==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@types/prop-types": "^15.7.5", + "@types/react-is": "^18.2.0", + "prop-types": "^15.8.1", + "react-is": "^18.2.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + }, + "peerDependencies": { + "react": "^17.0.0 || ^18.0.0" + } + }, + "node_modules/@mui/utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/@next/env": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.5.tgz", + "integrity": "sha512-SG/gKH6eij4vwQy87b/3mbpQ1X3x2vUdnpwq6/qL2IQWjtq58EY/UuNAp9CoEZoC9sI4L9AD1r+73Z9r4d3uug==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.5.tgz", + "integrity": "sha512-/xD/kyJhXmBZq+0xGKOdjL22c9/4i3mBAXaU9aOGEHTXqqFeOz8scJbScWF13aMqigeoFCsDqngIB2MIatcn4g==", + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.5.tgz", + "integrity": "sha512-XvTzi2ASUN5bECFIAAcBiSoDb0xsq+KLj4F0bof4d4rdc+FgOqLvseGQaOXwVi1TIh5bHa7o4b6droSJMO5+2g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.5.tgz", + "integrity": "sha512-NQdqal/VKAqlJTuzhjZmNtdo8QSqwmfO7b2xJSAengTEVxQvsH76oGEzQeIv8Ci4NP6DysAFtFrJq++TmIxcUA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.5.tgz", + "integrity": "sha512-nB8TjtpJCXtzIFjYOMbnQu68ajkA8QK58TreHjTGojSQjsF0StDqo5zFHglVVVHrd8d3N/+EjC18yFNSWnd/ZA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.5.tgz", + "integrity": "sha512-W126XUW599OV3giSH9Co40VpT8VAOT47xONVHXZaYEpeca0qEevjj6WUr5IJu/8u+XGWm5xI1S0DYWjR6W+olw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.5.tgz", + "integrity": "sha512-ZbPLO/oztQdtjGmWvGhRmtkZ6j9kQqg65kiO7F7Ijj7ojTtu3hh/vY+XRsHa/4Cse6HgyJ8XGZJMGoLb8ecQfQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.5.tgz", + "integrity": "sha512-f+/h8KMNixVUoRB+2vza8I+jsthJ4KcvopGUsDIUHe7Q4t+m8nKwGFBeyNu9qNIenYK5g5QYEsSwYFEqZylrTQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.5.tgz", + "integrity": "sha512-dvtPQZ5+J+zUE1uq7gP853Oj63e+n0T1ydZ/yRdVh7d8zW9ZFuC9fFrg3MqP1cv1NPPur8rrTqDKN2mRBkSSBw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.5.tgz", + "integrity": "sha512-gK9zwGe25x31S4AjPy3Bf2niQvHIAbmwgkzmqWG3OmD4K2Z/Dh2ju4vuyzPzIt0pwQe4B520meP9NizTBmVWSg==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.5.tgz", + "integrity": "sha512-iyNQVc7eGehrik9RJt9xGcnO6b/pi8C7GCfg8RGenx1IlalEKbYRgBJloF7DQzwlrV47E9bQl8swT+JawaNcKA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "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==", + "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==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", + "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", + "dependencies": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.2.12", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", + "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/luxon": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@types/luxon/-/luxon-3.3.0.tgz", + "integrity": "sha512-uKRI5QORDnrGFYgcdAVnHvEIvEZ8noTpP/Bg+HeUzZghwinDlIS87DEenV5r1YoOF9G4x600YsUXLWZ19rmTmg==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.3.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", + "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "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.2.12", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.12.tgz", + "integrity": "sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.5", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.5.tgz", + "integrity": "sha512-sRQsOS/sCLnpQhR4DSKGTtWFE3FZjpQa86KPVbhUqdYMRZ9FEFcfAytKhR/vUG2rH1oFbOOej6cuD7MFSobDRQ==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-is": { + "version": "18.2.1", + "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-18.2.1.tgz", + "integrity": "sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.11.tgz", + "integrity": "sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.59.11", + "@typescript-eslint/types": "5.59.11", + "@typescript-eslint/typescript-estree": "5.59.11", + "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.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.11.tgz", + "integrity": "sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==", + "dependencies": { + "@typescript-eslint/types": "5.59.11", + "@typescript-eslint/visitor-keys": "5.59.11" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.11.tgz", + "integrity": "sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==", + "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.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.11.tgz", + "integrity": "sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==", + "dependencies": { + "@typescript-eslint/types": "5.59.11", + "@typescript-eslint/visitor-keys": "5.59.11", + "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/visitor-keys": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.11.tgz", + "integrity": "sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==", + "dependencies": { + "@typescript-eslint/types": "5.59.11", + "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/acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", + "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==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/aria-query": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.2.1.tgz", + "integrity": "sha512-7uFg4b+lETFgdaJyETnILsXgnnzVnkHcgRbwbPwevm5x/LmUlt3MjczMRe1zg824iBgXZNRPTBftNYyRSKLp2g==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "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/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "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==", + "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==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "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.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "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/bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "dependencies": { + "run-applescript": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "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==", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001503", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz", + "integrity": "sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==", + "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/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "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==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "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==" + }, + "node_modules/default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "dependencies": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "engines": { + "node": ">=8" + } + }, + "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==", + "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==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.431", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.431.tgz", + "integrity": "sha512-m232JTVmCawA2vG+1azVxhKZ9Sv1Q//xxNv5PkP5rWxGgQE8c3CiZFrh8Xnp+d1NmNxlu3QQrGIfdeW5TtXX5w==" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "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==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "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==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", + "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.42.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.5.tgz", + "integrity": "sha512-7qgJmRp9ClRzPgkzEz7ahK+Rasiv4k2aU3eqkkORzseNUGdtImZVYomcXUhUheHwkxzdN2p//nbIA7zJrCxsCg==", + "dependencies": { + "@next/eslint-plugin-next": "13.4.5", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", + "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "get-tsconfig": "^4.5.0", + "globby": "^13.1.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "synckit": "^0.8.5" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-import-resolver-typescript/node_modules/globby": { + "version": "13.1.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", + "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-typescript/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "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==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "engines": { + "node": ">=6" + } + }, + "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==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "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-glob/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==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "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==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "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==", + "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==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.0.tgz", + "integrity": "sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "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": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "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==", + "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==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "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==", + "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==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "engines": { + "node": ">=14.18.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==", + "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.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "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==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-wsl/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "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": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "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==", + "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==" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==" + }, + "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/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==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/luxon": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.3.0.tgz", + "integrity": "sha512-An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "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==" + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/next": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.5.tgz", + "integrity": "sha512-pfNsRLVM9e5Y1/z02VakJRfD6hMQkr24FaN2xc9GbcZDBxoOgiNAViSg5cXwlWCoMhtm4U315D7XYhgOr96Q3Q==", + "dependencies": { + "@next/env": "13.4.5", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=16.8.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.4.5", + "@next/swc-darwin-x64": "13.4.5", + "@next/swc-linux-arm64-gnu": "13.4.5", + "@next/swc-linux-arm64-musl": "13.4.5", + "@next/swc-linux-x64-gnu": "13.4.5", + "@next/swc-linux-x64-musl": "13.4.5", + "@next/swc-win32-arm64-msvc": "13.4.5", + "@next/swc-win32-ia32-msvc": "13.4.5", + "@next/swc-win32-x64-msvc": "13.4.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "fibers": ">= 3.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "fibers": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-abi": { + "version": "3.45.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.45.0.tgz", + "integrity": "sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "dependencies": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "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==", + "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/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "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==", + "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/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true, + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "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==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "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==", + "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==", + "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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-countdown": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/react-countdown/-/react-countdown-2.3.5.tgz", + "integrity": "sha512-K26ENYEesMfPxhRRtm1r+Pf70SErrvW3g4CArLi/x6MPFjgfDFYePT4UghEj8p2nI0cqVV7/JjDgjyr//U60Og==", + "dependencies": { + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": ">= 15", + "react-dom": ">= 15" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/run-applescript/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/run-applescript/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/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==", + "engines": { + "node": ">=6" + } + }, + "node_modules/run-applescript/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-applescript/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "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==", + "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/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", + "hasInstallScript": true, + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.1", + "node-addon-api": "^6.1.0", + "prebuild-install": "^7.1.1", + "semver": "^7.5.0", + "simple-get": "^4.0.1", + "tar-fs": "^2.1.1", + "tunnel-agent": "^0.6.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "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/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "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/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "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": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "engines": { + "node": ">=4" + } + }, + "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==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "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/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "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==", + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "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/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", + "requires": { + "@babel/highlight": "^7.22.5" + } + }, + "@babel/helper-module-imports": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + }, + "@babel/helper-validator-identifier": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==" + }, + "@babel/highlight": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", + "requires": { + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.0.0", + "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==", + "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==", + "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==", + "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==" + }, + "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==" + }, + "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==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/runtime": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", + "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@babel/types": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", + "to-fast-properties": "^2.0.0" + } + }, + "@emotion/babel-plugin": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "requires": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + }, + "@emotion/is-prop-valid": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "requires": { + "@emotion/memoize": "^0.8.1" + } + }, + "@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, + "@emotion/react": { + "version": "11.11.1", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz", + "integrity": "sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==", + "requires": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + } + }, + "@emotion/serialize": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz", + "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==", + "requires": { + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", + "csstype": "^3.0.2" + } + }, + "@emotion/sheet": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" + }, + "@emotion/styled": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", + "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", + "requires": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/is-prop-valid": "^1.2.1", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1" + } + }, + "@emotion/unitless": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + }, + "@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "requires": {} + }, + "@emotion/utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" + }, + "@emotion/weak-memoize": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==" + }, + "@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.42.0.tgz", + "integrity": "sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==" + }, + "@fontsource/roboto": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@fontsource/roboto/-/roboto-5.0.3.tgz", + "integrity": "sha512-jbZDFwEFARDlo8TqG7th/xjhuq87GYfFpFb+uxuy+0Ng1bhRVgBRWlLj8+WIKhCTOr+h4QXbjpybLWFLUirOwQ==" + }, + "@humanwhocodes/config-array": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "@mui/base": { + "version": "5.0.0-beta.4", + "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.4.tgz", + "integrity": "sha512-ejhtqYJpjDgHGEljjMBQWZ22yEK0OzIXNa7toJmmXsP4TT3W7xVy8bTJ0TniPDf+JNjrsgfgiFTDGdlEhV1E+g==", + "requires": { + "@babel/runtime": "^7.21.0", + "@emotion/is-prop-valid": "^1.2.1", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.13.1", + "@popperjs/core": "^2.11.8", + "clsx": "^1.2.1", + "prop-types": "^15.8.1", + "react-is": "^18.2.0" + }, + "dependencies": { + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + } + }, + "@mui/core-downloads-tracker": { + "version": "5.13.4", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.13.4.tgz", + "integrity": "sha512-yFrMWcrlI0TqRN5jpb6Ma9iI7sGTHpytdzzL33oskFHNQ8UgrtPas33Y1K7sWAMwCrr1qbWDrOHLAQG4tAzuSw==" + }, + "@mui/icons-material": { + "version": "5.11.16", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.16.tgz", + "integrity": "sha512-oKkx9z9Kwg40NtcIajF9uOXhxiyTZrrm9nmIJ4UjkU2IdHpd4QVLbCc/5hZN/y0C6qzi2Zlxyr9TGddQx2vx2A==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, + "@mui/material": { + "version": "5.13.5", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.13.5.tgz", + "integrity": "sha512-eMay+Ue1OYXOFMQA5Aau7qbAa/kWHLAyi0McsbPTWssCbGehqkF6CIdPsfVGw6tlO+xPee1hUitphHJNL3xpOQ==", + "requires": { + "@babel/runtime": "^7.21.0", + "@mui/base": "5.0.0-beta.4", + "@mui/core-downloads-tracker": "^5.13.4", + "@mui/system": "^5.13.5", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.13.1", + "@types/react-transition-group": "^4.4.6", + "clsx": "^1.2.1", + "csstype": "^3.1.2", + "prop-types": "^15.8.1", + "react-is": "^18.2.0", + "react-transition-group": "^4.4.5" + }, + "dependencies": { + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + } + }, + "@mui/private-theming": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.13.1.tgz", + "integrity": "sha512-HW4npLUD9BAkVppOUZHeO1FOKUJWAwbpy0VQoGe3McUYTlck1HezGHQCfBQ5S/Nszi7EViqiimECVl9xi+/WjQ==", + "requires": { + "@babel/runtime": "^7.21.0", + "@mui/utils": "^5.13.1", + "prop-types": "^15.8.1" + } + }, + "@mui/styled-engine": { + "version": "5.13.2", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.13.2.tgz", + "integrity": "sha512-VCYCU6xVtXOrIN8lcbuPmoG+u7FYuOERG++fpY74hPpEWkyFQG97F+/XfTQVYzlR2m7nPjnwVUgATcTCMEaMvw==", + "requires": { + "@babel/runtime": "^7.21.0", + "@emotion/cache": "^11.11.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + } + }, + "@mui/system": { + "version": "5.13.5", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.13.5.tgz", + "integrity": "sha512-n0gzUxoZ2ZHZgnExkh2Htvo9uW2oakofgPRQrDoa/GQOWyRD0NH9MDszBwOb6AAoXZb+OV5TE7I4LeZ/dzgHYA==", + "requires": { + "@babel/runtime": "^7.21.0", + "@mui/private-theming": "^5.13.1", + "@mui/styled-engine": "^5.13.2", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.13.1", + "clsx": "^1.2.1", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + } + }, + "@mui/types": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.4.tgz", + "integrity": "sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==", + "requires": {} + }, + "@mui/utils": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.13.1.tgz", + "integrity": "sha512-6lXdWwmlUbEU2jUI8blw38Kt+3ly7xkmV9ljzY4Q20WhsJMWiNry9CX8M+TaP/HbtuyR8XKsdMgQW7h7MM3n3A==", + "requires": { + "@babel/runtime": "^7.21.0", + "@types/prop-types": "^15.7.5", + "@types/react-is": "^18.2.0", + "prop-types": "^15.8.1", + "react-is": "^18.2.0" + }, + "dependencies": { + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + } + }, + "@next/env": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.5.tgz", + "integrity": "sha512-SG/gKH6eij4vwQy87b/3mbpQ1X3x2vUdnpwq6/qL2IQWjtq58EY/UuNAp9CoEZoC9sI4L9AD1r+73Z9r4d3uug==" + }, + "@next/eslint-plugin-next": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.5.tgz", + "integrity": "sha512-/xD/kyJhXmBZq+0xGKOdjL22c9/4i3mBAXaU9aOGEHTXqqFeOz8scJbScWF13aMqigeoFCsDqngIB2MIatcn4g==", + "requires": { + "glob": "7.1.7" + } + }, + "@next/swc-darwin-arm64": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.5.tgz", + "integrity": "sha512-XvTzi2ASUN5bECFIAAcBiSoDb0xsq+KLj4F0bof4d4rdc+FgOqLvseGQaOXwVi1TIh5bHa7o4b6droSJMO5+2g==", + "optional": true + }, + "@next/swc-darwin-x64": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.5.tgz", + "integrity": "sha512-NQdqal/VKAqlJTuzhjZmNtdo8QSqwmfO7b2xJSAengTEVxQvsH76oGEzQeIv8Ci4NP6DysAFtFrJq++TmIxcUA==", + "optional": true + }, + "@next/swc-linux-arm64-gnu": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.5.tgz", + "integrity": "sha512-nB8TjtpJCXtzIFjYOMbnQu68ajkA8QK58TreHjTGojSQjsF0StDqo5zFHglVVVHrd8d3N/+EjC18yFNSWnd/ZA==", + "optional": true + }, + "@next/swc-linux-arm64-musl": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.5.tgz", + "integrity": "sha512-W126XUW599OV3giSH9Co40VpT8VAOT47xONVHXZaYEpeca0qEevjj6WUr5IJu/8u+XGWm5xI1S0DYWjR6W+olw==", + "optional": true + }, + "@next/swc-linux-x64-gnu": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.5.tgz", + "integrity": "sha512-ZbPLO/oztQdtjGmWvGhRmtkZ6j9kQqg65kiO7F7Ijj7ojTtu3hh/vY+XRsHa/4Cse6HgyJ8XGZJMGoLb8ecQfQ==", + "optional": true + }, + "@next/swc-linux-x64-musl": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.5.tgz", + "integrity": "sha512-f+/h8KMNixVUoRB+2vza8I+jsthJ4KcvopGUsDIUHe7Q4t+m8nKwGFBeyNu9qNIenYK5g5QYEsSwYFEqZylrTQ==", + "optional": true + }, + "@next/swc-win32-arm64-msvc": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.5.tgz", + "integrity": "sha512-dvtPQZ5+J+zUE1uq7gP853Oj63e+n0T1ydZ/yRdVh7d8zW9ZFuC9fFrg3MqP1cv1NPPur8rrTqDKN2mRBkSSBw==", + "optional": true + }, + "@next/swc-win32-ia32-msvc": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.5.tgz", + "integrity": "sha512-gK9zwGe25x31S4AjPy3Bf2niQvHIAbmwgkzmqWG3OmD4K2Z/Dh2ju4vuyzPzIt0pwQe4B520meP9NizTBmVWSg==", + "optional": true + }, + "@next/swc-win32-x64-msvc": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.5.tgz", + "integrity": "sha512-iyNQVc7eGehrik9RJt9xGcnO6b/pi8C7GCfg8RGenx1IlalEKbYRgBJloF7DQzwlrV47E9bQl8swT+JawaNcKA==", + "optional": 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==", + "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==" + }, + "@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==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgr/utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", + "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", + "requires": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.2.12", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.5.0" + } + }, + "@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" + }, + "@rushstack/eslint-patch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", + "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" + }, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@types/crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "@types/luxon": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@types/luxon/-/luxon-3.3.0.tgz", + "integrity": "sha512-uKRI5QORDnrGFYgcdAVnHvEIvEZ8noTpP/Bg+HeUzZghwinDlIS87DEenV5r1YoOF9G4x600YsUXLWZ19rmTmg==", + "dev": true + }, + "@types/node": { + "version": "20.3.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", + "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@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.2.12", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.12.tgz", + "integrity": "sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.2.5", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.5.tgz", + "integrity": "sha512-sRQsOS/sCLnpQhR4DSKGTtWFE3FZjpQa86KPVbhUqdYMRZ9FEFcfAytKhR/vUG2rH1oFbOOej6cuD7MFSobDRQ==", + "requires": { + "@types/react": "*" + } + }, + "@types/react-is": { + "version": "18.2.1", + "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-18.2.1.tgz", + "integrity": "sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw==", + "requires": { + "@types/react": "*" + } + }, + "@types/react-transition-group": { + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "@typescript-eslint/parser": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.11.tgz", + "integrity": "sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==", + "requires": { + "@typescript-eslint/scope-manager": "5.59.11", + "@typescript-eslint/types": "5.59.11", + "@typescript-eslint/typescript-estree": "5.59.11", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.11.tgz", + "integrity": "sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==", + "requires": { + "@typescript-eslint/types": "5.59.11", + "@typescript-eslint/visitor-keys": "5.59.11" + } + }, + "@typescript-eslint/types": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.11.tgz", + "integrity": "sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.11.tgz", + "integrity": "sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==", + "requires": { + "@typescript-eslint/types": "5.59.11", + "@typescript-eslint/visitor-keys": "5.59.11", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.59.11", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.11.tgz", + "integrity": "sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==", + "requires": { + "@typescript-eslint/types": "5.59.11", + "eslint-visitor-keys": "^3.3.0" + } + }, + "acorn": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", + "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.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==" + }, + "aria-query": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.2.1.tgz", + "integrity": "sha512-7uFg4b+lETFgdaJyETnILsXgnnzVnkHcgRbwbPwevm5x/LmUlt3MjczMRe1zg824iBgXZNRPTBftNYyRSKLp2g==", + "requires": { + "dequal": "^2.0.3" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + } + }, + "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==" + }, + "array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "requires": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, + "axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==" + }, + "axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "requires": { + "dequal": "^2.0.3" + } + }, + "babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "requires": { + "big-integer": "^1.6.44" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "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==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.9", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", + "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", + "requires": { + "caniuse-lite": "^1.0.30001503", + "electron-to-chromium": "^1.4.431", + "node-releases": "^2.0.12", + "update-browserslist-db": "^1.0.11" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "requires": { + "run-applescript": "^5.0.0" + } + }, + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "caniuse-lite": { + "version": "1.0.30001503", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz", + "integrity": "sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" + }, + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.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==", + "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==" + }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "requires": { + "mimic-response": "^3.1.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==" + }, + "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==" + }, + "default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "requires": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + } + }, + "default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "requires": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + } + }, + "define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "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==", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "electron-to-chromium": { + "version": "1.4.431", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.431.tgz", + "integrity": "sha512-m232JTVmCawA2vG+1azVxhKZ9Sv1Q//xxNv5PkP5rWxGgQE8c3CiZFrh8Xnp+d1NmNxlu3QQrGIfdeW5TtXX5w==" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "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==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "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==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + } + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "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==" + }, + "eslint": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", + "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.42.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + } + }, + "eslint-config-next": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.5.tgz", + "integrity": "sha512-7qgJmRp9ClRzPgkzEz7ahK+Rasiv4k2aU3eqkkORzseNUGdtImZVYomcXUhUheHwkxzdN2p//nbIA7zJrCxsCg==", + "requires": { + "@next/eslint-plugin-next": "13.4.5", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-import-resolver-typescript": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", + "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", + "requires": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "get-tsconfig": "^4.5.0", + "globby": "^13.1.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "synckit": "^0.8.5" + }, + "dependencies": { + "globby": { + "version": "13.1.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", + "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + } + }, + "eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "requires": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "requires": {} + }, + "eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" + }, + "espree": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + } + }, + "expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" + }, + "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==" + }, + "fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "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" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "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==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "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==", + "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==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.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==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-tsconfig": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.0.tgz", + "integrity": "sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==", + "requires": { + "resolve-pkg-maps": "^1.0.0" + } + }, + "github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "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": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "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==", + "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==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "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==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "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==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "requires": { + "is-docker": "^3.0.0" + } + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + }, + "dependencies": { + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + } + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "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": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "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==" + }, + "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==" + }, + "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": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "requires": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + } + }, + "language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "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==" + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "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==" + }, + "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" + } + }, + "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==", + "requires": { + "yallist": "^4.0.0" + } + }, + "luxon": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.3.0.tgz", + "integrity": "sha512-An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg==" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + }, + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "next": { + "version": "13.4.5", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.5.tgz", + "integrity": "sha512-pfNsRLVM9e5Y1/z02VakJRfD6hMQkr24FaN2xc9GbcZDBxoOgiNAViSg5cXwlWCoMhtm4U315D7XYhgOr96Q3Q==", + "requires": { + "@next/env": "13.4.5", + "@next/swc-darwin-arm64": "13.4.5", + "@next/swc-darwin-x64": "13.4.5", + "@next/swc-linux-arm64-gnu": "13.4.5", + "@next/swc-linux-arm64-musl": "13.4.5", + "@next/swc-linux-x64-gnu": "13.4.5", + "@next/swc-linux-x64-musl": "13.4.5", + "@next/swc-win32-arm64-msvc": "13.4.5", + "@next/swc-win32-ia32-msvc": "13.4.5", + "@next/swc-win32-x64-msvc": "13.4.5", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "dependencies": { + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + } + } + }, + "node-abi": { + "version": "3.45.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.45.0.tgz", + "integrity": "sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==", + "requires": { + "semver": "^7.3.5" + } + }, + "node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" + }, + "node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "requires": { + "path-key": "^4.0.0" + }, + "dependencies": { + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + } + }, + "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==" + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "requires": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "requires": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "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" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "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==", + "requires": { + "callsites": "^3.0.0" + } + }, + "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==", + "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" + } + }, + "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==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "postcss": { + "version": "8.4.24", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", + "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", + "peer": true, + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", + "requires": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "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==" + } + } + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-countdown": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/react-countdown/-/react-countdown-2.3.5.tgz", + "integrity": "sha512-K26ENYEesMfPxhRRtm1r+Pf70SErrvW3g4CArLi/x6MPFjgfDFYePT4UghEj8p2nI0cqVV7/JjDgjyr//U60Og==", + "requires": { + "prop-types": "^15.7.2" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + } + }, + "resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "requires": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "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==" + }, + "resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "requires": { + "execa": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + } + }, + "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==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "sharp": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", + "requires": { + "color": "^4.2.3", + "detect-libc": "^2.0.1", + "node-addon-api": "^6.1.0", + "prebuild-install": "^7.1.1", + "semver": "^7.5.0", + "simple-get": "^4.0.1", + "tar-fs": "^2.1.1", + "tunnel-agent": "^0.6.0" + } + }, + "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==", + "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==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "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==" + }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + }, + "simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "requires": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + }, + "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==" + }, + "styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "requires": { + "client-only": "0.0.1" + } + }, + "stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "requires": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==" + }, + "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==" + }, + "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==", + "requires": { + "is-number": "^7.0.0" + } + }, + "tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz", + "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "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==" + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typescript": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==" + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + }, + "update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + } + }, + "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==" + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + }, + "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==" + }, + "zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..bbbe92e --- /dev/null +++ b/package.json @@ -0,0 +1,37 @@ +{ + "name": "eve-pi", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint", + "esi-swagger": "npx swagger-typescript-api -p https://esi.evetech.net/latest/swagger.json -o ./src -n esi-api.ts" + }, + "dependencies": { + "@emotion/react": "^11.11.1", + "@emotion/styled": "^11.11.0", + "@fontsource/roboto": "^5.0.3", + "@mui/icons-material": "^5.11.16", + "@mui/material": "^5.13.5", + "@types/node": "20.3.1", + "@types/react": "18.2.12", + "@types/react-dom": "18.2.5", + "autoprefixer": "10.4.14", + "crypto-js": "^4.1.1", + "eslint": "8.42.0", + "eslint-config-next": "13.4.5", + "luxon": "^3.3.0", + "next": "13.4.5", + "react": "18.2.0", + "react-countdown": "^2.3.5", + "react-dom": "18.2.0", + "sharp": "^0.32.1", + "typescript": "5.1.3" + }, + "devDependencies": { + "@types/crypto-js": "^4.1.1", + "@types/luxon": "^3.3.0" + } +} diff --git a/public/barren.png b/public/barren.png new file mode 100644 index 0000000..53876b2 Binary files /dev/null and b/public/barren.png differ diff --git a/public/gas.png b/public/gas.png new file mode 100644 index 0000000..4040f7d Binary files /dev/null and b/public/gas.png differ diff --git a/public/ice.png b/public/ice.png new file mode 100644 index 0000000..118b33f Binary files /dev/null and b/public/ice.png differ diff --git a/public/lava.png b/public/lava.png new file mode 100644 index 0000000..f61cf6f Binary files /dev/null and b/public/lava.png differ diff --git a/public/noplanet.png b/public/noplanet.png new file mode 100644 index 0000000..39a5e2b Binary files /dev/null and b/public/noplanet.png differ diff --git a/public/oceanic.png b/public/oceanic.png new file mode 100644 index 0000000..ad7d765 Binary files /dev/null and b/public/oceanic.png differ diff --git a/public/plasma.png b/public/plasma.png new file mode 100644 index 0000000..2878a0f Binary files /dev/null and b/public/plasma.png differ diff --git a/public/stopped.png b/public/stopped.png new file mode 100644 index 0000000..e182e37 Binary files /dev/null and b/public/stopped.png differ diff --git a/public/storm.png b/public/storm.png new file mode 100644 index 0000000..1f50d22 Binary files /dev/null and b/public/storm.png differ diff --git a/public/temperate.png b/public/temperate.png new file mode 100644 index 0000000..736d673 Binary files /dev/null and b/public/temperate.png differ diff --git a/src/app/components/Account/AccountCard.tsx b/src/app/components/Account/AccountCard.tsx new file mode 100644 index 0000000..a8119b6 --- /dev/null +++ b/src/app/components/Account/AccountCard.tsx @@ -0,0 +1,35 @@ +import { AccessToken } from "@/types"; +import { Box, Stack, Typography } from "@mui/material"; +import { CharacterRow } from "../Characters/CharacterRow"; +import { PlanetaryInteractionRow } from "../PlanetaryInteraction/PlanetaryInteractionRow"; + +export const AccountCard = ({ + characters, + sessionReady, +}: { + characters: AccessToken[]; + sessionReady: boolean; +}) => { + return ( + + Account: {characters[0].account} + {characters.map((c) => ( + + + {sessionReady && } + + ))} + + ); +}; diff --git a/src/app/components/Characters/CharacterDialog.tsx b/src/app/components/Characters/CharacterDialog.tsx new file mode 100644 index 0000000..13e5216 --- /dev/null +++ b/src/app/components/Characters/CharacterDialog.tsx @@ -0,0 +1,70 @@ +import { Button, Dialog, DialogActions, DialogTitle } from "@mui/material"; +import { AccessToken, CharacterUpdate } from "../../../types"; +import { useEffect, useState } from "react"; +import TextField from "@mui/material/TextField"; +import { revokeToken } from "@/esi-sso"; + +export const CharacterDialog = ({ + character, + closeDialog, + deleteCharacter, + updateCharacter, +}: { + character: AccessToken | undefined; + closeDialog: () => void; + deleteCharacter: (character: AccessToken) => void; + updateCharacter: (characer: AccessToken, update: CharacterUpdate) => void; +}) => { + const [account, setAccount] = useState(""); + + useEffect(() => { + if (character?.account) setAccount(character.account); + }, [character]); + + const logout = (character: AccessToken) => { + revokeToken(character) + .then() + .catch((e) => console.log("Logout failed")); + }; + + return ( + + {character && character.character.name} + setAccount(event.target.value)} + /> + + + + + + + ); +}; diff --git a/src/app/components/Characters/CharacterRow.tsx b/src/app/components/Characters/CharacterRow.tsx new file mode 100644 index 0000000..e9f793f --- /dev/null +++ b/src/app/components/Characters/CharacterRow.tsx @@ -0,0 +1,57 @@ +"use client"; + +import { useContext, useState } from "react"; +import Image from "next/image"; +import Stack from "@mui/material/Stack"; +import { styled } from "@mui/material/styles"; +import React from "react"; +import { CharacterDialog } from "./CharacterDialog"; +import { AccessToken } from "@/types"; +import { Box } from "@mui/material"; +import { EVE_IMAGE_URL } from "@/const"; +import { CharacterContext } from "@/app/context/Context"; + +const StackItem = styled(Stack)(({ theme }) => ({ + ...theme.typography.body2, + padding: theme.spacing(2), + textAlign: "left", + justifyContent: "center", + alignItems: "center", +})); + +export const CharacterRow = ({ character }: { character: AccessToken }) => { + const [selectedCharacter, setSelectedCharacter] = useState< + AccessToken | undefined + >(undefined); + + const { deleteCharacter, updateCharacter } = useContext(CharacterContext); + + return ( + + setSelectedCharacter(undefined)} + /> + setSelectedCharacter(character)} + display="flex" + flexDirection="column" + > + + {character.character.name} + + + ); +}; diff --git a/src/app/components/Login/LoginButton.tsx b/src/app/components/Login/LoginButton.tsx new file mode 100644 index 0000000..f40c03e --- /dev/null +++ b/src/app/components/Login/LoginButton.tsx @@ -0,0 +1,22 @@ +import { Button } from "@mui/material"; +import { useState } from "react"; +import { LoginDialog } from "./LoginDialog"; + +export const LoginButton = () => { + const [loginDialogOpen, setLoginDialogOpen] = useState(false); + return ( + <> + + setLoginDialogOpen(false)} + /> + + ); +}; diff --git a/src/app/components/Login/LoginDialog.tsx b/src/app/components/Login/LoginDialog.tsx new file mode 100644 index 0000000..f5f4fef --- /dev/null +++ b/src/app/components/Login/LoginDialog.tsx @@ -0,0 +1,71 @@ +import DialogTitle from "@mui/material/DialogTitle"; +import Dialog from "@mui/material/Dialog"; +import Button from "@mui/material/Button"; +import { Box, DialogActions } from "@mui/material"; +import { useContext, useEffect, useState } from "react"; +import { eveSwagger, loginParameters } from "@/esi-sso"; +import { SessionContext } from "@/app/context/Context"; + +export const LoginDialog = ({ + open, + closeDialog, +}: { + open: boolean; + closeDialog: () => void; +}) => { + const [scopes] = useState(["esi-planets.manage_planets.v1"]); + const [selectedScopes, setSelectedScopes] = useState([ + "esi-planets.manage_planets.v1", + ]); + const [ssoUrl, setSsoUrl] = useState(undefined); + const [loginUrl, setLoginUrl] = useState(undefined); + + const { EVE_SSO_CLIENT_ID, EVE_SSO_CALLBACK_URL } = + useContext(SessionContext); + + useEffect(() => { + eveSwagger().then((json) => { + setSsoUrl(json.securityDefinitions.evesso.authorizationUrl); + }); + }, []); + + useEffect(() => { + if (!ssoUrl || selectedScopes.length === 0) return; + loginParameters( + selectedScopes, + EVE_SSO_CLIENT_ID, + EVE_SSO_CALLBACK_URL + ).then((res) => setLoginUrl(ssoUrl + "?" + res)); + }, [selectedScopes, ssoUrl, EVE_SSO_CLIENT_ID, EVE_SSO_CALLBACK_URL]); + + return ( + + Select scopes to login with + {scopes.map((scope) => ( + + v === scope)} + onChange={() => { + selectedScopes.some((v) => v === scope) + ? setSelectedScopes(selectedScopes.filter((s) => s !== scope)) + : setSelectedScopes([...selectedScopes, scope]); + }} + /> + {scope} + + ))} + + + + + + ); +}; diff --git a/src/app/components/Login/RefreshButton.tsx b/src/app/components/Login/RefreshButton.tsx new file mode 100644 index 0000000..6e67d36 --- /dev/null +++ b/src/app/components/Login/RefreshButton.tsx @@ -0,0 +1,16 @@ +import { SessionContext } from "@/app/context/Context"; +import { Button } from "@mui/material"; +import { useContext } from "react"; + +export const RefreshButton = () => { + const { refreshSession } = useContext(SessionContext); + return ( + + ); +}; diff --git a/src/app/components/MainGrid.tsx b/src/app/components/MainGrid.tsx new file mode 100644 index 0000000..fd3d332 --- /dev/null +++ b/src/app/components/MainGrid.tsx @@ -0,0 +1,45 @@ +import { useContext } from "react"; +import { Box, Grid, Stack } from "@mui/material"; +import { LoginButton } from "./Login/LoginButton"; +import { RefreshButton } from "./Login/RefreshButton"; +import { AccountCard } from "./Account/AccountCard"; +import { AccessToken } from "@/types"; +import { CharacterContext } from "../context/Context"; + +interface Grouped { + [key: string]: AccessToken[]; +} + +export const MainGrid = ({ sessionReady }: { sessionReady: boolean }) => { + const { characters } = useContext(CharacterContext); + const groupByAccount = characters.reduce((group, character) => { + const { account } = character; + group[account ?? ""] = group[account ?? ""] ?? []; + group[account ?? ""].push(character); + return group; + }, {}); + + return ( + + + + + + + + + + + + {Object.values(groupByAccount).map((g, id) => ( + + ))} + + + + ); +}; diff --git a/src/app/components/PlanetaryInteraction/NoPlanetCard.tsx b/src/app/components/PlanetaryInteraction/NoPlanetCard.tsx new file mode 100644 index 0000000..cfb1300 --- /dev/null +++ b/src/app/components/PlanetaryInteraction/NoPlanetCard.tsx @@ -0,0 +1,32 @@ +import { Stack, Typography, styled } from "@mui/material"; +import Image from "next/image"; + +const StackItem = styled(Stack)(({ theme }) => ({ + ...theme.typography.body2, + padding: 0, + textAlign: "left", + justifyContent: "center", + alignItems: "center", +})); + +export const NoPlanetCard = ({}: {}) => { + return ( + + + + No planet + + ); +}; diff --git a/src/app/components/PlanetaryInteraction/PlanetCard.tsx b/src/app/components/PlanetaryInteraction/PlanetCard.tsx new file mode 100644 index 0000000..4ccda14 --- /dev/null +++ b/src/app/components/PlanetaryInteraction/PlanetCard.tsx @@ -0,0 +1,146 @@ +import { Stack, Typography, styled } from "@mui/material"; +import Image from "next/image"; +import { AccessToken, Planet } from "@/types"; +import { Api } from "@/esi-api"; +import { useEffect, useState } from "react"; +import { DateTime } from "luxon"; +import { EXTRACTOR_TYPE_IDS } from "@/const"; +import Countdown from "react-countdown"; + +const StackItem = styled(Stack)(({ theme }) => ({ + ...theme.typography.body2, + padding: 0, + textAlign: "left", + justifyContent: "center", + alignItems: "center", +})); + +export interface PlanetInfo { + links: { + destination_pin_id: number; + link_level: number; + source_pin_id: number; + }[]; + pins: { + contents?: { + amount: number; + type_id: number; + }[]; + expiry_time?: string; + extractor_details?: { + cycle_time?: number; + head_radius?: number; + heads: { + head_id: number; + latitude: number; + longitude: number; + }[]; + product_type_id?: number; + qty_per_cycle?: number; + }; + factory_details?: { + schematic_id: number; + }; + install_time?: string; + last_cycle_start?: string; + latitude: number; + longitude: number; + pin_id: number; + schematic_id?: number; + type_id: number; + }[]; + routes: { + content_type_id: number; + destination_pin_id: number; + quantity: number; + route_id: number; + source_pin_id: number; + waypoints?: number[]; + }[]; +} + +export const PlanetCard = ({ + planet, + character, +}: { + planet: Planet; + character: AccessToken; +}) => { + const [planetInfo, setPlanetInfo] = useState( + undefined + ); + const extractors = + (planetInfo && + planetInfo.pins + .filter((p) => EXTRACTOR_TYPE_IDS.some((e) => e === p.type_id)) + .map((p) => p.expiry_time)) ?? + []; + const getPlanet = async ( + character: AccessToken, + planet: Planet + ): Promise => { + const api = new Api(); + const planetInfo = ( + await api.characters.getCharactersCharacterIdPlanetsPlanetId( + character.character.characterId, + planet.planet_id, + { + token: character.access_token, + } + ) + ).data; + return planetInfo; + }; + useEffect(() => { + getPlanet(character, planet).then(setPlanetInfo); + }, [planet, character]); + return ( + + + {extractors.some((e) => { + if (!e) return true; + const dateExtractor = DateTime.fromISO(e); + const dateNow = DateTime.now(); + return dateExtractor < dateNow; + }) && ( + + )} + {extractors.map((e, idx) => { + const inPast = () => { + if (!e) return true; + const dateExtractor = DateTime.fromISO(e); + const dateNow = DateTime.now(); + return dateExtractor < dateNow; + }; + + return ( + + {e ? ( + + ) : ( + "STOPPED" + )} + + ); + })} + + ); +}; diff --git a/src/app/components/PlanetaryInteraction/PlanetaryInteractionRow.tsx b/src/app/components/PlanetaryInteraction/PlanetaryInteractionRow.tsx new file mode 100644 index 0000000..4bd35b8 --- /dev/null +++ b/src/app/components/PlanetaryInteraction/PlanetaryInteractionRow.tsx @@ -0,0 +1,57 @@ +import { Api } from "@/esi-api"; +import { AccessToken, Planet } from "@/types"; +import { Stack, styled } from "@mui/material"; +import { useEffect, useState } from "react"; +import { PlanetCard } from "./PlanetCard"; +import { NoPlanetCard } from "./NoPlanetCard"; + +const StackItem = styled(Stack)(({ theme }) => ({ + ...theme.typography.body2, + padding: theme.spacing(2), + textAlign: "left", + justifyContent: "center", + alignItems: "center", +})); + +const getPlanets = async (character: AccessToken): Promise => { + const api = new Api(); + const planets = ( + await api.characters.getCharactersCharacterIdPlanets( + character.character.characterId, + { + token: character.access_token, + } + ) + ).data; + return planets; +}; + +export const PlanetaryInteractionRow = ({ + character, +}: { + character: AccessToken; +}) => { + const [planets, setPlanets] = useState([]); + useEffect(() => { + getPlanets(character).then(setPlanets).catch(console.log); + }, [character]); + + return ( + + + {planets.map((planet) => ( + + ))} + {Array.from(Array(6 - planets.length).keys()).map((i, id) => ( + + ))} + + + ); +}; diff --git a/src/app/context/Context.tsx b/src/app/context/Context.tsx new file mode 100644 index 0000000..f5f5cae --- /dev/null +++ b/src/app/context/Context.tsx @@ -0,0 +1,26 @@ +import { AccessToken, CharacterUpdate } from "@/types"; +import { Dispatch, SetStateAction, createContext } from "react"; + +export const CharacterContext = createContext<{ + characters: AccessToken[]; + deleteCharacter: (character: AccessToken) => void; + updateCharacter: (character: AccessToken, update: CharacterUpdate) => void; +}>({ + characters: [], + deleteCharacter: () => {}, + updateCharacter: () => {}, +}); + +export const SessionContext = createContext<{ + sessionReady: boolean; + refreshSession: () => void; + setSessionReady: Dispatch>; + EVE_SSO_CALLBACK_URL: string; + EVE_SSO_CLIENT_ID: string; +}>({ + sessionReady: false, + refreshSession: () => {}, + setSessionReady: () => {}, + EVE_SSO_CALLBACK_URL: "", + EVE_SSO_CLIENT_ID: "", +}); diff --git a/src/app/favicon.ico b/src/app/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/src/app/favicon.ico differ diff --git a/src/app/globals.css b/src/app/globals.css new file mode 100644 index 0000000..2b602f6 --- /dev/null +++ b/src/app/globals.css @@ -0,0 +1,23 @@ +:root { + --foreground-rgb: 0, 0, 0; + --background-start-rgb: 214, 219, 220; + --background-end-rgb: 255, 255, 255; +} + +@media (prefers-color-scheme: dark) { + :root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; + } +} + +body { + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..88fc3f4 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,21 @@ +import "./globals.css"; +import { Inter } from "next/font/google"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata = { + title: "EVE PI", + description: "Lets PI!", +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..8c3e8fa --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,124 @@ +"use client"; +import "@fontsource/roboto/300.css"; +import "@fontsource/roboto/400.css"; +import "@fontsource/roboto/500.css"; +import "@fontsource/roboto/700.css"; +import { memo, useCallback, useEffect, useState } from "react"; +import { AccessToken, CharacterUpdate, Env } from "../types"; +import { MainGrid } from "./components/MainGrid"; +import { refreshToken } from "@/esi-sso"; +import { CharacterContext, SessionContext } from "./context/Context"; +import { useSearchParams } from "next/navigation"; + +const Home = () => { + const [characters, setCharacters] = useState([]); + const [sessionReady, setSessionReady] = useState(false); + const [environment, setEnvironment] = useState(undefined); + + const searchParams = useSearchParams(); + const code = searchParams && searchParams.get("code"); + + // Initialize SSO env + useEffect(() => { + fetch("api/env") + .then((r) => r.json()) + .then((j) => { + setEnvironment({ + EVE_SSO_CLIENT_ID: j.EVE_SSO_CLIENT_ID, + EVE_SSO_CALLBACK_URL: j.EVE_SSO_CALLBACK_URL, + }); + }); + }, []); + + // Memoize chracter state manipulations + const addCharacter = useCallback((character: AccessToken) => { + setCharacters((chars) => [ + ...chars.filter( + (c) => c.character.characterId !== character.character.characterId + ), + character, + ]); + }, []); + + const deleteCharacter = useCallback( + (character: AccessToken) => { + setCharacters( + characters.filter( + (c) => character.character.characterId !== c.character.characterId + ) + ); + }, + [characters] + ); + + const updateCharacter = useCallback( + (character: AccessToken, updates: CharacterUpdate) => { + setCharacters( + characters.map((c) => { + if (c.character.characterId === character.character.characterId) + return { + ...c, + ...(updates.account ? { account: updates.account } : {}), + }; + return c; + }) + ); + }, + [characters] + ); + + // Handle EVE SSO callback + useEffect(() => { + if (code) { + window.history.replaceState(null, "", "/"); + fetch(`api/token?code=${code}`) + .then((res) => res.json()) + .then(addCharacter) + .catch(); + } + }, [code, addCharacter]); + + // Initialise saved characters + useEffect(() => { + const localStorageCharacters = localStorage.getItem("characters"); + if (localStorageCharacters) { + const characterArray: AccessToken[] = JSON.parse(localStorageCharacters); + setCharacters(characterArray); + } + }, []); + + // Update saved characters to local storage on state change + useEffect(() => { + localStorage.setItem("characters", JSON.stringify(characters)); + }, [characters]); + + const refreshSession = () => { + Promise.all(characters.map((c) => refreshToken(c))) + .then(setCharacters) + .finally(() => setSessionReady(true)); + }; + + return ( + + + + + + ); +}; + +export default memo(Home); diff --git a/src/const.ts b/src/const.ts new file mode 100644 index 0000000..3b59b6f --- /dev/null +++ b/src/const.ts @@ -0,0 +1,4 @@ +export const EVE_IMAGE_URL = "https://images.evetech.net"; +export const EXTRACTOR_TYPE_IDS = [ + 2848, 3060, 3061, 3062, 3063, 3064, 3067, 3068, +]; diff --git a/src/esi-api.ts b/src/esi-api.ts new file mode 100644 index 0000000..466dd19 --- /dev/null +++ b/src/esi-api.ts @@ -0,0 +1,19278 @@ +/* eslint-disable */ +/* tslint:disable */ +/* + * --------------------------------------------------------------- + * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## + * ## ## + * ## AUTHOR: acacode ## + * ## SOURCE: https://github.com/acacode/swagger-typescript-api ## + * --------------------------------------------------------------- + */ + +/** + * Bad request + * Bad request model + */ +export interface BadRequest { + /** Bad request message */ + error: string; +} + +/** + * Error limited + * Error limited model + */ +export interface ErrorLimited { + /** Error limited message */ + error: string; +} + +/** + * Forbidden + * Forbidden model + */ +export interface Forbidden { + /** Forbidden message */ + error: string; + /** status code received from SSO */ + sso_status?: number; +} + +/** + * Gateway timeout + * Gateway timeout model + */ +export interface GatewayTimeout { + /** Gateway timeout message */ + error: string; + /** number of seconds the request was given */ + timeout?: number; +} + +/** + * Internal server error + * Internal server error model + */ +export interface InternalServerError { + /** Internal server error message */ + error: string; +} + +/** + * Service unavailable + * Service unavailable model + */ +export interface ServiceUnavailable { + /** Service unavailable message */ + error: string; +} + +/** + * Unauthorized + * Unauthorized model + */ +export interface Unauthorized { + /** Unauthorized message */ + error: string; +} + +export type QueryParamsType = Record; +export type ResponseFormat = keyof Omit; + +export interface FullRequestParams extends Omit { + /** set parameter to `true` for call `securityWorker` for this request */ + secure?: boolean; + /** request path */ + path: string; + /** content type of request body */ + type?: ContentType; + /** query params */ + query?: QueryParamsType; + /** format of response (i.e. response.json() -> format: "json") */ + format?: ResponseFormat; + /** request body */ + body?: unknown; + /** base url */ + baseUrl?: string; + /** request cancellation token */ + cancelToken?: CancelToken; +} + +export type RequestParams = Omit; + +export interface ApiConfig { + baseUrl?: string; + baseApiParams?: Omit; + securityWorker?: (securityData: SecurityDataType | null) => Promise | RequestParams | void; + customFetch?: typeof fetch; +} + +export interface HttpResponse extends Response { + data: D; + error: E; +} + +type CancelToken = Symbol | string | number; + +export enum ContentType { + Json = "application/json", + FormData = "multipart/form-data", + UrlEncoded = "application/x-www-form-urlencoded", + Text = "text/plain", +} + +export class HttpClient { + public baseUrl: string = "https://esi.evetech.net/latest"; + private securityData: SecurityDataType | null = null; + private securityWorker?: ApiConfig["securityWorker"]; + private abortControllers = new Map(); + private customFetch = (...fetchParams: Parameters) => fetch(...fetchParams); + + private baseApiParams: RequestParams = { + credentials: "same-origin", + headers: {}, + redirect: "follow", + referrerPolicy: "no-referrer", + }; + + constructor(apiConfig: ApiConfig = {}) { + Object.assign(this, apiConfig); + } + + public setSecurityData = (data: SecurityDataType | null) => { + this.securityData = data; + }; + + protected encodeQueryParam(key: string, value: any) { + const encodedKey = encodeURIComponent(key); + return `${encodedKey}=${encodeURIComponent(typeof value === "number" ? value : `${value}`)}`; + } + + protected addQueryParam(query: QueryParamsType, key: string) { + return this.encodeQueryParam(key, query[key]); + } + + protected addArrayQueryParam(query: QueryParamsType, key: string) { + const value = query[key]; + return value.map((v: any) => this.encodeQueryParam(key, v)).join("&"); + } + + protected toQueryString(rawQuery?: QueryParamsType): string { + const query = rawQuery || {}; + const keys = Object.keys(query).filter((key) => "undefined" !== typeof query[key]); + return keys + .map((key) => (Array.isArray(query[key]) ? this.addArrayQueryParam(query, key) : this.addQueryParam(query, key))) + .join("&"); + } + + protected addQueryParams(rawQuery?: QueryParamsType): string { + const queryString = this.toQueryString(rawQuery); + return queryString ? `?${queryString}` : ""; + } + + private contentFormatters: Record any> = { + [ContentType.Json]: (input: any) => + input !== null && (typeof input === "object" || typeof input === "string") ? JSON.stringify(input) : input, + [ContentType.Text]: (input: any) => (input !== null && typeof input !== "string" ? JSON.stringify(input) : input), + [ContentType.FormData]: (input: any) => + Object.keys(input || {}).reduce((formData, key) => { + const property = input[key]; + formData.append( + key, + property instanceof Blob + ? property + : typeof property === "object" && property !== null + ? JSON.stringify(property) + : `${property}`, + ); + return formData; + }, new FormData()), + [ContentType.UrlEncoded]: (input: any) => this.toQueryString(input), + }; + + protected mergeRequestParams(params1: RequestParams, params2?: RequestParams): RequestParams { + return { + ...this.baseApiParams, + ...params1, + ...(params2 || {}), + headers: { + ...(this.baseApiParams.headers || {}), + ...(params1.headers || {}), + ...((params2 && params2.headers) || {}), + }, + }; + } + + protected createAbortSignal = (cancelToken: CancelToken): AbortSignal | undefined => { + if (this.abortControllers.has(cancelToken)) { + const abortController = this.abortControllers.get(cancelToken); + if (abortController) { + return abortController.signal; + } + return void 0; + } + + const abortController = new AbortController(); + this.abortControllers.set(cancelToken, abortController); + return abortController.signal; + }; + + public abortRequest = (cancelToken: CancelToken) => { + const abortController = this.abortControllers.get(cancelToken); + + if (abortController) { + abortController.abort(); + this.abortControllers.delete(cancelToken); + } + }; + + public request = async ({ + body, + secure, + path, + type, + query, + format, + baseUrl, + cancelToken, + ...params + }: FullRequestParams): Promise> => { + const secureParams = + ((typeof secure === "boolean" ? secure : this.baseApiParams.secure) && + this.securityWorker && + (await this.securityWorker(this.securityData))) || + {}; + const requestParams = this.mergeRequestParams(params, secureParams); + const queryString = query && this.toQueryString(query); + const payloadFormatter = this.contentFormatters[type || ContentType.Json]; + const responseFormat = format || requestParams.format; + + return this.customFetch(`${baseUrl || this.baseUrl || ""}${path}${queryString ? `?${queryString}` : ""}`, { + ...requestParams, + headers: { + ...(requestParams.headers || {}), + ...(type && type !== ContentType.FormData ? { "Content-Type": type } : {}), + }, + signal: cancelToken ? this.createAbortSignal(cancelToken) : requestParams.signal, + body: typeof body === "undefined" || body === null ? null : payloadFormatter(body), + }).then(async (response) => { + const r = response as HttpResponse; + r.data = null as unknown as T; + r.error = null as unknown as E; + + const data = !responseFormat + ? r + : await response[responseFormat]() + .then((data) => { + if (r.ok) { + r.data = data; + } else { + r.error = data; + } + return r; + }) + .catch((e) => { + r.error = e; + return r; + }); + + if (cancelToken) { + this.abortControllers.delete(cancelToken); + } + + if (!response.ok) throw data; + return data; + }); + }; +} + +/** + * @title EVE Swagger Interface + * @version 1.17 + * @baseUrl https://esi.evetech.net/latest + * + * An OpenAPI for EVE Online + */ +export class Api extends HttpClient { + alliances = { + /** + * @description List all active player alliances --- Alternate route: `/dev/alliances/` Alternate route: `/legacy/alliances/` Alternate route: `/v1/alliances/` Alternate route: `/v2/alliances/` --- This route is cached for up to 3600 seconds + * + * @tags Alliance + * @name GetAlliances + * @summary List all alliances + * @request GET:/alliances/ + */ + getAlliances: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/alliances/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Public information about an alliance --- Alternate route: `/dev/alliances/{alliance_id}/` Alternate route: `/legacy/alliances/{alliance_id}/` Alternate route: `/v3/alliances/{alliance_id}/` Alternate route: `/v4/alliances/{alliance_id}/` --- This route is cached for up to 3600 seconds + * + * @tags Alliance + * @name GetAlliancesAllianceId + * @summary Get alliance information + * @request GET:/alliances/{alliance_id}/ + */ + getAlliancesAllianceId: ( + allianceId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_alliances_alliance_id_creator_corporation_id + * ID of the corporation that created the alliance + * @format int32 + */ + creator_corporation_id: number; + /** + * get_alliances_alliance_id_creator_id + * ID of the character that created the alliance + * @format int32 + */ + creator_id: number; + /** + * get_alliances_alliance_id_date_founded + * date_founded string + * @format date-time + */ + date_founded: string; + /** + * get_alliances_alliance_id_executor_corporation_id + * the executor corporation ID, if this alliance is not closed + * @format int32 + */ + executor_corporation_id?: number; + /** + * get_alliances_alliance_id_faction_id + * Faction ID this alliance is fighting for, if this alliance is enlisted in factional warfare + * @format int32 + */ + faction_id?: number; + /** + * get_alliances_alliance_id_name + * the full name of the alliance + */ + name: string; + /** + * get_alliances_alliance_id_ticker + * the short name of the alliance + */ + ticker: string; + }, + | void + | BadRequest + | { + /** + * get_alliances_alliance_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/alliances/${allianceId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return contacts of an alliance --- Alternate route: `/dev/alliances/{alliance_id}/contacts/` Alternate route: `/v2/alliances/{alliance_id}/contacts/` --- This route is cached for up to 300 seconds + * + * @tags Contacts + * @name GetAlliancesAllianceIdContacts + * @summary Get alliance contacts + * @request GET:/alliances/{alliance_id}/contacts/ + * @secure + */ + getAlliancesAllianceIdContacts: ( + allianceId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_alliances_alliance_id_contacts_contact_id + * contact_id integer + * @format int32 + */ + contact_id: number; + /** + * get_alliances_alliance_id_contacts_contact_type + * contact_type string + */ + contact_type: "character" | "corporation" | "alliance" | "faction"; + /** + * get_alliances_alliance_id_contacts_label_ids + * label_ids array + * @maxItems 63 + */ + label_ids?: number[]; + /** + * get_alliances_alliance_id_contacts_standing + * Standing of the contact + * @format float + */ + standing: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/alliances/${allianceId}/contacts/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return custom labels for an alliance's contacts --- Alternate route: `/dev/alliances/{alliance_id}/contacts/labels/` Alternate route: `/legacy/alliances/{alliance_id}/contacts/labels/` Alternate route: `/v1/alliances/{alliance_id}/contacts/labels/` --- This route is cached for up to 300 seconds + * + * @tags Contacts + * @name GetAlliancesAllianceIdContactsLabels + * @summary Get alliance contact labels + * @request GET:/alliances/{alliance_id}/contacts/labels/ + * @secure + */ + getAlliancesAllianceIdContactsLabels: ( + allianceId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_alliances_alliance_id_contacts_labels_label_id + * label_id integer + * @format int64 + */ + label_id: number; + /** + * get_alliances_alliance_id_contacts_labels_label_name + * label_name string + */ + label_name: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/alliances/${allianceId}/contacts/labels/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List all current member corporations of an alliance --- Alternate route: `/dev/alliances/{alliance_id}/corporations/` Alternate route: `/legacy/alliances/{alliance_id}/corporations/` Alternate route: `/v1/alliances/{alliance_id}/corporations/` Alternate route: `/v2/alliances/{alliance_id}/corporations/` --- This route is cached for up to 3600 seconds + * + * @tags Alliance + * @name GetAlliancesAllianceIdCorporations + * @summary List alliance's corporations + * @request GET:/alliances/{alliance_id}/corporations/ + */ + getAlliancesAllianceIdCorporations: ( + allianceId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/alliances/${allianceId}/corporations/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get the icon urls for a alliance --- Alternate route: `/legacy/alliances/{alliance_id}/icons/` Alternate route: `/v1/alliances/{alliance_id}/icons/` --- This route expires daily at 11:05 --- [Diff of the upcoming changes](https://esi.evetech.net/diff/latest/dev/#GET-/alliances/{alliance_id}/icons/) + * + * @tags Alliance + * @name GetAlliancesAllianceIdIcons + * @summary Get alliance icon + * @request GET:/alliances/{alliance_id}/icons/ + */ + getAlliancesAllianceIdIcons: ( + allianceId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_alliances_alliance_id_icons_px128x128 + * px128x128 string + */ + px128x128?: string; + /** + * get_alliances_alliance_id_icons_px64x64 + * px64x64 string + */ + px64x64?: string; + }, + | void + | BadRequest + | { + /** + * get_alliances_alliance_id_icons_error + * error message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/alliances/${allianceId}/icons/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + characters = { + /** + * @description Bulk lookup of character IDs to corporation, alliance and faction --- Alternate route: `/dev/characters/affiliation/` Alternate route: `/v2/characters/affiliation/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name PostCharactersAffiliation + * @summary Character affiliation + * @request POST:/characters/affiliation/ + */ + postCharactersAffiliation: ( + characters: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_characters_affiliation_alliance_id + * The character's alliance ID, if their corporation is in an alliance + * @format int32 + */ + alliance_id?: number; + /** + * post_characters_affiliation_character_id + * The character's ID + * @format int32 + */ + character_id: number; + /** + * post_characters_affiliation_corporation_id + * The character's corporation ID + * @format int32 + */ + corporation_id: number; + /** + * post_characters_affiliation_faction_id + * The character's faction ID, if their corporation is in a faction + * @format int32 + */ + faction_id?: number; + }[], + BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/affiliation/`, + method: "POST", + query: query, + body: characters, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Public information about a character --- Alternate route: `/dev/characters/{character_id}/` Alternate route: `/legacy/characters/{character_id}/` Alternate route: `/v5/characters/{character_id}/` --- This route is cached for up to 86400 seconds + * + * @tags Character + * @name GetCharactersCharacterId + * @summary Get character's public information + * @request GET:/characters/{character_id}/ + */ + getCharactersCharacterId: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_alliance_id + * The character's alliance ID + * @format int32 + */ + alliance_id?: number; + /** + * get_characters_character_id_birthday + * Creation date of the character + * @format date-time + */ + birthday: string; + /** + * get_characters_character_id_bloodline_id + * bloodline_id integer + * @format int32 + */ + bloodline_id: number; + /** + * get_characters_character_id_corporation_id + * The character's corporation ID + * @format int32 + */ + corporation_id: number; + /** + * get_characters_character_id_description + * description string + */ + description?: string; + /** + * get_characters_character_id_faction_id + * ID of the faction the character is fighting for, if the character is enlisted in Factional Warfare + * @format int32 + */ + faction_id?: number; + /** + * get_characters_character_id_gender + * gender string + */ + gender: "female" | "male"; + /** + * get_characters_character_id_name + * name string + */ + name: string; + /** + * get_characters_character_id_race_id + * race_id integer + * @format int32 + */ + race_id: number; + /** + * get_characters_character_id_security_status + * security_status number + * @format float + * @min -10 + * @max 10 + */ + security_status?: number; + /** + * get_characters_character_id_title + * The individual title of the character + */ + title?: string; + }, + | void + | BadRequest + | { + /** + * get_characters_character_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of agents research information for a character. The formula for finding the current research points with an agent is: currentPoints = remainderPoints + pointsPerDay * days(currentTime - researchStartDate) --- Alternate route: `/dev/characters/{character_id}/agents_research/` Alternate route: `/v2/characters/{character_id}/agents_research/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdAgentsResearch + * @summary Get agents research + * @request GET:/characters/{character_id}/agents_research/ + * @secure + */ + getCharactersCharacterIdAgentsResearch: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_agents_research_agent_id + * agent_id integer + * @format int32 + */ + agent_id: number; + /** + * get_characters_character_id_agents_research_points_per_day + * points_per_day number + * @format float + */ + points_per_day: number; + /** + * get_characters_character_id_agents_research_remainder_points + * remainder_points number + * @format float + */ + remainder_points: number; + /** + * get_characters_character_id_agents_research_skill_type_id + * skill_type_id integer + * @format int32 + */ + skill_type_id: number; + /** + * get_characters_character_id_agents_research_started_at + * started_at string + * @format date-time + */ + started_at: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/agents_research/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a list of the characters assets --- Alternate route: `/dev/characters/{character_id}/assets/` Alternate route: `/v5/characters/{character_id}/assets/` --- This route is cached for up to 3600 seconds + * + * @tags Assets + * @name GetCharactersCharacterIdAssets + * @summary Get character assets + * @request GET:/characters/{character_id}/assets/ + * @secure + */ + getCharactersCharacterIdAssets: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_assets_is_blueprint_copy + * is_blueprint_copy boolean + */ + is_blueprint_copy?: boolean; + /** + * get_characters_character_id_assets_is_singleton + * is_singleton boolean + */ + is_singleton: boolean; + /** + * get_characters_character_id_assets_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * get_characters_character_id_assets_location_flag + * location_flag string + */ + location_flag: + | "AssetSafety" + | "AutoFit" + | "BoosterBay" + | "Cargo" + | "CorpseBay" + | "Deliveries" + | "DroneBay" + | "FighterBay" + | "FighterTube0" + | "FighterTube1" + | "FighterTube2" + | "FighterTube3" + | "FighterTube4" + | "FleetHangar" + | "FrigateEscapeBay" + | "Hangar" + | "HangarAll" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "HiddenModifiers" + | "Implant" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "Locked" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "QuafeBay" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "RigSlot3" + | "RigSlot4" + | "RigSlot5" + | "RigSlot6" + | "RigSlot7" + | "ShipHangar" + | "Skill" + | "SpecializedAmmoHold" + | "SpecializedAsteroidHold" + | "SpecializedCommandCenterHold" + | "SpecializedFuelBay" + | "SpecializedGasHold" + | "SpecializedIceHold" + | "SpecializedIndustrialShipHold" + | "SpecializedLargeShipHold" + | "SpecializedMaterialBay" + | "SpecializedMediumShipHold" + | "SpecializedMineralHold" + | "SpecializedOreHold" + | "SpecializedPlanetaryCommoditiesHold" + | "SpecializedSalvageHold" + | "SpecializedShipHold" + | "SpecializedSmallShipHold" + | "StructureDeedBay" + | "SubSystemBay" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3" + | "SubSystemSlot4" + | "SubSystemSlot5" + | "SubSystemSlot6" + | "SubSystemSlot7" + | "Unlocked" + | "Wardrobe"; + /** + * get_characters_character_id_assets_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_characters_character_id_assets_location_type + * location_type string + */ + location_type: "station" | "solar_system" | "item" | "other"; + /** + * get_characters_character_id_assets_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_characters_character_id_assets_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_assets_error + * error message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/assets/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return locations for a set of item ids, which you can get from character assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0) --- Alternate route: `/dev/characters/{character_id}/assets/locations/` Alternate route: `/v2/characters/{character_id}/assets/locations/` + * + * @tags Assets + * @name PostCharactersCharacterIdAssetsLocations + * @summary Get character asset locations + * @request POST:/characters/{character_id}/assets/locations/ + * @secure + */ + postCharactersCharacterIdAssetsLocations: ( + characterId: number, + item_ids: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_characters_character_id_assets_locations_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * post_characters_character_id_assets_locations_position + * position object + */ + position: { + /** + * post_characters_character_id_assets_locations_x + * x number + * @format double + */ + x: number; + /** + * post_characters_character_id_assets_locations_y + * y number + * @format double + */ + y: number; + /** + * post_characters_character_id_assets_locations_z + * z number + * @format double + */ + z: number; + }; + }[], + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/assets/locations/`, + method: "POST", + query: query, + body: item_ids, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Return names for a set of item ids, which you can get from character assets endpoint. Typically used for items that can customize names, like containers or ships. --- Alternate route: `/dev/characters/{character_id}/assets/names/` Alternate route: `/legacy/characters/{character_id}/assets/names/` Alternate route: `/v1/characters/{character_id}/assets/names/` + * + * @tags Assets + * @name PostCharactersCharacterIdAssetsNames + * @summary Get character asset names + * @request POST:/characters/{character_id}/assets/names/ + * @secure + */ + postCharactersCharacterIdAssetsNames: ( + characterId: number, + item_ids: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_characters_character_id_assets_names_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * post_characters_character_id_assets_names_name + * name string + */ + name: string; + }[], + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/assets/names/`, + method: "POST", + query: query, + body: item_ids, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Return attributes of a character --- Alternate route: `/dev/characters/{character_id}/attributes/` Alternate route: `/legacy/characters/{character_id}/attributes/` Alternate route: `/v1/characters/{character_id}/attributes/` --- This route is cached for up to 120 seconds + * + * @tags Skills + * @name GetCharactersCharacterIdAttributes + * @summary Get character attributes + * @request GET:/characters/{character_id}/attributes/ + * @secure + */ + getCharactersCharacterIdAttributes: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_attributes_accrued_remap_cooldown_date + * Neural remapping cooldown after a character uses remap accrued over time + * @format date-time + */ + accrued_remap_cooldown_date?: string; + /** + * get_characters_character_id_attributes_bonus_remaps + * Number of available bonus character neural remaps + * @format int32 + */ + bonus_remaps?: number; + /** + * get_characters_character_id_attributes_charisma + * charisma integer + * @format int32 + */ + charisma: number; + /** + * get_characters_character_id_attributes_intelligence + * intelligence integer + * @format int32 + */ + intelligence: number; + /** + * get_characters_character_id_attributes_last_remap_date + * Datetime of last neural remap, including usage of bonus remaps + * @format date-time + */ + last_remap_date?: string; + /** + * get_characters_character_id_attributes_memory + * memory integer + * @format int32 + */ + memory: number; + /** + * get_characters_character_id_attributes_perception + * perception integer + * @format int32 + */ + perception: number; + /** + * get_characters_character_id_attributes_willpower + * willpower integer + * @format int32 + */ + willpower: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/attributes/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a list of blueprints the character owns --- Alternate route: `/dev/characters/{character_id}/blueprints/` Alternate route: `/v3/characters/{character_id}/blueprints/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdBlueprints + * @summary Get blueprints + * @request GET:/characters/{character_id}/blueprints/ + * @secure + */ + getCharactersCharacterIdBlueprints: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_blueprints_item_id + * Unique ID for this item. + * @format int64 + */ + item_id: number; + /** + * get_characters_character_id_blueprints_location_flag + * Type of the location_id + */ + location_flag: + | "AutoFit" + | "Cargo" + | "CorpseBay" + | "DroneBay" + | "FleetHangar" + | "Deliveries" + | "HiddenModifiers" + | "Hangar" + | "HangarAll" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "AssetSafety" + | "Locked" + | "Unlocked" + | "Implant" + | "QuafeBay" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "RigSlot3" + | "RigSlot4" + | "RigSlot5" + | "RigSlot6" + | "RigSlot7" + | "ShipHangar" + | "SpecializedFuelBay" + | "SpecializedOreHold" + | "SpecializedGasHold" + | "SpecializedMineralHold" + | "SpecializedSalvageHold" + | "SpecializedShipHold" + | "SpecializedSmallShipHold" + | "SpecializedMediumShipHold" + | "SpecializedLargeShipHold" + | "SpecializedIndustrialShipHold" + | "SpecializedAmmoHold" + | "SpecializedCommandCenterHold" + | "SpecializedPlanetaryCommoditiesHold" + | "SpecializedMaterialBay" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3" + | "SubSystemSlot4" + | "SubSystemSlot5" + | "SubSystemSlot6" + | "SubSystemSlot7" + | "FighterBay" + | "FighterTube0" + | "FighterTube1" + | "FighterTube2" + | "FighterTube3" + | "FighterTube4" + | "Module"; + /** + * get_characters_character_id_blueprints_location_id + * References a station, a ship or an item_id if this blueprint is located within a container. If the return value is an item_id, then the Character AssetList API must be queried to find the container using the given item_id to determine the correct location of the Blueprint. + * @format int64 + */ + location_id: number; + /** + * get_characters_character_id_blueprints_material_efficiency + * Material Efficiency Level of the blueprint. + * @format int32 + * @min 0 + * @max 25 + */ + material_efficiency: number; + /** + * get_characters_character_id_blueprints_quantity + * A range of numbers with a minimum of -2 and no maximum value where -1 is an original and -2 is a copy. It can be a positive integer if it is a stack of blueprint originals fresh from the market (e.g. no activities performed on them yet). + * @format int32 + * @min -2 + */ + quantity: number; + /** + * get_characters_character_id_blueprints_runs + * Number of runs remaining if the blueprint is a copy, -1 if it is an original. + * @format int32 + * @min -1 + */ + runs: number; + /** + * get_characters_character_id_blueprints_time_efficiency + * Time Efficiency Level of the blueprint. + * @format int32 + * @min 0 + * @max 20 + */ + time_efficiency: number; + /** + * get_characters_character_id_blueprints_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/blueprints/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description A list of your character's personal bookmarks --- Alternate route: `/dev/characters/{character_id}/bookmarks/` Alternate route: `/v2/characters/{character_id}/bookmarks/` --- This route is cached for up to 3600 seconds + * + * @tags Bookmarks + * @name GetCharactersCharacterIdBookmarks + * @summary List bookmarks + * @request GET:/characters/{character_id}/bookmarks/ + * @secure + */ + getCharactersCharacterIdBookmarks: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_bookmarks_bookmark_id + * bookmark_id integer + * @format int32 + */ + bookmark_id: number; + /** + * get_characters_character_id_bookmarks_coordinates + * Optional object that is returned if a bookmark was made on a planet or a random location in space. + */ + coordinates?: { + /** + * get_characters_character_id_bookmarks_x + * x number + * @format double + */ + x: number; + /** + * get_characters_character_id_bookmarks_y + * y number + * @format double + */ + y: number; + /** + * get_characters_character_id_bookmarks_z + * z number + * @format double + */ + z: number; + }; + /** + * get_characters_character_id_bookmarks_created + * created string + * @format date-time + */ + created: string; + /** + * get_characters_character_id_bookmarks_creator_id + * creator_id integer + * @format int32 + */ + creator_id: number; + /** + * get_characters_character_id_bookmarks_folder_id + * folder_id integer + * @format int32 + */ + folder_id?: number; + /** + * get_characters_character_id_bookmarks_item + * Optional object that is returned if a bookmark was made on a particular item. + */ + item?: { + /** + * get_characters_character_id_bookmarks_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * get_characters_character_id_bookmarks_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }; + /** + * get_characters_character_id_bookmarks_label + * label string + */ + label: string; + /** + * get_characters_character_id_bookmarks_location_id + * location_id integer + * @format int32 + */ + location_id: number; + /** + * get_characters_character_id_bookmarks_notes + * notes string + */ + notes: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/bookmarks/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description A list of your character's personal bookmark folders --- Alternate route: `/dev/characters/{character_id}/bookmarks/folders/` Alternate route: `/v2/characters/{character_id}/bookmarks/folders/` --- This route is cached for up to 3600 seconds + * + * @tags Bookmarks + * @name GetCharactersCharacterIdBookmarksFolders + * @summary List bookmark folders + * @request GET:/characters/{character_id}/bookmarks/folders/ + * @secure + */ + getCharactersCharacterIdBookmarksFolders: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_bookmarks_folders_folder_id + * folder_id integer + * @format int32 + */ + folder_id: number; + /** + * get_characters_character_id_bookmarks_folders_name + * name string + */ + name: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/bookmarks/folders/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get 50 event summaries from the calendar. If no from_event ID is given, the resource will return the next 50 chronological event summaries from now. If a from_event ID is specified, it will return the next 50 chronological event summaries from after that event --- Alternate route: `/dev/characters/{character_id}/calendar/` Alternate route: `/legacy/characters/{character_id}/calendar/` Alternate route: `/v1/characters/{character_id}/calendar/` Alternate route: `/v2/characters/{character_id}/calendar/` --- This route is cached for up to 5 seconds + * + * @tags Calendar + * @name GetCharactersCharacterIdCalendar + * @summary List calendar event summaries + * @request GET:/characters/{character_id}/calendar/ + * @secure + */ + getCharactersCharacterIdCalendar: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * The event ID to retrieve events from + * @format int32 + */ + from_event?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_calendar_event_date + * event_date string + * @format date-time + */ + event_date?: string; + /** + * get_characters_character_id_calendar_event_id + * event_id integer + * @format int32 + */ + event_id?: number; + /** + * get_characters_character_id_calendar_event_response + * event_response string + */ + event_response?: "declined" | "not_responded" | "accepted" | "tentative"; + /** + * get_characters_character_id_calendar_importance + * importance integer + * @format int32 + */ + importance?: number; + /** + * get_characters_character_id_calendar_title + * title string + */ + title?: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/calendar/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get all the information for a specific event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/` Alternate route: `/legacy/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v3/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v4/characters/{character_id}/calendar/{event_id}/` --- This route is cached for up to 5 seconds + * + * @tags Calendar + * @name GetCharactersCharacterIdCalendarEventId + * @summary Get an event + * @request GET:/characters/{character_id}/calendar/{event_id}/ + * @secure + */ + getCharactersCharacterIdCalendarEventId: ( + characterId: number, + eventId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_calendar_event_id_date + * date string + * @format date-time + */ + date: string; + /** + * get_characters_character_id_calendar_event_id_duration + * Length in minutes + * @format int32 + */ + duration: number; + /** + * get_characters_character_id_calendar_event_id_event_id + * event_id integer + * @format int32 + */ + event_id: number; + /** + * get_characters_character_id_calendar_event_id_importance + * importance integer + * @format int32 + */ + importance: number; + /** + * get_characters_character_id_calendar_event_id_owner_id + * owner_id integer + * @format int32 + */ + owner_id: number; + /** + * get_characters_character_id_calendar_event_id_owner_name + * owner_name string + */ + owner_name: string; + /** + * get_characters_character_id_calendar_event_id_owner_type + * owner_type string + */ + owner_type: "eve_server" | "corporation" | "faction" | "character" | "alliance"; + /** + * get_characters_character_id_calendar_event_id_response + * response string + */ + response: string; + /** + * get_characters_character_id_calendar_event_id_text + * text string + */ + text: string; + /** + * get_characters_character_id_calendar_event_id_title + * title string + */ + title: string; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_calendar_event_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/calendar/${eventId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Set your response status to an event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/` Alternate route: `/legacy/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v3/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v4/characters/{character_id}/calendar/{event_id}/` --- This route is cached for up to 5 seconds + * + * @tags Calendar + * @name PutCharactersCharacterIdCalendarEventId + * @summary Respond to an event + * @request PUT:/characters/{character_id}/calendar/{event_id}/ + * @secure + */ + putCharactersCharacterIdCalendarEventId: ( + characterId: number, + eventId: number, + response: { + /** + * put_characters_character_id_calendar_event_id_response_response + * response string + */ + response: "accepted" | "declined" | "tentative"; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/calendar/${eventId}/`, + method: "PUT", + query: query, + body: response, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Get all invited attendees for a given event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/legacy/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/v1/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/v2/characters/{character_id}/calendar/{event_id}/attendees/` --- This route is cached for up to 600 seconds + * + * @tags Calendar + * @name GetCharactersCharacterIdCalendarEventIdAttendees + * @summary Get attendees + * @request GET:/characters/{character_id}/calendar/{event_id}/attendees/ + * @secure + */ + getCharactersCharacterIdCalendarEventIdAttendees: ( + characterId: number, + eventId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_calendar_event_id_attendees_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + /** + * get_characters_character_id_calendar_event_id_attendees_event_response + * event_response string + */ + event_response?: "declined" | "not_responded" | "accepted" | "tentative"; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_calendar_event_id_attendees_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/calendar/${eventId}/attendees/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description A list of the character's clones --- Alternate route: `/dev/characters/{character_id}/clones/` Alternate route: `/v3/characters/{character_id}/clones/` Alternate route: `/v4/characters/{character_id}/clones/` --- This route is cached for up to 120 seconds + * + * @tags Clones + * @name GetCharactersCharacterIdClones + * @summary Get clones + * @request GET:/characters/{character_id}/clones/ + * @secure + */ + getCharactersCharacterIdClones: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_clones_home_location + * home_location object + */ + home_location?: { + /** + * get_characters_character_id_clones_location_id + * location_id integer + * @format int64 + */ + location_id?: number; + /** + * get_characters_character_id_clones_location_type + * location_type string + */ + location_type?: "station" | "structure"; + }; + /** + * get_characters_character_id_clones_jump_clones + * jump_clones array + * @maxItems 64 + */ + jump_clones: { + /** + * get_characters_character_id_clones_implants + * implants array + * @maxItems 64 + */ + implants: number[]; + /** + * get_characters_character_id_clones_jump_clone_id + * jump_clone_id integer + * @format int32 + */ + jump_clone_id: number; + /** + * get_characters_character_id_clones_jump_clone_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_characters_character_id_clones_jump_clone_location_type + * location_type string + */ + location_type: "station" | "structure"; + /** + * get_characters_character_id_clones_name + * name string + */ + name?: string; + }[]; + /** + * get_characters_character_id_clones_last_clone_jump_date + * last_clone_jump_date string + * @format date-time + */ + last_clone_jump_date?: string; + /** + * get_characters_character_id_clones_last_station_change_date + * last_station_change_date string + * @format date-time + */ + last_station_change_date?: string; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/clones/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Bulk delete contacts --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` + * + * @tags Contacts + * @name DeleteCharactersCharacterIdContacts + * @summary Delete contacts + * @request DELETE:/characters/{character_id}/contacts/ + * @secure + */ + deleteCharactersCharacterIdContacts: ( + characterId: number, + query: { + /** + * A list of contacts to delete + * @maxItems 20 + * @minItems 1 + */ + contact_ids: number[]; + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/contacts/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Return contacts of a character --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` --- This route is cached for up to 300 seconds + * + * @tags Contacts + * @name GetCharactersCharacterIdContacts + * @summary Get contacts + * @request GET:/characters/{character_id}/contacts/ + * @secure + */ + getCharactersCharacterIdContacts: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_contacts_contact_id + * contact_id integer + * @format int32 + */ + contact_id: number; + /** + * get_characters_character_id_contacts_contact_type + * contact_type string + */ + contact_type: "character" | "corporation" | "alliance" | "faction"; + /** + * get_characters_character_id_contacts_is_blocked + * Whether this contact is in the blocked list. Note a missing value denotes unknown, not true or false + */ + is_blocked?: boolean; + /** + * get_characters_character_id_contacts_is_watched + * Whether this contact is being watched + */ + is_watched?: boolean; + /** + * get_characters_character_id_contacts_label_ids + * label_ids array + * @maxItems 63 + */ + label_ids?: number[]; + /** + * get_characters_character_id_contacts_standing + * Standing of the contact + * @format float + */ + standing: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/contacts/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Bulk add contacts with same settings --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` + * + * @tags Contacts + * @name PostCharactersCharacterIdContacts + * @summary Add contacts + * @request POST:/characters/{character_id}/contacts/ + * @secure + */ + postCharactersCharacterIdContacts: ( + characterId: number, + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Add custom labels to the new contact + * @maxItems 63 + */ + label_ids?: number[]; + /** + * Standing for the contact + * @format float + * @min -10 + * @max 10 + */ + standing: number; + /** Access token to use if unable to set a header */ + token?: string; + /** + * Whether the contact should be watched, note this is only effective on characters + * @default false + */ + watched?: boolean; + }, + contact_ids: number[], + params: RequestParams = {}, + ) => + this.request< + number[], + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + | { + /** + * post_characters_character_id_contacts_520_error_520 + * Error 520 message + */ + error?: string; + } + >({ + path: `/characters/${characterId}/contacts/`, + method: "POST", + query: query, + body: contact_ids, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Bulk edit contacts with same settings --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` + * + * @tags Contacts + * @name PutCharactersCharacterIdContacts + * @summary Edit contacts + * @request PUT:/characters/{character_id}/contacts/ + * @secure + */ + putCharactersCharacterIdContacts: ( + characterId: number, + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Add custom labels to the contact + * @maxItems 63 + */ + label_ids?: number[]; + /** + * Standing for the contact + * @format float + * @min -10 + * @max 10 + */ + standing: number; + /** Access token to use if unable to set a header */ + token?: string; + /** + * Whether the contact should be watched, note this is only effective on characters + * @default false + */ + watched?: boolean; + }, + contact_ids: number[], + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/contacts/`, + method: "PUT", + query: query, + body: contact_ids, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Return custom labels for a character's contacts --- Alternate route: `/dev/characters/{character_id}/contacts/labels/` Alternate route: `/legacy/characters/{character_id}/contacts/labels/` Alternate route: `/v1/characters/{character_id}/contacts/labels/` --- This route is cached for up to 300 seconds + * + * @tags Contacts + * @name GetCharactersCharacterIdContactsLabels + * @summary Get contact labels + * @request GET:/characters/{character_id}/contacts/labels/ + * @secure + */ + getCharactersCharacterIdContactsLabels: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_contacts_labels_label_id + * label_id integer + * @format int64 + */ + label_id: number; + /** + * get_characters_character_id_contacts_labels_label_name + * label_name string + */ + label_name: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/contacts/labels/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns contracts available to a character, only if the character is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress". --- Alternate route: `/dev/characters/{character_id}/contracts/` Alternate route: `/legacy/characters/{character_id}/contracts/` Alternate route: `/v1/characters/{character_id}/contracts/` --- This route is cached for up to 300 seconds + * + * @tags Contracts + * @name GetCharactersCharacterIdContracts + * @summary Get contracts + * @request GET:/characters/{character_id}/contracts/ + * @secure + */ + getCharactersCharacterIdContracts: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_contracts_acceptor_id + * Who will accept the contract + * @format int32 + */ + acceptor_id: number; + /** + * get_characters_character_id_contracts_assignee_id + * ID to whom the contract is assigned, can be alliance, corporation or character ID + * @format int32 + */ + assignee_id: number; + /** + * get_characters_character_id_contracts_availability + * To whom the contract is available + */ + availability: "public" | "personal" | "corporation" | "alliance"; + /** + * get_characters_character_id_contracts_buyout + * Buyout price (for Auctions only) + * @format double + */ + buyout?: number; + /** + * get_characters_character_id_contracts_collateral + * Collateral price (for Couriers only) + * @format double + */ + collateral?: number; + /** + * get_characters_character_id_contracts_contract_id + * contract_id integer + * @format int32 + */ + contract_id: number; + /** + * get_characters_character_id_contracts_date_accepted + * Date of confirmation of contract + * @format date-time + */ + date_accepted?: string; + /** + * get_characters_character_id_contracts_date_completed + * Date of completed of contract + * @format date-time + */ + date_completed?: string; + /** + * get_characters_character_id_contracts_date_expired + * Expiration date of the contract + * @format date-time + */ + date_expired: string; + /** + * get_characters_character_id_contracts_date_issued + * Сreation date of the contract + * @format date-time + */ + date_issued: string; + /** + * get_characters_character_id_contracts_days_to_complete + * Number of days to perform the contract + * @format int32 + */ + days_to_complete?: number; + /** + * get_characters_character_id_contracts_end_location_id + * End location ID (for Couriers contract) + * @format int64 + */ + end_location_id?: number; + /** + * get_characters_character_id_contracts_for_corporation + * true if the contract was issued on behalf of the issuer's corporation + */ + for_corporation: boolean; + /** + * get_characters_character_id_contracts_issuer_corporation_id + * Character's corporation ID for the issuer + * @format int32 + */ + issuer_corporation_id: number; + /** + * get_characters_character_id_contracts_issuer_id + * Character ID for the issuer + * @format int32 + */ + issuer_id: number; + /** + * get_characters_character_id_contracts_price + * Price of contract (for ItemsExchange and Auctions) + * @format double + */ + price?: number; + /** + * get_characters_character_id_contracts_reward + * Remuneration for contract (for Couriers only) + * @format double + */ + reward?: number; + /** + * get_characters_character_id_contracts_start_location_id + * Start location ID (for Couriers contract) + * @format int64 + */ + start_location_id?: number; + /** + * get_characters_character_id_contracts_status + * Status of the the contract + */ + status: + | "outstanding" + | "in_progress" + | "finished_issuer" + | "finished_contractor" + | "finished" + | "cancelled" + | "rejected" + | "failed" + | "deleted" + | "reversed"; + /** + * get_characters_character_id_contracts_title + * Title of the contract + */ + title?: string; + /** + * get_characters_character_id_contracts_type + * Type of the contract + */ + type: "unknown" | "item_exchange" | "auction" | "courier" | "loan"; + /** + * get_characters_character_id_contracts_volume + * Volume of items in the contract + * @format double + */ + volume?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/contracts/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Lists bids on a particular auction contract --- Alternate route: `/dev/characters/{character_id}/contracts/{contract_id}/bids/` Alternate route: `/legacy/characters/{character_id}/contracts/{contract_id}/bids/` Alternate route: `/v1/characters/{character_id}/contracts/{contract_id}/bids/` --- This route is cached for up to 300 seconds + * + * @tags Contracts + * @name GetCharactersCharacterIdContractsContractIdBids + * @summary Get contract bids + * @request GET:/characters/{character_id}/contracts/{contract_id}/bids/ + * @secure + */ + getCharactersCharacterIdContractsContractIdBids: ( + characterId: number, + contractId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_contracts_contract_id_bids_amount + * The amount bid, in ISK + * @format float + */ + amount: number; + /** + * get_characters_character_id_contracts_contract_id_bids_bid_id + * Unique ID for the bid + * @format int32 + */ + bid_id: number; + /** + * get_characters_character_id_contracts_contract_id_bids_bidder_id + * Character ID of the bidder + * @format int32 + */ + bidder_id: number; + /** + * get_characters_character_id_contracts_contract_id_bids_date_bid + * Datetime when the bid was placed + * @format date-time + */ + date_bid: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_contracts_contract_id_bids_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/contracts/${contractId}/bids/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Lists items of a particular contract --- Alternate route: `/dev/characters/{character_id}/contracts/{contract_id}/items/` Alternate route: `/legacy/characters/{character_id}/contracts/{contract_id}/items/` Alternate route: `/v1/characters/{character_id}/contracts/{contract_id}/items/` --- This route is cached for up to 3600 seconds + * + * @tags Contracts + * @name GetCharactersCharacterIdContractsContractIdItems + * @summary Get contract items + * @request GET:/characters/{character_id}/contracts/{contract_id}/items/ + * @secure + */ + getCharactersCharacterIdContractsContractIdItems: ( + characterId: number, + contractId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_contracts_contract_id_items_is_included + * true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract + */ + is_included: boolean; + /** + * get_characters_character_id_contracts_contract_id_items_is_singleton + * is_singleton boolean + */ + is_singleton: boolean; + /** + * get_characters_character_id_contracts_contract_id_items_quantity + * Number of items in the stack + * @format int32 + */ + quantity: number; + /** + * get_characters_character_id_contracts_contract_id_items_raw_quantity + * -1 indicates that the item is a singleton (non-stackable). If the item happens to be a Blueprint, -1 is an Original and -2 is a Blueprint Copy + * @format int32 + */ + raw_quantity?: number; + /** + * get_characters_character_id_contracts_contract_id_items_record_id + * Unique ID for the item + * @format int64 + */ + record_id: number; + /** + * get_characters_character_id_contracts_contract_id_items_type_id + * Type ID for item + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_contracts_contract_id_items_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/contracts/${contractId}/items/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get a list of all the corporations a character has been a member of --- Alternate route: `/dev/characters/{character_id}/corporationhistory/` Alternate route: `/v2/characters/{character_id}/corporationhistory/` --- This route is cached for up to 86400 seconds + * + * @tags Character + * @name GetCharactersCharacterIdCorporationhistory + * @summary Get corporation history + * @request GET:/characters/{character_id}/corporationhistory/ + */ + getCharactersCharacterIdCorporationhistory: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_corporationhistory_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id: number; + /** + * get_characters_character_id_corporationhistory_is_deleted + * True if the corporation has been deleted + */ + is_deleted?: boolean; + /** + * get_characters_character_id_corporationhistory_record_id + * An incrementing ID that can be used to canonically establish order of records in cases where dates may be ambiguous + * @format int32 + */ + record_id: number; + /** + * get_characters_character_id_corporationhistory_start_date + * start_date string + * @format date-time + */ + start_date: string; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/corporationhistory/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost --- Alternate route: `/dev/characters/{character_id}/cspa/` Alternate route: `/v5/characters/{character_id}/cspa/` + * + * @tags Character + * @name PostCharactersCharacterIdCspa + * @summary Calculate a CSPA charge cost + * @request POST:/characters/{character_id}/cspa/ + * @secure + */ + postCharactersCharacterIdCspa: ( + characterId: number, + characters: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/cspa/`, + method: "POST", + query: query, + body: characters, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Return a character's jump activation and fatigue information --- Alternate route: `/dev/characters/{character_id}/fatigue/` Alternate route: `/v2/characters/{character_id}/fatigue/` --- This route is cached for up to 300 seconds + * + * @tags Character + * @name GetCharactersCharacterIdFatigue + * @summary Get jump fatigue + * @request GET:/characters/{character_id}/fatigue/ + * @secure + */ + getCharactersCharacterIdFatigue: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_fatigue_jump_fatigue_expire_date + * Character's jump fatigue expiry + * @format date-time + */ + jump_fatigue_expire_date?: string; + /** + * get_characters_character_id_fatigue_last_jump_date + * Character's last jump activation + * @format date-time + */ + last_jump_date?: string; + /** + * get_characters_character_id_fatigue_last_update_date + * Character's last jump update + * @format date-time + */ + last_update_date?: string; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/fatigue/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return fittings of a character --- Alternate route: `/dev/characters/{character_id}/fittings/` Alternate route: `/v2/characters/{character_id}/fittings/` --- This route is cached for up to 300 seconds + * + * @tags Fittings + * @name GetCharactersCharacterIdFittings + * @summary Get fittings + * @request GET:/characters/{character_id}/fittings/ + * @secure + */ + getCharactersCharacterIdFittings: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_fittings_description + * description string + */ + description: string; + /** + * get_characters_character_id_fittings_fitting_id + * fitting_id integer + * @format int32 + */ + fitting_id: number; + /** + * get_characters_character_id_fittings_items + * items array + * @maxItems 512 + */ + items: { + /** + * get_characters_character_id_fittings_flag + * flag string + */ + flag: + | "Cargo" + | "DroneBay" + | "FighterBay" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "Invalid" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "ServiceSlot0" + | "ServiceSlot1" + | "ServiceSlot2" + | "ServiceSlot3" + | "ServiceSlot4" + | "ServiceSlot5" + | "ServiceSlot6" + | "ServiceSlot7" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3"; + /** + * get_characters_character_id_fittings_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_characters_character_id_fittings_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[]; + /** + * get_characters_character_id_fittings_name + * name string + */ + name: string; + /** + * get_characters_character_id_fittings_ship_type_id + * ship_type_id integer + * @format int32 + */ + ship_type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/fittings/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Save a new fitting for a character --- Alternate route: `/dev/characters/{character_id}/fittings/` Alternate route: `/v2/characters/{character_id}/fittings/` + * + * @tags Fittings + * @name PostCharactersCharacterIdFittings + * @summary Create fitting + * @request POST:/characters/{character_id}/fittings/ + * @secure + */ + postCharactersCharacterIdFittings: ( + characterId: number, + fitting: { + /** + * post_characters_character_id_fittings_description + * description string + * @minLength 0 + * @maxLength 500 + */ + description: string; + /** + * post_characters_character_id_fittings_items + * items array + * @maxItems 512 + * @minItems 1 + */ + items: { + /** + * post_characters_character_id_fittings_flag + * Fitting location for the item. Entries placed in 'Invalid' will be discarded. If this leaves the fitting with nothing, it will cause an error. + */ + flag: + | "Cargo" + | "DroneBay" + | "FighterBay" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "Invalid" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "ServiceSlot0" + | "ServiceSlot1" + | "ServiceSlot2" + | "ServiceSlot3" + | "ServiceSlot4" + | "ServiceSlot5" + | "ServiceSlot6" + | "ServiceSlot7" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3"; + /** + * post_characters_character_id_fittings_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * post_characters_character_id_fittings_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[]; + /** + * post_characters_character_id_fittings_name + * name string + * @minLength 1 + * @maxLength 50 + */ + name: string; + /** + * post_characters_character_id_fittings_ship_type_id + * ship_type_id integer + * @format int32 + */ + ship_type_id: number; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_characters_character_id_fittings_fitting_id + * fitting_id integer + * @format int32 + */ + fitting_id: number; + }, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/fittings/`, + method: "POST", + query: query, + body: fitting, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Delete a fitting from a character --- Alternate route: `/dev/characters/{character_id}/fittings/{fitting_id}/` Alternate route: `/legacy/characters/{character_id}/fittings/{fitting_id}/` Alternate route: `/v1/characters/{character_id}/fittings/{fitting_id}/` + * + * @tags Fittings + * @name DeleteCharactersCharacterIdFittingsFittingId + * @summary Delete fitting + * @request DELETE:/characters/{character_id}/fittings/{fitting_id}/ + * @secure + */ + deleteCharactersCharacterIdFittingsFittingId: ( + characterId: number, + fittingId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/fittings/${fittingId}/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Return the fleet ID the character is in, if any. --- Alternate route: `/legacy/characters/{character_id}/fleet/` Alternate route: `/v1/characters/{character_id}/fleet/` --- This route is cached for up to 60 seconds --- Warning: This route has an upgrade available --- [Diff of the upcoming changes](https://esi.evetech.net/diff/latest/dev/#GET-/characters/{character_id}/fleet/) + * + * @tags Fleets + * @name GetCharactersCharacterIdFleet + * @summary Get character fleet info + * @request GET:/characters/{character_id}/fleet/ + * @secure + */ + getCharactersCharacterIdFleet: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_fleet_fleet_id + * The character's current fleet ID + * @format int64 + */ + fleet_id: number; + /** + * get_characters_character_id_fleet_role + * Member’s role in fleet + */ + role: "fleet_commander" | "squad_commander" | "squad_member" | "wing_commander"; + /** + * get_characters_character_id_fleet_squad_id + * ID of the squad the member is in. If not applicable, will be set to -1 + * @format int64 + */ + squad_id: number; + /** + * get_characters_character_id_fleet_wing_id + * ID of the wing the member is in. If not applicable, will be set to -1 + * @format int64 + */ + wing_id: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_fleet_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/fleet/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Statistical overview of a character involved in faction warfare --- Alternate route: `/dev/characters/{character_id}/fw/stats/` Alternate route: `/legacy/characters/{character_id}/fw/stats/` Alternate route: `/v1/characters/{character_id}/fw/stats/` Alternate route: `/v2/characters/{character_id}/fw/stats/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetCharactersCharacterIdFwStats + * @summary Overview of a character involved in faction warfare + * @request GET:/characters/{character_id}/fw/stats/ + * @secure + */ + getCharactersCharacterIdFwStats: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_fw_stats_current_rank + * The given character's current faction rank + * @format int32 + * @min 0 + * @max 9 + */ + current_rank?: number; + /** + * get_characters_character_id_fw_stats_enlisted_on + * The enlistment date of the given character into faction warfare. Will not be included if character is not enlisted in faction warfare + * @format date-time + */ + enlisted_on?: string; + /** + * get_characters_character_id_fw_stats_faction_id + * The faction the given character is enlisted to fight for. Will not be included if character is not enlisted in faction warfare + * @format int32 + */ + faction_id?: number; + /** + * get_characters_character_id_fw_stats_highest_rank + * The given character's highest faction rank achieved + * @format int32 + * @min 0 + * @max 9 + */ + highest_rank?: number; + /** + * get_characters_character_id_fw_stats_kills + * Summary of kills done by the given character against enemy factions + */ + kills: { + /** + * get_characters_character_id_fw_stats_last_week + * Last week's total number of kills by a given character against enemy factions + * @format int32 + */ + last_week: number; + /** + * get_characters_character_id_fw_stats_total + * Total number of kills by a given character against enemy factions since the character enlisted + * @format int32 + */ + total: number; + /** + * get_characters_character_id_fw_stats_yesterday + * Yesterday's total number of kills by a given character against enemy factions + * @format int32 + */ + yesterday: number; + }; + /** + * get_characters_character_id_fw_stats_victory_points + * Summary of victory points gained by the given character for the enlisted faction + */ + victory_points: { + /** + * get_characters_character_id_fw_stats_victory_points_last_week + * Last week's victory points gained by the given character + * @format int32 + */ + last_week: number; + /** + * get_characters_character_id_fw_stats_victory_points_total + * Total victory points gained since the given character enlisted + * @format int32 + */ + total: number; + /** + * get_characters_character_id_fw_stats_victory_points_yesterday + * Yesterday's victory points gained by the given character + * @format int32 + */ + yesterday: number; + }; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/fw/stats/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return implants on the active clone of a character --- Alternate route: `/dev/characters/{character_id}/implants/` Alternate route: `/legacy/characters/{character_id}/implants/` Alternate route: `/v1/characters/{character_id}/implants/` Alternate route: `/v2/characters/{character_id}/implants/` --- This route is cached for up to 120 seconds + * + * @tags Clones + * @name GetCharactersCharacterIdImplants + * @summary Get active implants + * @request GET:/characters/{character_id}/implants/ + * @secure + */ + getCharactersCharacterIdImplants: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/implants/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List industry jobs placed by a character --- Alternate route: `/dev/characters/{character_id}/industry/jobs/` Alternate route: `/legacy/characters/{character_id}/industry/jobs/` Alternate route: `/v1/characters/{character_id}/industry/jobs/` --- This route is cached for up to 300 seconds + * + * @tags Industry + * @name GetCharactersCharacterIdIndustryJobs + * @summary List character industry jobs + * @request GET:/characters/{character_id}/industry/jobs/ + * @secure + */ + getCharactersCharacterIdIndustryJobs: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Whether to retrieve completed character industry jobs. Only includes jobs from the past 90 days */ + include_completed?: boolean; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_industry_jobs_activity_id + * Job activity ID + * @format int32 + */ + activity_id: number; + /** + * get_characters_character_id_industry_jobs_blueprint_id + * blueprint_id integer + * @format int64 + */ + blueprint_id: number; + /** + * get_characters_character_id_industry_jobs_blueprint_location_id + * Location ID of the location from which the blueprint was installed. Normally a station ID, but can also be an asset (e.g. container) or corporation facility + * @format int64 + */ + blueprint_location_id: number; + /** + * get_characters_character_id_industry_jobs_blueprint_type_id + * blueprint_type_id integer + * @format int32 + */ + blueprint_type_id: number; + /** + * get_characters_character_id_industry_jobs_completed_character_id + * ID of the character which completed this job + * @format int32 + */ + completed_character_id?: number; + /** + * get_characters_character_id_industry_jobs_completed_date + * Date and time when this job was completed + * @format date-time + */ + completed_date?: string; + /** + * get_characters_character_id_industry_jobs_cost + * The sume of job installation fee and industry facility tax + * @format double + */ + cost?: number; + /** + * get_characters_character_id_industry_jobs_duration + * Job duration in seconds + * @format int32 + */ + duration: number; + /** + * get_characters_character_id_industry_jobs_end_date + * Date and time when this job finished + * @format date-time + */ + end_date: string; + /** + * get_characters_character_id_industry_jobs_facility_id + * ID of the facility where this job is running + * @format int64 + */ + facility_id: number; + /** + * get_characters_character_id_industry_jobs_installer_id + * ID of the character which installed this job + * @format int32 + */ + installer_id: number; + /** + * get_characters_character_id_industry_jobs_job_id + * Unique job ID + * @format int32 + */ + job_id: number; + /** + * get_characters_character_id_industry_jobs_licensed_runs + * Number of runs blueprint is licensed for + * @format int32 + */ + licensed_runs?: number; + /** + * get_characters_character_id_industry_jobs_output_location_id + * Location ID of the location to which the output of the job will be delivered. Normally a station ID, but can also be a corporation facility + * @format int64 + */ + output_location_id: number; + /** + * get_characters_character_id_industry_jobs_pause_date + * Date and time when this job was paused (i.e. time when the facility where this job was installed went offline) + * @format date-time + */ + pause_date?: string; + /** + * get_characters_character_id_industry_jobs_probability + * Chance of success for invention + * @format float + */ + probability?: number; + /** + * get_characters_character_id_industry_jobs_product_type_id + * Type ID of product (manufactured, copied or invented) + * @format int32 + */ + product_type_id?: number; + /** + * get_characters_character_id_industry_jobs_runs + * Number of runs for a manufacturing job, or number of copies to make for a blueprint copy + * @format int32 + */ + runs: number; + /** + * get_characters_character_id_industry_jobs_start_date + * Date and time when this job started + * @format date-time + */ + start_date: string; + /** + * get_characters_character_id_industry_jobs_station_id + * ID of the station where industry facility is located + * @format int64 + */ + station_id: number; + /** + * get_characters_character_id_industry_jobs_status + * status string + */ + status: "active" | "cancelled" | "delivered" | "paused" | "ready" | "reverted"; + /** + * get_characters_character_id_industry_jobs_successful_runs + * Number of successful runs for this job. Equal to runs unless this is an invention job + * @format int32 + */ + successful_runs?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/industry/jobs/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a list of a character's kills and losses going back 90 days --- Alternate route: `/dev/characters/{character_id}/killmails/recent/` Alternate route: `/legacy/characters/{character_id}/killmails/recent/` Alternate route: `/v1/characters/{character_id}/killmails/recent/` --- This route is cached for up to 300 seconds + * + * @tags Killmails + * @name GetCharactersCharacterIdKillmailsRecent + * @summary Get a character's recent kills and losses + * @request GET:/characters/{character_id}/killmails/recent/ + * @secure + */ + getCharactersCharacterIdKillmailsRecent: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_killmails_recent_killmail_hash + * A hash of this killmail + */ + killmail_hash: string; + /** + * get_characters_character_id_killmails_recent_killmail_id + * ID of this killmail + * @format int32 + */ + killmail_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/killmails/recent/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable --- Alternate route: `/dev/characters/{character_id}/location/` Alternate route: `/legacy/characters/{character_id}/location/` Alternate route: `/v1/characters/{character_id}/location/` Alternate route: `/v2/characters/{character_id}/location/` --- This route is cached for up to 5 seconds + * + * @tags Location + * @name GetCharactersCharacterIdLocation + * @summary Get character location + * @request GET:/characters/{character_id}/location/ + * @secure + */ + getCharactersCharacterIdLocation: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_location_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + /** + * get_characters_character_id_location_station_id + * station_id integer + * @format int32 + */ + station_id?: number; + /** + * get_characters_character_id_location_structure_id + * structure_id integer + * @format int64 + */ + structure_id?: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/location/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a list of loyalty points for all corporations the character has worked for --- Alternate route: `/dev/characters/{character_id}/loyalty/points/` Alternate route: `/legacy/characters/{character_id}/loyalty/points/` Alternate route: `/v1/characters/{character_id}/loyalty/points/` --- This route is cached for up to 3600 seconds + * + * @tags Loyalty + * @name GetCharactersCharacterIdLoyaltyPoints + * @summary Get loyalty points + * @request GET:/characters/{character_id}/loyalty/points/ + * @secure + */ + getCharactersCharacterIdLoyaltyPoints: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_loyalty_points_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id: number; + /** + * get_characters_character_id_loyalty_points_loyalty_points + * loyalty_points integer + * @format int32 + */ + loyalty_points: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/loyalty/points/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return the 50 most recent mail headers belonging to the character that match the query criteria. Queries can be filtered by label, and last_mail_id can be used to paginate backwards --- Alternate route: `/dev/characters/{character_id}/mail/` Alternate route: `/legacy/characters/{character_id}/mail/` Alternate route: `/v1/characters/{character_id}/mail/` --- This route is cached for up to 30 seconds + * + * @tags Mail + * @name GetCharactersCharacterIdMail + * @summary Return mail headers + * @request GET:/characters/{character_id}/mail/ + * @secure + */ + getCharactersCharacterIdMail: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Fetch only mails that match one or more of the given labels + * @maxItems 25 + * @minItems 1 + * @uniqueItems true + */ + labels?: number[]; + /** + * List only mail with an ID lower than the given ID, if present + * @format int32 + */ + last_mail_id?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_mail_from + * From whom the mail was sent + * @format int32 + */ + from?: number; + /** + * get_characters_character_id_mail_is_read + * is_read boolean + */ + is_read?: boolean; + /** + * get_characters_character_id_mail_labels + * labels array + * @min 0 + * @maxItems 25 + * @uniqueItems true + */ + labels?: number[]; + /** + * get_characters_character_id_mail_mail_id + * mail_id integer + * @format int32 + */ + mail_id?: number; + /** + * get_characters_character_id_mail_recipients + * Recipients of the mail + * @maxItems 52 + * @minItems 0 + * @uniqueItems true + */ + recipients?: { + /** + * get_characters_character_id_mail_recipient_id + * recipient_id integer + * @format int32 + */ + recipient_id: number; + /** + * get_characters_character_id_mail_recipient_type + * recipient_type string + */ + recipient_type: "alliance" | "character" | "corporation" | "mailing_list"; + }[]; + /** + * get_characters_character_id_mail_subject + * Mail subject + */ + subject?: string; + /** + * get_characters_character_id_mail_timestamp + * When the mail was sent + * @format date-time + */ + timestamp?: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Create and send a new mail --- Alternate route: `/dev/characters/{character_id}/mail/` Alternate route: `/legacy/characters/{character_id}/mail/` Alternate route: `/v1/characters/{character_id}/mail/` + * + * @tags Mail + * @name PostCharactersCharacterIdMail + * @summary Send a new mail + * @request POST:/characters/{character_id}/mail/ + * @secure + */ + postCharactersCharacterIdMail: ( + characterId: number, + mail: { + /** + * post_characters_character_id_mail_approved_cost + * approved_cost integer + * @format int64 + * @default 0 + */ + approved_cost?: number; + /** + * post_characters_character_id_mail_body + * body string + * @maxLength 10000 + */ + body: string; + /** + * post_characters_character_id_mail_recipients + * recipients array + * @maxItems 50 + * @minItems 1 + */ + recipients: { + /** + * post_characters_character_id_mail_recipient_id + * recipient_id integer + * @format int32 + */ + recipient_id: number; + /** + * post_characters_character_id_mail_recipient_type + * recipient_type string + */ + recipient_type: "alliance" | "character" | "corporation" | "mailing_list"; + }[]; + /** + * post_characters_character_id_mail_subject + * subject string + * @maxLength 1000 + */ + subject: string; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number, + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + | { + /** + * post_characters_character_id_mail_520_error_520 + * Error 520 message + */ + error?: string; + } + >({ + path: `/characters/${characterId}/mail/`, + method: "POST", + query: query, + body: mail, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Return a list of the users mail labels, unread counts for each label and a total unread count. --- Alternate route: `/dev/characters/{character_id}/mail/labels/` Alternate route: `/v3/characters/{character_id}/mail/labels/` --- This route is cached for up to 30 seconds + * + * @tags Mail + * @name GetCharactersCharacterIdMailLabels + * @summary Get mail labels and unread counts + * @request GET:/characters/{character_id}/mail/labels/ + * @secure + */ + getCharactersCharacterIdMailLabels: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_mail_labels_labels + * labels array + * @maxItems 30 + */ + labels?: { + /** + * get_characters_character_id_mail_labels_color + * color string + * @default "#ffffff" + */ + color?: + | "#0000fe" + | "#006634" + | "#0099ff" + | "#00ff33" + | "#01ffff" + | "#349800" + | "#660066" + | "#666666" + | "#999999" + | "#99ffff" + | "#9a0000" + | "#ccff9a" + | "#e6e6e6" + | "#fe0000" + | "#ff6600" + | "#ffff01" + | "#ffffcd" + | "#ffffff"; + /** + * get_characters_character_id_mail_labels_label_id + * label_id integer + * @format int32 + * @min 0 + */ + label_id?: number; + /** + * get_characters_character_id_mail_labels_name + * name string + * @maxLength 40 + */ + name?: string; + /** + * get_characters_character_id_mail_labels_unread_count + * unread_count integer + * @format int32 + * @min 0 + */ + unread_count?: number; + }[]; + /** + * get_characters_character_id_mail_labels_total_unread_count + * total_unread_count integer + * @format int32 + * @min 0 + */ + total_unread_count?: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/labels/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Create a mail label --- Alternate route: `/dev/characters/{character_id}/mail/labels/` Alternate route: `/legacy/characters/{character_id}/mail/labels/` Alternate route: `/v2/characters/{character_id}/mail/labels/` + * + * @tags Mail + * @name PostCharactersCharacterIdMailLabels + * @summary Create a mail label + * @request POST:/characters/{character_id}/mail/labels/ + * @secure + */ + postCharactersCharacterIdMailLabels: ( + characterId: number, + label: { + /** + * post_characters_character_id_mail_labels_color + * Hexadecimal string representing label color, in RGB format + * @default "#ffffff" + */ + color?: + | "#0000fe" + | "#006634" + | "#0099ff" + | "#00ff33" + | "#01ffff" + | "#349800" + | "#660066" + | "#666666" + | "#999999" + | "#99ffff" + | "#9a0000" + | "#ccff9a" + | "#e6e6e6" + | "#fe0000" + | "#ff6600" + | "#ffff01" + | "#ffffcd" + | "#ffffff"; + /** + * post_characters_character_id_mail_labels_name + * name string + * @minLength 1 + * @maxLength 40 + */ + name: string; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/labels/`, + method: "POST", + query: query, + body: label, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Delete a mail label --- Alternate route: `/dev/characters/{character_id}/mail/labels/{label_id}/` Alternate route: `/legacy/characters/{character_id}/mail/labels/{label_id}/` Alternate route: `/v1/characters/{character_id}/mail/labels/{label_id}/` + * + * @tags Mail + * @name DeleteCharactersCharacterIdMailLabelsLabelId + * @summary Delete a mail label + * @request DELETE:/characters/{character_id}/mail/labels/{label_id}/ + * @secure + */ + deleteCharactersCharacterIdMailLabelsLabelId: ( + characterId: number, + labelId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | { + /** + * delete_characters_character_id_mail_labels_label_id_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/labels/${labelId}/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Return all mailing lists that the character is subscribed to --- Alternate route: `/dev/characters/{character_id}/mail/lists/` Alternate route: `/legacy/characters/{character_id}/mail/lists/` Alternate route: `/v1/characters/{character_id}/mail/lists/` --- This route is cached for up to 120 seconds + * + * @tags Mail + * @name GetCharactersCharacterIdMailLists + * @summary Return mailing list subscriptions + * @request GET:/characters/{character_id}/mail/lists/ + * @secure + */ + getCharactersCharacterIdMailLists: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_mail_lists_mailing_list_id + * Mailing list ID + * @format int32 + */ + mailing_list_id: number; + /** + * get_characters_character_id_mail_lists_name + * name string + */ + name: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/lists/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Delete a mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` + * + * @tags Mail + * @name DeleteCharactersCharacterIdMailMailId + * @summary Delete a mail + * @request DELETE:/characters/{character_id}/mail/{mail_id}/ + * @secure + */ + deleteCharactersCharacterIdMailMailId: ( + characterId: number, + mailId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/${mailId}/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Return the contents of an EVE mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` --- This route is cached for up to 30 seconds + * + * @tags Mail + * @name GetCharactersCharacterIdMailMailId + * @summary Return a mail + * @request GET:/characters/{character_id}/mail/{mail_id}/ + * @secure + */ + getCharactersCharacterIdMailMailId: ( + characterId: number, + mailId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_mail_mail_id_body + * Mail's body + */ + body?: string; + /** + * get_characters_character_id_mail_mail_id_from + * From whom the mail was sent + * @format int32 + */ + from?: number; + /** + * get_characters_character_id_mail_mail_id_labels + * Labels attached to the mail + * @maxItems 25 + */ + labels?: number[]; + /** + * get_characters_character_id_mail_mail_id_read + * Whether the mail is flagged as read + */ + read?: boolean; + /** + * get_characters_character_id_mail_mail_id_recipients + * Recipients of the mail + * @maxItems 52 + * @minItems 0 + * @uniqueItems true + */ + recipients?: { + /** + * get_characters_character_id_mail_mail_id_recipient_id + * recipient_id integer + * @format int32 + */ + recipient_id: number; + /** + * get_characters_character_id_mail_mail_id_recipient_type + * recipient_type string + */ + recipient_type: "alliance" | "character" | "corporation" | "mailing_list"; + }[]; + /** + * get_characters_character_id_mail_mail_id_subject + * Mail subject + */ + subject?: string; + /** + * get_characters_character_id_mail_mail_id_timestamp + * When the mail was sent + * @format date-time + */ + timestamp?: string; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_mail_mail_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/${mailId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Update metadata about a mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` + * + * @tags Mail + * @name PutCharactersCharacterIdMailMailId + * @summary Update metadata about a mail + * @request PUT:/characters/{character_id}/mail/{mail_id}/ + * @secure + */ + putCharactersCharacterIdMailMailId: ( + characterId: number, + mailId: number, + contents: { + /** + * put_characters_character_id_mail_mail_id_labels + * Labels to assign to the mail. Pre-existing labels are unassigned. + * @maxItems 25 + */ + labels?: number[]; + /** + * put_characters_character_id_mail_mail_id_read + * Whether the mail is flagged as read + */ + read?: boolean; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/characters/${characterId}/mail/${mailId}/`, + method: "PUT", + query: query, + body: contents, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Return a list of medals the character has --- Alternate route: `/dev/characters/{character_id}/medals/` Alternate route: `/v2/characters/{character_id}/medals/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdMedals + * @summary Get medals + * @request GET:/characters/{character_id}/medals/ + * @secure + */ + getCharactersCharacterIdMedals: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_medals_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id: number; + /** + * get_characters_character_id_medals_date + * date string + * @format date-time + */ + date: string; + /** + * get_characters_character_id_medals_description + * description string + */ + description: string; + /** + * get_characters_character_id_medals_graphics + * graphics array + * @maxItems 9 + * @minItems 3 + */ + graphics: { + /** + * get_characters_character_id_medals_color + * color integer + * @format int32 + */ + color?: number; + /** + * get_characters_character_id_medals_graphic_graphic + * graphic string + */ + graphic: string; + /** + * get_characters_character_id_medals_layer + * layer integer + * @format int32 + */ + layer: number; + /** + * get_characters_character_id_medals_part + * part integer + * @format int32 + */ + part: number; + }[]; + /** + * get_characters_character_id_medals_issuer_id + * issuer_id integer + * @format int32 + */ + issuer_id: number; + /** + * get_characters_character_id_medals_medal_id + * medal_id integer + * @format int32 + */ + medal_id: number; + /** + * get_characters_character_id_medals_reason + * reason string + */ + reason: string; + /** + * get_characters_character_id_medals_status + * status string + */ + status: "public" | "private"; + /** + * get_characters_character_id_medals_title + * title string + */ + title: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/medals/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Paginated record of all mining done by a character for the past 30 days --- Alternate route: `/dev/characters/{character_id}/mining/` Alternate route: `/legacy/characters/{character_id}/mining/` Alternate route: `/v1/characters/{character_id}/mining/` --- This route is cached for up to 600 seconds + * + * @tags Industry + * @name GetCharactersCharacterIdMining + * @summary Character mining ledger + * @request GET:/characters/{character_id}/mining/ + * @secure + */ + getCharactersCharacterIdMining: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_mining_date + * date string + * @format date + */ + date: string; + /** + * get_characters_character_id_mining_quantity + * quantity integer + * @format int64 + */ + quantity: number; + /** + * get_characters_character_id_mining_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + /** + * get_characters_character_id_mining_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/mining/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return character notifications --- Alternate route: `/dev/characters/{character_id}/notifications/` Alternate route: `/v5/characters/{character_id}/notifications/` Alternate route: `/v6/characters/{character_id}/notifications/` --- This route is cached for up to 600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdNotifications + * @summary Get character notifications + * @request GET:/characters/{character_id}/notifications/ + * @secure + */ + getCharactersCharacterIdNotifications: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_notifications_is_read + * is_read boolean + */ + is_read?: boolean; + /** + * get_characters_character_id_notifications_notification_id + * notification_id integer + * @format int64 + */ + notification_id: number; + /** + * get_characters_character_id_notifications_sender_id + * sender_id integer + * @format int32 + */ + sender_id: number; + /** + * get_characters_character_id_notifications_sender_type + * sender_type string + */ + sender_type: "character" | "corporation" | "alliance" | "faction" | "other"; + /** + * get_characters_character_id_notifications_text + * text string + */ + text?: string; + /** + * get_characters_character_id_notifications_timestamp + * timestamp string + * @format date-time + */ + timestamp: string; + /** + * get_characters_character_id_notifications_type + * type string + */ + type: + | "AcceptedAlly" + | "AcceptedSurrender" + | "AgentRetiredTrigravian" + | "AllAnchoringMsg" + | "AllMaintenanceBillMsg" + | "AllStrucInvulnerableMsg" + | "AllStructVulnerableMsg" + | "AllWarCorpJoinedAllianceMsg" + | "AllWarDeclaredMsg" + | "AllWarInvalidatedMsg" + | "AllWarRetractedMsg" + | "AllWarSurrenderMsg" + | "AllianceCapitalChanged" + | "AllianceWarDeclaredV2" + | "AllyContractCancelled" + | "AllyJoinedWarAggressorMsg" + | "AllyJoinedWarAllyMsg" + | "AllyJoinedWarDefenderMsg" + | "BattlePunishFriendlyFire" + | "BillOutOfMoneyMsg" + | "BillPaidCorpAllMsg" + | "BountyClaimMsg" + | "BountyESSShared" + | "BountyESSTaken" + | "BountyPlacedAlliance" + | "BountyPlacedChar" + | "BountyPlacedCorp" + | "BountyYourBountyClaimed" + | "BuddyConnectContactAdd" + | "CharAppAcceptMsg" + | "CharAppRejectMsg" + | "CharAppWithdrawMsg" + | "CharLeftCorpMsg" + | "CharMedalMsg" + | "CharTerminationMsg" + | "CloneActivationMsg" + | "CloneActivationMsg2" + | "CloneMovedMsg" + | "CloneRevokedMsg1" + | "CloneRevokedMsg2" + | "CombatOperationFinished" + | "ContactAdd" + | "ContactEdit" + | "ContainerPasswordMsg" + | "ContractRegionChangedToPochven" + | "CorpAllBillMsg" + | "CorpAppAcceptMsg" + | "CorpAppInvitedMsg" + | "CorpAppNewMsg" + | "CorpAppRejectCustomMsg" + | "CorpAppRejectMsg" + | "CorpBecameWarEligible" + | "CorpDividendMsg" + | "CorpFriendlyFireDisableTimerCompleted" + | "CorpFriendlyFireDisableTimerStarted" + | "CorpFriendlyFireEnableTimerCompleted" + | "CorpFriendlyFireEnableTimerStarted" + | "CorpKicked" + | "CorpLiquidationMsg" + | "CorpNewCEOMsg" + | "CorpNewsMsg" + | "CorpNoLongerWarEligible" + | "CorpOfficeExpirationMsg" + | "CorpStructLostMsg" + | "CorpTaxChangeMsg" + | "CorpVoteCEORevokedMsg" + | "CorpVoteMsg" + | "CorpWarDeclaredMsg" + | "CorpWarDeclaredV2" + | "CorpWarFightingLegalMsg" + | "CorpWarInvalidatedMsg" + | "CorpWarRetractedMsg" + | "CorpWarSurrenderMsg" + | "CustomsMsg" + | "DeclareWar" + | "DistrictAttacked" + | "DustAppAcceptedMsg" + | "ESSMainBankLink" + | "EntosisCaptureStarted" + | "ExpertSystemExpired" + | "ExpertSystemExpiryImminent" + | "FWAllianceKickMsg" + | "FWAllianceWarningMsg" + | "FWCharKickMsg" + | "FWCharRankGainMsg" + | "FWCharRankLossMsg" + | "FWCharWarningMsg" + | "FWCorpJoinMsg" + | "FWCorpKickMsg" + | "FWCorpLeaveMsg" + | "FWCorpWarningMsg" + | "FacWarCorpJoinRequestMsg" + | "FacWarCorpJoinWithdrawMsg" + | "FacWarCorpLeaveRequestMsg" + | "FacWarCorpLeaveWithdrawMsg" + | "FacWarLPDisqualifiedEvent" + | "FacWarLPDisqualifiedKill" + | "FacWarLPPayoutEvent" + | "FacWarLPPayoutKill" + | "GameTimeAdded" + | "GameTimeReceived" + | "GameTimeSent" + | "GiftReceived" + | "IHubDestroyedByBillFailure" + | "IncursionCompletedMsg" + | "IndustryOperationFinished" + | "IndustryTeamAuctionLost" + | "IndustryTeamAuctionWon" + | "InfrastructureHubBillAboutToExpire" + | "InsuranceExpirationMsg" + | "InsuranceFirstShipMsg" + | "InsuranceInvalidatedMsg" + | "InsuranceIssuedMsg" + | "InsurancePayoutMsg" + | "InvasionCompletedMsg" + | "InvasionSystemLogin" + | "InvasionSystemStart" + | "JumpCloneDeletedMsg1" + | "JumpCloneDeletedMsg2" + | "KillReportFinalBlow" + | "KillReportVictim" + | "KillRightAvailable" + | "KillRightAvailableOpen" + | "KillRightEarned" + | "KillRightUnavailable" + | "KillRightUnavailableOpen" + | "KillRightUsed" + | "LocateCharMsg" + | "MadeWarMutual" + | "MercOfferRetractedMsg" + | "MercOfferedNegotiationMsg" + | "MissionCanceledTriglavian" + | "MissionOfferExpirationMsg" + | "MissionTimeoutMsg" + | "MoonminingAutomaticFracture" + | "MoonminingExtractionCancelled" + | "MoonminingExtractionFinished" + | "MoonminingExtractionStarted" + | "MoonminingLaserFired" + | "MutualWarExpired" + | "MutualWarInviteAccepted" + | "MutualWarInviteRejected" + | "MutualWarInviteSent" + | "NPCStandingsGained" + | "NPCStandingsLost" + | "OfferToAllyRetracted" + | "OfferedSurrender" + | "OfferedToAlly" + | "OfficeLeaseCanceledInsufficientStandings" + | "OldLscMessages" + | "OperationFinished" + | "OrbitalAttacked" + | "OrbitalReinforced" + | "OwnershipTransferred" + | "RaffleCreated" + | "RaffleExpired" + | "RaffleFinished" + | "ReimbursementMsg" + | "ResearchMissionAvailableMsg" + | "RetractsWar" + | "SeasonalChallengeCompleted" + | "SovAllClaimAquiredMsg" + | "SovAllClaimLostMsg" + | "SovCommandNodeEventStarted" + | "SovCorpBillLateMsg" + | "SovCorpClaimFailMsg" + | "SovDisruptorMsg" + | "SovStationEnteredFreeport" + | "SovStructureDestroyed" + | "SovStructureReinforced" + | "SovStructureSelfDestructCancel" + | "SovStructureSelfDestructFinished" + | "SovStructureSelfDestructRequested" + | "SovereigntyIHDamageMsg" + | "SovereigntySBUDamageMsg" + | "SovereigntyTCUDamageMsg" + | "StationAggressionMsg1" + | "StationAggressionMsg2" + | "StationConquerMsg" + | "StationServiceDisabled" + | "StationServiceEnabled" + | "StationStateChangeMsg" + | "StoryLineMissionAvailableMsg" + | "StructureAnchoring" + | "StructureCourierContractChanged" + | "StructureDestroyed" + | "StructureFuelAlert" + | "StructureImpendingAbandonmentAssetsAtRisk" + | "StructureItemsDelivered" + | "StructureItemsMovedToSafety" + | "StructureLostArmor" + | "StructureLostShields" + | "StructureOnline" + | "StructureServicesOffline" + | "StructureUnanchoring" + | "StructureUnderAttack" + | "StructureWentHighPower" + | "StructureWentLowPower" + | "StructuresJobsCancelled" + | "StructuresJobsPaused" + | "StructuresReinforcementChanged" + | "TowerAlertMsg" + | "TowerResourceAlertMsg" + | "TransactionReversalMsg" + | "TutorialMsg" + | "WarAdopted " + | "WarAllyInherited" + | "WarAllyOfferDeclinedMsg" + | "WarConcordInvalidates" + | "WarDeclared" + | "WarEndedHqSecurityDrop" + | "WarHQRemovedFromSpace" + | "WarInherited" + | "WarInvalid" + | "WarRetracted" + | "WarRetractedByConcord" + | "WarSurrenderDeclinedMsg" + | "WarSurrenderOfferMsg"; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/notifications/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return notifications about having been added to someone's contact list --- Alternate route: `/dev/characters/{character_id}/notifications/contacts/` Alternate route: `/v2/characters/{character_id}/notifications/contacts/` --- This route is cached for up to 600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdNotificationsContacts + * @summary Get new contact notifications + * @request GET:/characters/{character_id}/notifications/contacts/ + * @secure + */ + getCharactersCharacterIdNotificationsContacts: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_notifications_contacts_message + * message string + */ + message: string; + /** + * get_characters_character_id_notifications_contacts_notification_id + * notification_id integer + * @format int32 + */ + notification_id: number; + /** + * get_characters_character_id_notifications_contacts_send_date + * send_date string + * @format date-time + */ + send_date: string; + /** + * get_characters_character_id_notifications_contacts_sender_character_id + * sender_character_id integer + * @format int32 + */ + sender_character_id: number; + /** + * get_characters_character_id_notifications_contacts_standing_level + * A number representing the standing level the receiver has been added at by the sender. The standing levels are as follows: -10 -> Terrible | -5 -> Bad | 0 -> Neutral | 5 -> Good | 10 -> Excellent + * @format float + */ + standing_level: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/notifications/contacts/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Checks if the character is currently online --- Alternate route: `/dev/characters/{character_id}/online/` Alternate route: `/v2/characters/{character_id}/online/` Alternate route: `/v3/characters/{character_id}/online/` --- This route is cached for up to 60 seconds + * + * @tags Location + * @name GetCharactersCharacterIdOnline + * @summary Get character online + * @request GET:/characters/{character_id}/online/ + * @secure + */ + getCharactersCharacterIdOnline: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_online_last_login + * Timestamp of the last login + * @format date-time + */ + last_login?: string; + /** + * get_characters_character_id_online_last_logout + * Timestamp of the last logout + * @format date-time + */ + last_logout?: string; + /** + * get_characters_character_id_online_logins + * Total number of times the character has logged in + * @format int32 + */ + logins?: number; + /** + * get_characters_character_id_online_online + * If the character is online + */ + online: boolean; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/online/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a list of tasks finished by a character --- Alternate route: `/dev/characters/{character_id}/opportunities/` Alternate route: `/legacy/characters/{character_id}/opportunities/` Alternate route: `/v1/characters/{character_id}/opportunities/` --- This route is cached for up to 3600 seconds + * + * @tags Opportunities + * @name GetCharactersCharacterIdOpportunities + * @summary Get a character's completed tasks + * @request GET:/characters/{character_id}/opportunities/ + * @secure + */ + getCharactersCharacterIdOpportunities: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_opportunities_completed_at + * completed_at string + * @format date-time + */ + completed_at: string; + /** + * get_characters_character_id_opportunities_task_id + * task_id integer + * @format int32 + */ + task_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/opportunities/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List open market orders placed by a character --- Alternate route: `/dev/characters/{character_id}/orders/` Alternate route: `/v2/characters/{character_id}/orders/` --- This route is cached for up to 1200 seconds + * + * @tags Market + * @name GetCharactersCharacterIdOrders + * @summary List open orders from a character + * @request GET:/characters/{character_id}/orders/ + * @secure + */ + getCharactersCharacterIdOrders: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_orders_duration + * Number of days for which order is valid (starting from the issued date). An order expires at time issued + duration + * @format int32 + */ + duration: number; + /** + * get_characters_character_id_orders_escrow + * For buy orders, the amount of ISK in escrow + * @format double + */ + escrow?: number; + /** + * get_characters_character_id_orders_is_buy_order + * True if the order is a bid (buy) order + */ + is_buy_order?: boolean; + /** + * get_characters_character_id_orders_is_corporation + * Signifies whether the buy/sell order was placed on behalf of a corporation. + */ + is_corporation: boolean; + /** + * get_characters_character_id_orders_issued + * Date and time when this order was issued + * @format date-time + */ + issued: string; + /** + * get_characters_character_id_orders_location_id + * ID of the location where order was placed + * @format int64 + */ + location_id: number; + /** + * get_characters_character_id_orders_min_volume + * For buy orders, the minimum quantity that will be accepted in a matching sell order + * @format int32 + */ + min_volume?: number; + /** + * get_characters_character_id_orders_order_id + * Unique order ID + * @format int64 + */ + order_id: number; + /** + * get_characters_character_id_orders_price + * Cost per unit for this order + * @format double + */ + price: number; + /** + * get_characters_character_id_orders_range + * Valid order range, numbers are ranges in jumps + */ + range: "1" | "10" | "2" | "20" | "3" | "30" | "4" | "40" | "5" | "region" | "solarsystem" | "station"; + /** + * get_characters_character_id_orders_region_id + * ID of the region where order was placed + * @format int32 + */ + region_id: number; + /** + * get_characters_character_id_orders_type_id + * The type ID of the item transacted in this order + * @format int32 + */ + type_id: number; + /** + * get_characters_character_id_orders_volume_remain + * Quantity of items still required or offered + * @format int32 + */ + volume_remain: number; + /** + * get_characters_character_id_orders_volume_total + * Quantity of items required or offered at time order was placed + * @format int32 + */ + volume_total: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/orders/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List cancelled and expired market orders placed by a character up to 90 days in the past. --- Alternate route: `/dev/characters/{character_id}/orders/history/` Alternate route: `/legacy/characters/{character_id}/orders/history/` Alternate route: `/v1/characters/{character_id}/orders/history/` --- This route is cached for up to 3600 seconds + * + * @tags Market + * @name GetCharactersCharacterIdOrdersHistory + * @summary List historical orders by a character + * @request GET:/characters/{character_id}/orders/history/ + * @secure + */ + getCharactersCharacterIdOrdersHistory: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_orders_history_duration + * Number of days the order was valid for (starting from the issued date). An order expires at time issued + duration + * @format int32 + */ + duration: number; + /** + * get_characters_character_id_orders_history_escrow + * For buy orders, the amount of ISK in escrow + * @format double + */ + escrow?: number; + /** + * get_characters_character_id_orders_history_is_buy_order + * True if the order is a bid (buy) order + */ + is_buy_order?: boolean; + /** + * get_characters_character_id_orders_history_is_corporation + * Signifies whether the buy/sell order was placed on behalf of a corporation. + */ + is_corporation: boolean; + /** + * get_characters_character_id_orders_history_issued + * Date and time when this order was issued + * @format date-time + */ + issued: string; + /** + * get_characters_character_id_orders_history_location_id + * ID of the location where order was placed + * @format int64 + */ + location_id: number; + /** + * get_characters_character_id_orders_history_min_volume + * For buy orders, the minimum quantity that will be accepted in a matching sell order + * @format int32 + */ + min_volume?: number; + /** + * get_characters_character_id_orders_history_order_id + * Unique order ID + * @format int64 + */ + order_id: number; + /** + * get_characters_character_id_orders_history_price + * Cost per unit for this order + * @format double + */ + price: number; + /** + * get_characters_character_id_orders_history_range + * Valid order range, numbers are ranges in jumps + */ + range: "1" | "10" | "2" | "20" | "3" | "30" | "4" | "40" | "5" | "region" | "solarsystem" | "station"; + /** + * get_characters_character_id_orders_history_region_id + * ID of the region where order was placed + * @format int32 + */ + region_id: number; + /** + * get_characters_character_id_orders_history_state + * Current order state + */ + state: "cancelled" | "expired"; + /** + * get_characters_character_id_orders_history_type_id + * The type ID of the item transacted in this order + * @format int32 + */ + type_id: number; + /** + * get_characters_character_id_orders_history_volume_remain + * Quantity of items still required or offered + * @format int32 + */ + volume_remain: number; + /** + * get_characters_character_id_orders_history_volume_total + * Quantity of items required or offered at time order was placed + * @format int32 + */ + volume_total: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/orders/history/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns a list of all planetary colonies owned by a character. --- Alternate route: `/dev/characters/{character_id}/planets/` Alternate route: `/legacy/characters/{character_id}/planets/` Alternate route: `/v1/characters/{character_id}/planets/` --- This route is cached for up to 600 seconds + * + * @tags Planetary Interaction + * @name GetCharactersCharacterIdPlanets + * @summary Get colonies + * @request GET:/characters/{character_id}/planets/ + * @secure + */ + getCharactersCharacterIdPlanets: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_planets_last_update + * last_update string + * @format date-time + */ + last_update: string; + /** + * get_characters_character_id_planets_num_pins + * num_pins integer + * @format int32 + * @min 1 + */ + num_pins: number; + /** + * get_characters_character_id_planets_owner_id + * owner_id integer + * @format int32 + */ + owner_id: number; + /** + * get_characters_character_id_planets_planet_id + * planet_id integer + * @format int32 + */ + planet_id: number; + /** + * get_characters_character_id_planets_planet_type + * planet_type string + */ + planet_type: "temperate" | "barren" | "oceanic" | "ice" | "gas" | "lava" | "storm" | "plasma"; + /** + * get_characters_character_id_planets_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + /** + * get_characters_character_id_planets_upgrade_level + * upgrade_level integer + * @format int32 + * @min 0 + * @max 5 + */ + upgrade_level: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/planets/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns full details on the layout of a single planetary colony, including links, pins and routes. Note: Planetary information is only recalculated when the colony is viewed through the client. Information will not update until this criteria is met. --- Alternate route: `/dev/characters/{character_id}/planets/{planet_id}/` Alternate route: `/v3/characters/{character_id}/planets/{planet_id}/` + * + * @tags Planetary Interaction + * @name GetCharactersCharacterIdPlanetsPlanetId + * @summary Get colony layout + * @request GET:/characters/{character_id}/planets/{planet_id}/ + * @secure + */ + getCharactersCharacterIdPlanetsPlanetId: ( + characterId: number, + planetId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_planets_planet_id_links + * links array + * @maxItems 500 + */ + links: { + /** + * get_characters_character_id_planets_planet_id_destination_pin_id + * destination_pin_id integer + * @format int64 + */ + destination_pin_id: number; + /** + * get_characters_character_id_planets_planet_id_link_level + * link_level integer + * @format int32 + * @min 0 + * @max 10 + */ + link_level: number; + /** + * get_characters_character_id_planets_planet_id_source_pin_id + * source_pin_id integer + * @format int64 + */ + source_pin_id: number; + }[]; + /** + * get_characters_character_id_planets_planet_id_pins + * pins array + * @maxItems 100 + */ + pins: { + /** + * get_characters_character_id_planets_planet_id_contents + * contents array + * @maxItems 90 + */ + contents?: { + /** + * get_characters_character_id_planets_planet_id_amount + * amount integer + * @format int64 + */ + amount: number; + /** + * get_characters_character_id_planets_planet_id_content_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[]; + /** + * get_characters_character_id_planets_planet_id_expiry_time + * expiry_time string + * @format date-time + */ + expiry_time?: string; + /** + * get_characters_character_id_planets_planet_id_extractor_details + * extractor_details object + */ + extractor_details?: { + /** + * get_characters_character_id_planets_planet_id_cycle_time + * in seconds + * @format int32 + */ + cycle_time?: number; + /** + * get_characters_character_id_planets_planet_id_head_radius + * head_radius number + * @format float + */ + head_radius?: number; + /** + * get_characters_character_id_planets_planet_id_heads + * heads array + * @maxItems 10 + */ + heads: { + /** + * get_characters_character_id_planets_planet_id_head_id + * head_id integer + * @format int32 + * @min 0 + * @max 9 + */ + head_id: number; + /** + * get_characters_character_id_planets_planet_id_head_latitude + * latitude number + * @format float + */ + latitude: number; + /** + * get_characters_character_id_planets_planet_id_head_longitude + * longitude number + * @format float + */ + longitude: number; + }[]; + /** + * get_characters_character_id_planets_planet_id_product_type_id + * product_type_id integer + * @format int32 + */ + product_type_id?: number; + /** + * get_characters_character_id_planets_planet_id_qty_per_cycle + * qty_per_cycle integer + * @format int32 + */ + qty_per_cycle?: number; + }; + /** + * get_characters_character_id_planets_planet_id_factory_details + * factory_details object + */ + factory_details?: { + /** + * get_characters_character_id_planets_planet_id_factory_details_schematic_id + * schematic_id integer + * @format int32 + */ + schematic_id: number; + }; + /** + * get_characters_character_id_planets_planet_id_install_time + * install_time string + * @format date-time + */ + install_time?: string; + /** + * get_characters_character_id_planets_planet_id_last_cycle_start + * last_cycle_start string + * @format date-time + */ + last_cycle_start?: string; + /** + * get_characters_character_id_planets_planet_id_latitude + * latitude number + * @format float + */ + latitude: number; + /** + * get_characters_character_id_planets_planet_id_longitude + * longitude number + * @format float + */ + longitude: number; + /** + * get_characters_character_id_planets_planet_id_pin_id + * pin_id integer + * @format int64 + */ + pin_id: number; + /** + * get_characters_character_id_planets_planet_id_schematic_id + * schematic_id integer + * @format int32 + */ + schematic_id?: number; + /** + * get_characters_character_id_planets_planet_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[]; + /** + * get_characters_character_id_planets_planet_id_routes + * routes array + * @maxItems 1000 + */ + routes: { + /** + * get_characters_character_id_planets_planet_id_route_content_type_id + * content_type_id integer + * @format int32 + */ + content_type_id: number; + /** + * get_characters_character_id_planets_planet_id_route_destination_pin_id + * destination_pin_id integer + * @format int64 + */ + destination_pin_id: number; + /** + * get_characters_character_id_planets_planet_id_quantity + * quantity number + * @format float + */ + quantity: number; + /** + * get_characters_character_id_planets_planet_id_route_id + * route_id integer + * @format int64 + */ + route_id: number; + /** + * get_characters_character_id_planets_planet_id_route_source_pin_id + * source_pin_id integer + * @format int64 + */ + source_pin_id: number; + /** + * get_characters_character_id_planets_planet_id_waypoints + * list of pin ID waypoints + * @maxItems 5 + */ + waypoints?: number[]; + }[]; + }, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_characters_character_id_planets_planet_id_error + * error message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/planets/${planetId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get portrait urls for a character --- Alternate route: `/dev/characters/{character_id}/portrait/` Alternate route: `/v2/characters/{character_id}/portrait/` Alternate route: `/v3/characters/{character_id}/portrait/` --- This route expires daily at 11:05 + * + * @tags Character + * @name GetCharactersCharacterIdPortrait + * @summary Get character portraits + * @request GET:/characters/{character_id}/portrait/ + */ + getCharactersCharacterIdPortrait: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_portrait_px128x128 + * px128x128 string + */ + px128x128?: string; + /** + * get_characters_character_id_portrait_px256x256 + * px256x256 string + */ + px256x256?: string; + /** + * get_characters_character_id_portrait_px512x512 + * px512x512 string + */ + px512x512?: string; + /** + * get_characters_character_id_portrait_px64x64 + * px64x64 string + */ + px64x64?: string; + }, + | void + | BadRequest + | { + /** + * get_characters_character_id_portrait_error + * error message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/portrait/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Returns a character's corporation roles --- Alternate route: `/dev/characters/{character_id}/roles/` Alternate route: `/v3/characters/{character_id}/roles/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdRoles + * @summary Get character corporation roles + * @request GET:/characters/{character_id}/roles/ + * @secure + */ + getCharactersCharacterIdRoles: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_roles_roles + * roles array + * @maxItems 50 + */ + roles?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_characters_character_id_roles_roles_at_base + * roles_at_base array + * @maxItems 50 + */ + roles_at_base?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_characters_character_id_roles_roles_at_hq + * roles_at_hq array + * @maxItems 50 + */ + roles_at_hq?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_characters_character_id_roles_roles_at_other + * roles_at_other array + * @maxItems 50 + */ + roles_at_other?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/roles/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Search for entities that match a given sub-string. --- Alternate route: `/dev/characters/{character_id}/search/` Alternate route: `/legacy/characters/{character_id}/search/` Alternate route: `/v3/characters/{character_id}/search/` --- This route is cached for up to 3600 seconds + * + * @tags Search + * @name GetCharactersCharacterIdSearch + * @summary Search on a string + * @request GET:/characters/{character_id}/search/ + * @secure + */ + getCharactersCharacterIdSearch: ( + characterId: number, + query: { + /** + * Type of entities to search for + * @maxItems 11 + * @minItems 1 + * @uniqueItems true + */ + categories: ( + | "agent" + | "alliance" + | "character" + | "constellation" + | "corporation" + | "faction" + | "inventory_type" + | "region" + | "solar_system" + | "station" + | "structure" + )[]; + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + /** + * The string to search on + * @minLength 3 + */ + search: string; + /** + * Whether the search should be a strict match + * @default false + */ + strict?: boolean; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_search_agent + * agent array + * @maxItems 500 + */ + agent?: number[]; + /** + * get_characters_character_id_search_alliance + * alliance array + * @maxItems 500 + */ + alliance?: number[]; + /** + * get_characters_character_id_search_character + * character array + * @maxItems 500 + */ + character?: number[]; + /** + * get_characters_character_id_search_constellation + * constellation array + * @maxItems 500 + */ + constellation?: number[]; + /** + * get_characters_character_id_search_corporation + * corporation array + * @maxItems 500 + */ + corporation?: number[]; + /** + * get_characters_character_id_search_faction + * faction array + * @maxItems 500 + */ + faction?: number[]; + /** + * get_characters_character_id_search_inventory_type + * inventory_type array + * @maxItems 500 + */ + inventory_type?: number[]; + /** + * get_characters_character_id_search_region + * region array + * @maxItems 500 + */ + region?: number[]; + /** + * get_characters_character_id_search_solar_system + * solar_system array + * @maxItems 500 + */ + solar_system?: number[]; + /** + * get_characters_character_id_search_station + * station array + * @maxItems 500 + */ + station?: number[]; + /** + * get_characters_character_id_search_structure + * structure array + * @maxItems 500 + */ + structure?: number[]; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/search/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get the current ship type, name and id --- Alternate route: `/dev/characters/{character_id}/ship/` Alternate route: `/legacy/characters/{character_id}/ship/` Alternate route: `/v1/characters/{character_id}/ship/` Alternate route: `/v2/characters/{character_id}/ship/` --- This route is cached for up to 5 seconds + * + * @tags Location + * @name GetCharactersCharacterIdShip + * @summary Get current ship + * @request GET:/characters/{character_id}/ship/ + * @secure + */ + getCharactersCharacterIdShip: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_ship_ship_item_id + * Item id's are unique to a ship and persist until it is repackaged. This value can be used to track repeated uses of a ship, or detect when a pilot changes into a different instance of the same ship type. + * @format int64 + */ + ship_item_id: number; + /** + * get_characters_character_id_ship_ship_name + * ship_name string + */ + ship_name: string; + /** + * get_characters_character_id_ship_ship_type_id + * ship_type_id integer + * @format int32 + */ + ship_type_id: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/ship/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List the configured skill queue for the given character --- Alternate route: `/dev/characters/{character_id}/skillqueue/` Alternate route: `/legacy/characters/{character_id}/skillqueue/` Alternate route: `/v2/characters/{character_id}/skillqueue/` --- This route is cached for up to 120 seconds + * + * @tags Skills + * @name GetCharactersCharacterIdSkillqueue + * @summary Get character's skill queue + * @request GET:/characters/{character_id}/skillqueue/ + * @secure + */ + getCharactersCharacterIdSkillqueue: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_skillqueue_finish_date + * Date on which training of the skill will complete. Omitted if the skill queue is paused. + * @format date-time + */ + finish_date?: string; + /** + * get_characters_character_id_skillqueue_finished_level + * finished_level integer + * @format int32 + * @min 0 + * @max 5 + */ + finished_level: number; + /** + * get_characters_character_id_skillqueue_level_end_sp + * level_end_sp integer + * @format int32 + */ + level_end_sp?: number; + /** + * get_characters_character_id_skillqueue_level_start_sp + * Amount of SP that was in the skill when it started training it's current level. Used to calculate % of current level complete. + * @format int32 + */ + level_start_sp?: number; + /** + * get_characters_character_id_skillqueue_queue_position + * queue_position integer + * @format int32 + */ + queue_position: number; + /** + * get_characters_character_id_skillqueue_skill_id + * skill_id integer + * @format int32 + */ + skill_id: number; + /** + * get_characters_character_id_skillqueue_start_date + * start_date string + * @format date-time + */ + start_date?: string; + /** + * get_characters_character_id_skillqueue_training_start_sp + * training_start_sp integer + * @format int32 + */ + training_start_sp?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/skillqueue/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List all trained skills for the given character --- Alternate route: `/dev/characters/{character_id}/skills/` Alternate route: `/v4/characters/{character_id}/skills/` --- This route is cached for up to 120 seconds + * + * @tags Skills + * @name GetCharactersCharacterIdSkills + * @summary Get character skills + * @request GET:/characters/{character_id}/skills/ + * @secure + */ + getCharactersCharacterIdSkills: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_skills_skills + * skills array + * @maxItems 1000 + */ + skills: { + /** + * get_characters_character_id_skills_active_skill_level + * active_skill_level integer + * @format int32 + */ + active_skill_level: number; + /** + * get_characters_character_id_skills_skill_id + * skill_id integer + * @format int32 + */ + skill_id: number; + /** + * get_characters_character_id_skills_skillpoints_in_skill + * skillpoints_in_skill integer + * @format int64 + */ + skillpoints_in_skill: number; + /** + * get_characters_character_id_skills_trained_skill_level + * trained_skill_level integer + * @format int32 + */ + trained_skill_level: number; + }[]; + /** + * get_characters_character_id_skills_total_sp + * total_sp integer + * @format int64 + */ + total_sp: number; + /** + * get_characters_character_id_skills_unallocated_sp + * Skill points available to be assigned + * @format int32 + */ + unallocated_sp?: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/skills/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return character standings from agents, NPC corporations, and factions --- Alternate route: `/dev/characters/{character_id}/standings/` Alternate route: `/v2/characters/{character_id}/standings/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdStandings + * @summary Get standings + * @request GET:/characters/{character_id}/standings/ + * @secure + */ + getCharactersCharacterIdStandings: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_standings_from_id + * from_id integer + * @format int32 + */ + from_id: number; + /** + * get_characters_character_id_standings_from_type + * from_type string + */ + from_type: "agent" | "npc_corp" | "faction"; + /** + * get_characters_character_id_standings_standing + * standing number + * @format float + */ + standing: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/standings/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns a character's titles --- Alternate route: `/dev/characters/{character_id}/titles/` Alternate route: `/v2/characters/{character_id}/titles/` --- This route is cached for up to 3600 seconds + * + * @tags Character + * @name GetCharactersCharacterIdTitles + * @summary Get character corporation titles + * @request GET:/characters/{character_id}/titles/ + * @secure + */ + getCharactersCharacterIdTitles: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_titles_name + * name string + */ + name?: string; + /** + * get_characters_character_id_titles_title_id + * title_id integer + * @format int32 + */ + title_id?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/titles/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns a character's wallet balance --- Alternate route: `/legacy/characters/{character_id}/wallet/` Alternate route: `/v1/characters/{character_id}/wallet/` --- This route is cached for up to 120 seconds --- [Diff of the upcoming changes](https://esi.evetech.net/diff/latest/dev/#GET-/characters/{character_id}/wallet/) + * + * @tags Wallet + * @name GetCharactersCharacterIdWallet + * @summary Get a character's wallet balance + * @request GET:/characters/{character_id}/wallet/ + * @secure + */ + getCharactersCharacterIdWallet: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/wallet/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Retrieve the given character's wallet journal going 30 days back --- Alternate route: `/dev/characters/{character_id}/wallet/journal/` Alternate route: `/v6/characters/{character_id}/wallet/journal/` --- This route is cached for up to 3600 seconds + * + * @tags Wallet + * @name GetCharactersCharacterIdWalletJournal + * @summary Get character wallet journal + * @request GET:/characters/{character_id}/wallet/journal/ + * @secure + */ + getCharactersCharacterIdWalletJournal: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_wallet_journal_amount + * The amount of ISK given or taken from the wallet as a result of the given transaction. Positive when ISK is deposited into the wallet and negative when ISK is withdrawn + * @format double + */ + amount?: number; + /** + * get_characters_character_id_wallet_journal_balance + * Wallet balance after transaction occurred + * @format double + */ + balance?: number; + /** + * get_characters_character_id_wallet_journal_context_id + * An ID that gives extra context to the particular transaction. Because of legacy reasons the context is completely different per ref_type and means different things. It is also possible to not have a context_id + * @format int64 + */ + context_id?: number; + /** + * get_characters_character_id_wallet_journal_context_id_type + * The type of the given context_id if present + */ + context_id_type?: + | "structure_id" + | "station_id" + | "market_transaction_id" + | "character_id" + | "corporation_id" + | "alliance_id" + | "eve_system" + | "industry_job_id" + | "contract_id" + | "planet_id" + | "system_id" + | "type_id"; + /** + * get_characters_character_id_wallet_journal_date + * Date and time of transaction + * @format date-time + */ + date: string; + /** + * get_characters_character_id_wallet_journal_description + * The reason for the transaction, mirrors what is seen in the client + */ + description: string; + /** + * get_characters_character_id_wallet_journal_first_party_id + * The id of the first party involved in the transaction. This attribute has no consistency and is different or non existant for particular ref_types. The description attribute will help make sense of what this attribute means. For more info about the given ID it can be dropped into the /universe/names/ ESI route to determine its type and name + * @format int32 + */ + first_party_id?: number; + /** + * get_characters_character_id_wallet_journal_id + * Unique journal reference ID + * @format int64 + */ + id: number; + /** + * get_characters_character_id_wallet_journal_reason + * The user stated reason for the transaction. Only applies to some ref_types + */ + reason?: string; + /** + * get_characters_character_id_wallet_journal_ref_type + * "The transaction type for the given. transaction. Different transaction types will populate different attributes." + */ + ref_type: + | "acceleration_gate_fee" + | "advertisement_listing_fee" + | "agent_donation" + | "agent_location_services" + | "agent_miscellaneous" + | "agent_mission_collateral_paid" + | "agent_mission_collateral_refunded" + | "agent_mission_reward" + | "agent_mission_reward_corporation_tax" + | "agent_mission_time_bonus_reward" + | "agent_mission_time_bonus_reward_corporation_tax" + | "agent_security_services" + | "agent_services_rendered" + | "agents_preward" + | "alliance_maintainance_fee" + | "alliance_registration_fee" + | "asset_safety_recovery_tax" + | "bounty" + | "bounty_prize" + | "bounty_prize_corporation_tax" + | "bounty_prizes" + | "bounty_reimbursement" + | "bounty_surcharge" + | "brokers_fee" + | "clone_activation" + | "clone_transfer" + | "contraband_fine" + | "contract_auction_bid" + | "contract_auction_bid_corp" + | "contract_auction_bid_refund" + | "contract_auction_sold" + | "contract_brokers_fee" + | "contract_brokers_fee_corp" + | "contract_collateral" + | "contract_collateral_deposited_corp" + | "contract_collateral_payout" + | "contract_collateral_refund" + | "contract_deposit" + | "contract_deposit_corp" + | "contract_deposit_refund" + | "contract_deposit_sales_tax" + | "contract_price" + | "contract_price_payment_corp" + | "contract_reversal" + | "contract_reward" + | "contract_reward_deposited" + | "contract_reward_deposited_corp" + | "contract_reward_refund" + | "contract_sales_tax" + | "copying" + | "corporate_reward_payout" + | "corporate_reward_tax" + | "corporation_account_withdrawal" + | "corporation_bulk_payment" + | "corporation_dividend_payment" + | "corporation_liquidation" + | "corporation_logo_change_cost" + | "corporation_payment" + | "corporation_registration_fee" + | "courier_mission_escrow" + | "cspa" + | "cspaofflinerefund" + | "daily_challenge_reward" + | "datacore_fee" + | "dna_modification_fee" + | "docking_fee" + | "duel_wager_escrow" + | "duel_wager_payment" + | "duel_wager_refund" + | "ess_escrow_transfer" + | "external_trade_delivery" + | "external_trade_freeze" + | "external_trade_thaw" + | "factory_slot_rental_fee" + | "flux_payout" + | "flux_tax" + | "flux_ticket_repayment" + | "flux_ticket_sale" + | "gm_cash_transfer" + | "industry_job_tax" + | "infrastructure_hub_maintenance" + | "inheritance" + | "insurance" + | "item_trader_payment" + | "jump_clone_activation_fee" + | "jump_clone_installation_fee" + | "kill_right_fee" + | "lp_store" + | "manufacturing" + | "market_escrow" + | "market_fine_paid" + | "market_provider_tax" + | "market_transaction" + | "medal_creation" + | "medal_issued" + | "milestone_reward_payment" + | "mission_completion" + | "mission_cost" + | "mission_expiration" + | "mission_reward" + | "office_rental_fee" + | "operation_bonus" + | "opportunity_reward" + | "planetary_construction" + | "planetary_export_tax" + | "planetary_import_tax" + | "player_donation" + | "player_trading" + | "project_discovery_reward" + | "project_discovery_tax" + | "reaction" + | "redeemed_isk_token" + | "release_of_impounded_property" + | "repair_bill" + | "reprocessing_tax" + | "researching_material_productivity" + | "researching_technology" + | "researching_time_productivity" + | "resource_wars_reward" + | "reverse_engineering" + | "season_challenge_reward" + | "security_processing_fee" + | "shares" + | "skill_purchase" + | "sovereignity_bill" + | "store_purchase" + | "store_purchase_refund" + | "structure_gate_jump" + | "transaction_tax" + | "upkeep_adjustment_fee" + | "war_ally_contract" + | "war_fee" + | "war_fee_surrender"; + /** + * get_characters_character_id_wallet_journal_second_party_id + * The id of the second party involved in the transaction. This attribute has no consistency and is different or non existant for particular ref_types. The description attribute will help make sense of what this attribute means. For more info about the given ID it can be dropped into the /universe/names/ ESI route to determine its type and name + * @format int32 + */ + second_party_id?: number; + /** + * get_characters_character_id_wallet_journal_tax + * Tax amount received. Only applies to tax related transactions + * @format double + */ + tax?: number; + /** + * get_characters_character_id_wallet_journal_tax_receiver_id + * The corporation ID receiving any tax paid. Only applies to tax related transactions + * @format int32 + */ + tax_receiver_id?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/wallet/journal/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get wallet transactions of a character --- Alternate route: `/dev/characters/{character_id}/wallet/transactions/` Alternate route: `/legacy/characters/{character_id}/wallet/transactions/` Alternate route: `/v1/characters/{character_id}/wallet/transactions/` --- This route is cached for up to 3600 seconds + * + * @tags Wallet + * @name GetCharactersCharacterIdWalletTransactions + * @summary Get wallet transactions + * @request GET:/characters/{character_id}/wallet/transactions/ + * @secure + */ + getCharactersCharacterIdWalletTransactions: ( + characterId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Only show transactions happened before the one referenced by this id + * @format int64 + */ + from_id?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_characters_character_id_wallet_transactions_client_id + * client_id integer + * @format int32 + */ + client_id: number; + /** + * get_characters_character_id_wallet_transactions_date + * Date and time of transaction + * @format date-time + */ + date: string; + /** + * get_characters_character_id_wallet_transactions_is_buy + * is_buy boolean + */ + is_buy: boolean; + /** + * get_characters_character_id_wallet_transactions_is_personal + * is_personal boolean + */ + is_personal: boolean; + /** + * get_characters_character_id_wallet_transactions_journal_ref_id + * journal_ref_id integer + * @format int64 + */ + journal_ref_id: number; + /** + * get_characters_character_id_wallet_transactions_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_characters_character_id_wallet_transactions_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_characters_character_id_wallet_transactions_transaction_id + * Unique transaction ID + * @format int64 + */ + transaction_id: number; + /** + * get_characters_character_id_wallet_transactions_type_id + * type_id integer + * @format int32 + */ + type_id: number; + /** + * get_characters_character_id_wallet_transactions_unit_price + * Amount paid per unit + * @format double + */ + unit_price: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/characters/${characterId}/wallet/transactions/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + }; + contracts = { + /** + * @description Lists bids on a public auction contract --- Alternate route: `/dev/contracts/public/bids/{contract_id}/` Alternate route: `/legacy/contracts/public/bids/{contract_id}/` Alternate route: `/v1/contracts/public/bids/{contract_id}/` --- This route is cached for up to 300 seconds + * + * @tags Contracts + * @name GetContractsPublicBidsContractId + * @summary Get public contract bids + * @request GET:/contracts/public/bids/{contract_id}/ + */ + getContractsPublicBidsContractId: ( + contractId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_contracts_public_bids_contract_id_amount + * The amount bid, in ISK + * @format float + */ + amount: number; + /** + * get_contracts_public_bids_contract_id_bid_id + * Unique ID for the bid + * @format int32 + */ + bid_id: number; + /** + * get_contracts_public_bids_contract_id_date_bid + * Datetime when the bid was placed + * @format date-time + */ + date_bid: string; + }[], + | void + | BadRequest + | { + /** + * get_contracts_public_bids_contract_id_403_forbidden + * Forbidden message + */ + error?: string; + } + | { + /** + * get_contracts_public_bids_contract_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/contracts/public/bids/${contractId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Lists items of a public contract --- Alternate route: `/dev/contracts/public/items/{contract_id}/` Alternate route: `/legacy/contracts/public/items/{contract_id}/` Alternate route: `/v1/contracts/public/items/{contract_id}/` --- This route is cached for up to 3600 seconds + * + * @tags Contracts + * @name GetContractsPublicItemsContractId + * @summary Get public contract items + * @request GET:/contracts/public/items/{contract_id}/ + */ + getContractsPublicItemsContractId: ( + contractId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_contracts_public_items_contract_id_is_blueprint_copy + * is_blueprint_copy boolean + */ + is_blueprint_copy?: boolean; + /** + * get_contracts_public_items_contract_id_is_included + * true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract + */ + is_included: boolean; + /** + * get_contracts_public_items_contract_id_item_id + * Unique ID for the item being sold. Not present if item is being requested by contract rather than sold with contract + * @format int64 + */ + item_id?: number; + /** + * get_contracts_public_items_contract_id_material_efficiency + * Material Efficiency Level of the blueprint + * @format int32 + * @min 0 + * @max 25 + */ + material_efficiency?: number; + /** + * get_contracts_public_items_contract_id_quantity + * Number of items in the stack + * @format int32 + */ + quantity: number; + /** + * get_contracts_public_items_contract_id_record_id + * Unique ID for the item, used by the contract system + * @format int64 + */ + record_id: number; + /** + * get_contracts_public_items_contract_id_runs + * Number of runs remaining if the blueprint is a copy, -1 if it is an original + * @format int32 + * @min -1 + */ + runs?: number; + /** + * get_contracts_public_items_contract_id_time_efficiency + * Time Efficiency Level of the blueprint + * @format int32 + * @min 0 + * @max 20 + */ + time_efficiency?: number; + /** + * get_contracts_public_items_contract_id_type_id + * Type ID for item + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | { + /** + * get_contracts_public_items_contract_id_403_forbidden + * Forbidden message + */ + error?: string; + } + | { + /** + * get_contracts_public_items_contract_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/contracts/public/items/${contractId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Returns a paginated list of all public contracts in the given region --- Alternate route: `/dev/contracts/public/{region_id}/` Alternate route: `/legacy/contracts/public/{region_id}/` Alternate route: `/v1/contracts/public/{region_id}/` --- This route is cached for up to 1800 seconds + * + * @tags Contracts + * @name GetContractsPublicRegionId + * @summary Get public contracts + * @request GET:/contracts/public/{region_id}/ + */ + getContractsPublicRegionId: ( + regionId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_contracts_public_region_id_buyout + * Buyout price (for Auctions only) + * @format double + */ + buyout?: number; + /** + * get_contracts_public_region_id_collateral + * Collateral price (for Couriers only) + * @format double + */ + collateral?: number; + /** + * get_contracts_public_region_id_contract_id + * contract_id integer + * @format int32 + */ + contract_id: number; + /** + * get_contracts_public_region_id_date_expired + * Expiration date of the contract + * @format date-time + */ + date_expired: string; + /** + * get_contracts_public_region_id_date_issued + * Сreation date of the contract + * @format date-time + */ + date_issued: string; + /** + * get_contracts_public_region_id_days_to_complete + * Number of days to perform the contract + * @format int32 + */ + days_to_complete?: number; + /** + * get_contracts_public_region_id_end_location_id + * End location ID (for Couriers contract) + * @format int64 + */ + end_location_id?: number; + /** + * get_contracts_public_region_id_for_corporation + * true if the contract was issued on behalf of the issuer's corporation + */ + for_corporation?: boolean; + /** + * get_contracts_public_region_id_issuer_corporation_id + * Character's corporation ID for the issuer + * @format int32 + */ + issuer_corporation_id: number; + /** + * get_contracts_public_region_id_issuer_id + * Character ID for the issuer + * @format int32 + */ + issuer_id: number; + /** + * get_contracts_public_region_id_price + * Price of contract (for ItemsExchange and Auctions) + * @format double + */ + price?: number; + /** + * get_contracts_public_region_id_reward + * Remuneration for contract (for Couriers only) + * @format double + */ + reward?: number; + /** + * get_contracts_public_region_id_start_location_id + * Start location ID (for Couriers contract) + * @format int64 + */ + start_location_id?: number; + /** + * get_contracts_public_region_id_title + * Title of the contract + */ + title?: string; + /** + * get_contracts_public_region_id_type + * Type of the contract + */ + type: "unknown" | "item_exchange" | "auction" | "courier" | "loan"; + /** + * get_contracts_public_region_id_volume + * Volume of items in the contract + * @format double + */ + volume?: number; + }[], + | void + | BadRequest + | { + /** + * get_contracts_public_region_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/contracts/public/${regionId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + corporation = { + /** + * @description Extraction timers for all moon chunks being extracted by refineries belonging to a corporation. --- Alternate route: `/dev/corporation/{corporation_id}/mining/extractions/` Alternate route: `/legacy/corporation/{corporation_id}/mining/extractions/` Alternate route: `/v1/corporation/{corporation_id}/mining/extractions/` --- This route is cached for up to 1800 seconds --- Requires one of the following EVE corporation role(s): Station_Manager + * + * @tags Industry + * @name GetCorporationCorporationIdMiningExtractions + * @summary Moon extraction timers + * @request GET:/corporation/{corporation_id}/mining/extractions/ + * @secure + */ + getCorporationCorporationIdMiningExtractions: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporation_corporation_id_mining_extractions_chunk_arrival_time + * The time at which the chunk being extracted will arrive and can be fractured by the moon mining drill. + * @format date-time + */ + chunk_arrival_time: string; + /** + * get_corporation_corporation_id_mining_extractions_extraction_start_time + * The time at which the current extraction was initiated. + * @format date-time + */ + extraction_start_time: string; + /** + * get_corporation_corporation_id_mining_extractions_moon_id + * moon_id integer + * @format int32 + */ + moon_id: number; + /** + * get_corporation_corporation_id_mining_extractions_natural_decay_time + * The time at which the chunk being extracted will naturally fracture if it is not first fractured by the moon mining drill. + * @format date-time + */ + natural_decay_time: string; + /** + * get_corporation_corporation_id_mining_extractions_structure_id + * structure_id integer + * @format int64 + */ + structure_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporation/${corporationId}/mining/extractions/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Paginated list of all entities capable of observing and recording mining for a corporation --- Alternate route: `/dev/corporation/{corporation_id}/mining/observers/` Alternate route: `/legacy/corporation/{corporation_id}/mining/observers/` Alternate route: `/v1/corporation/{corporation_id}/mining/observers/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant + * + * @tags Industry + * @name GetCorporationCorporationIdMiningObservers + * @summary Corporation mining observers + * @request GET:/corporation/{corporation_id}/mining/observers/ + * @secure + */ + getCorporationCorporationIdMiningObservers: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporation_corporation_id_mining_observers_last_updated + * last_updated string + * @format date + */ + last_updated: string; + /** + * get_corporation_corporation_id_mining_observers_observer_id + * The entity that was observing the asteroid field when it was mined. + * @format int64 + */ + observer_id: number; + /** + * get_corporation_corporation_id_mining_observers_observer_type + * The category of the observing entity + */ + observer_type: "structure"; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporation/${corporationId}/mining/observers/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Paginated record of all mining seen by an observer --- Alternate route: `/dev/corporation/{corporation_id}/mining/observers/{observer_id}/` Alternate route: `/legacy/corporation/{corporation_id}/mining/observers/{observer_id}/` Alternate route: `/v1/corporation/{corporation_id}/mining/observers/{observer_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant + * + * @tags Industry + * @name GetCorporationCorporationIdMiningObserversObserverId + * @summary Observed corporation mining + * @request GET:/corporation/{corporation_id}/mining/observers/{observer_id}/ + * @secure + */ + getCorporationCorporationIdMiningObserversObserverId: ( + corporationId: number, + observerId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporation_corporation_id_mining_observers_observer_id_character_id + * The character that did the mining + * @format int32 + */ + character_id: number; + /** + * get_corporation_corporation_id_mining_observers_observer_id_last_updated + * last_updated string + * @format date + */ + last_updated: string; + /** + * get_corporation_corporation_id_mining_observers_observer_id_quantity + * quantity integer + * @format int64 + */ + quantity: number; + /** + * get_corporation_corporation_id_mining_observers_observer_id_recorded_corporation_id + * The corporation id of the character at the time data was recorded. + * @format int32 + */ + recorded_corporation_id: number; + /** + * get_corporation_corporation_id_mining_observers_observer_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporation/${corporationId}/mining/observers/${observerId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + }; + corporations = { + /** + * @description Get a list of npc corporations --- Alternate route: `/dev/corporations/npccorps/` Alternate route: `/v2/corporations/npccorps/` --- This route expires daily at 11:05 + * + * @tags Corporation + * @name GetCorporationsNpccorps + * @summary Get npc corporations + * @request GET:/corporations/npccorps/ + */ + getCorporationsNpccorps: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/corporations/npccorps/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Public information about a corporation --- Alternate route: `/dev/corporations/{corporation_id}/` Alternate route: `/v5/corporations/{corporation_id}/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationId + * @summary Get corporation information + * @request GET:/corporations/{corporation_id}/ + */ + getCorporationsCorporationId: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_alliance_id + * ID of the alliance that corporation is a member of, if any + * @format int32 + */ + alliance_id?: number; + /** + * get_corporations_corporation_id_ceo_id + * ceo_id integer + * @format int32 + */ + ceo_id: number; + /** + * get_corporations_corporation_id_creator_id + * creator_id integer + * @format int32 + */ + creator_id: number; + /** + * get_corporations_corporation_id_date_founded + * date_founded string + * @format date-time + */ + date_founded?: string; + /** + * get_corporations_corporation_id_description + * description string + */ + description?: string; + /** + * get_corporations_corporation_id_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + /** + * get_corporations_corporation_id_home_station_id + * home_station_id integer + * @format int32 + */ + home_station_id?: number; + /** + * get_corporations_corporation_id_member_count + * member_count integer + * @format int32 + */ + member_count: number; + /** + * get_corporations_corporation_id_name + * the full name of the corporation + */ + name: string; + /** + * get_corporations_corporation_id_shares + * shares integer + * @format int64 + */ + shares?: number; + /** + * get_corporations_corporation_id_tax_rate + * tax_rate number + * @format float + * @min 0 + * @max 1 + */ + tax_rate: number; + /** + * get_corporations_corporation_id_ticker + * the short name of the corporation + */ + ticker: string; + /** + * get_corporations_corporation_id_url + * url string + */ + url?: string; + /** + * get_corporations_corporation_id_war_eligible + * war_eligible boolean + */ + war_eligible?: boolean; + }, + | void + | BadRequest + | { + /** + * get_corporations_corporation_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of all the alliances a corporation has been a member of --- Alternate route: `/dev/corporations/{corporation_id}/alliancehistory/` Alternate route: `/v3/corporations/{corporation_id}/alliancehistory/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationIdAlliancehistory + * @summary Get alliance history + * @request GET:/corporations/{corporation_id}/alliancehistory/ + */ + getCorporationsCorporationIdAlliancehistory: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_alliancehistory_alliance_id + * alliance_id integer + * @format int32 + */ + alliance_id?: number; + /** + * get_corporations_corporation_id_alliancehistory_is_deleted + * True if the alliance has been closed + */ + is_deleted?: boolean; + /** + * get_corporations_corporation_id_alliancehistory_record_id + * An incrementing ID that can be used to canonically establish order of records in cases where dates may be ambiguous + * @format int32 + */ + record_id: number; + /** + * get_corporations_corporation_id_alliancehistory_start_date + * start_date string + * @format date-time + */ + start_date: string; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/corporations/${corporationId}/alliancehistory/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of the corporation assets --- Alternate route: `/dev/corporations/{corporation_id}/assets/` Alternate route: `/v5/corporations/{corporation_id}/assets/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Assets + * @name GetCorporationsCorporationIdAssets + * @summary Get corporation assets + * @request GET:/corporations/{corporation_id}/assets/ + * @secure + */ + getCorporationsCorporationIdAssets: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_assets_is_blueprint_copy + * is_blueprint_copy boolean + */ + is_blueprint_copy?: boolean; + /** + * get_corporations_corporation_id_assets_is_singleton + * is_singleton boolean + */ + is_singleton: boolean; + /** + * get_corporations_corporation_id_assets_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * get_corporations_corporation_id_assets_location_flag + * location_flag string + */ + location_flag: + | "AssetSafety" + | "AutoFit" + | "Bonus" + | "Booster" + | "BoosterBay" + | "Capsule" + | "Cargo" + | "CorpDeliveries" + | "CorpSAG1" + | "CorpSAG2" + | "CorpSAG3" + | "CorpSAG4" + | "CorpSAG5" + | "CorpSAG6" + | "CorpSAG7" + | "CrateLoot" + | "Deliveries" + | "DroneBay" + | "DustBattle" + | "DustDatabank" + | "FighterBay" + | "FighterTube0" + | "FighterTube1" + | "FighterTube2" + | "FighterTube3" + | "FighterTube4" + | "FleetHangar" + | "FrigateEscapeBay" + | "Hangar" + | "HangarAll" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "HiddenModifiers" + | "Implant" + | "Impounded" + | "JunkyardReprocessed" + | "JunkyardTrashed" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "Locked" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "OfficeFolder" + | "Pilot" + | "PlanetSurface" + | "QuafeBay" + | "QuantumCoreRoom" + | "Reward" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "RigSlot3" + | "RigSlot4" + | "RigSlot5" + | "RigSlot6" + | "RigSlot7" + | "SecondaryStorage" + | "ServiceSlot0" + | "ServiceSlot1" + | "ServiceSlot2" + | "ServiceSlot3" + | "ServiceSlot4" + | "ServiceSlot5" + | "ServiceSlot6" + | "ServiceSlot7" + | "ShipHangar" + | "ShipOffline" + | "Skill" + | "SkillInTraining" + | "SpecializedAmmoHold" + | "SpecializedAsteroidHold" + | "SpecializedCommandCenterHold" + | "SpecializedFuelBay" + | "SpecializedGasHold" + | "SpecializedIceHold" + | "SpecializedIndustrialShipHold" + | "SpecializedLargeShipHold" + | "SpecializedMaterialBay" + | "SpecializedMediumShipHold" + | "SpecializedMineralHold" + | "SpecializedOreHold" + | "SpecializedPlanetaryCommoditiesHold" + | "SpecializedSalvageHold" + | "SpecializedShipHold" + | "SpecializedSmallShipHold" + | "StructureActive" + | "StructureFuel" + | "StructureInactive" + | "StructureOffline" + | "SubSystemBay" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3" + | "SubSystemSlot4" + | "SubSystemSlot5" + | "SubSystemSlot6" + | "SubSystemSlot7" + | "Unlocked" + | "Wallet" + | "Wardrobe"; + /** + * get_corporations_corporation_id_assets_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_assets_location_type + * location_type string + */ + location_type: "station" | "solar_system" | "item" | "other"; + /** + * get_corporations_corporation_id_assets_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_corporations_corporation_id_assets_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/assets/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return locations for a set of item ids, which you can get from corporation assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0) --- Alternate route: `/dev/corporations/{corporation_id}/assets/locations/` Alternate route: `/v2/corporations/{corporation_id}/assets/locations/` --- Requires one of the following EVE corporation role(s): Director + * + * @tags Assets + * @name PostCorporationsCorporationIdAssetsLocations + * @summary Get corporation asset locations + * @request POST:/corporations/{corporation_id}/assets/locations/ + * @secure + */ + postCorporationsCorporationIdAssetsLocations: ( + corporationId: number, + item_ids: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_corporations_corporation_id_assets_locations_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * post_corporations_corporation_id_assets_locations_position + * position object + */ + position: { + /** + * post_corporations_corporation_id_assets_locations_x + * x number + * @format double + */ + x: number; + /** + * post_corporations_corporation_id_assets_locations_y + * y number + * @format double + */ + y: number; + /** + * post_corporations_corporation_id_assets_locations_z + * z number + * @format double + */ + z: number; + }; + }[], + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * post_corporations_corporation_id_assets_locations_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/assets/locations/`, + method: "POST", + query: query, + body: item_ids, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Return names for a set of item ids, which you can get from corporation assets endpoint. Only valid for items that can customize names, like containers or ships --- Alternate route: `/dev/corporations/{corporation_id}/assets/names/` Alternate route: `/legacy/corporations/{corporation_id}/assets/names/` Alternate route: `/v1/corporations/{corporation_id}/assets/names/` --- Requires one of the following EVE corporation role(s): Director + * + * @tags Assets + * @name PostCorporationsCorporationIdAssetsNames + * @summary Get corporation asset names + * @request POST:/corporations/{corporation_id}/assets/names/ + * @secure + */ + postCorporationsCorporationIdAssetsNames: ( + corporationId: number, + item_ids: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_corporations_corporation_id_assets_names_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * post_corporations_corporation_id_assets_names_name + * name string + */ + name: string; + }[], + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * post_corporations_corporation_id_assets_names_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/assets/names/`, + method: "POST", + query: query, + body: item_ids, + secure: true, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Returns a list of blueprints the corporation owns --- Alternate route: `/dev/corporations/{corporation_id}/blueprints/` Alternate route: `/v3/corporations/{corporation_id}/blueprints/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdBlueprints + * @summary Get corporation blueprints + * @request GET:/corporations/{corporation_id}/blueprints/ + * @secure + */ + getCorporationsCorporationIdBlueprints: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_blueprints_item_id + * Unique ID for this item. + * @format int64 + */ + item_id: number; + /** + * get_corporations_corporation_id_blueprints_location_flag + * Type of the location_id + */ + location_flag: + | "AssetSafety" + | "AutoFit" + | "Bonus" + | "Booster" + | "BoosterBay" + | "Capsule" + | "Cargo" + | "CorpDeliveries" + | "CorpSAG1" + | "CorpSAG2" + | "CorpSAG3" + | "CorpSAG4" + | "CorpSAG5" + | "CorpSAG6" + | "CorpSAG7" + | "CrateLoot" + | "Deliveries" + | "DroneBay" + | "DustBattle" + | "DustDatabank" + | "FighterBay" + | "FighterTube0" + | "FighterTube1" + | "FighterTube2" + | "FighterTube3" + | "FighterTube4" + | "FleetHangar" + | "FrigateEscapeBay" + | "Hangar" + | "HangarAll" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "HiddenModifiers" + | "Implant" + | "Impounded" + | "JunkyardReprocessed" + | "JunkyardTrashed" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "Locked" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "OfficeFolder" + | "Pilot" + | "PlanetSurface" + | "QuafeBay" + | "QuantumCoreRoom" + | "Reward" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "RigSlot3" + | "RigSlot4" + | "RigSlot5" + | "RigSlot6" + | "RigSlot7" + | "SecondaryStorage" + | "ServiceSlot0" + | "ServiceSlot1" + | "ServiceSlot2" + | "ServiceSlot3" + | "ServiceSlot4" + | "ServiceSlot5" + | "ServiceSlot6" + | "ServiceSlot7" + | "ShipHangar" + | "ShipOffline" + | "Skill" + | "SkillInTraining" + | "SpecializedAmmoHold" + | "SpecializedCommandCenterHold" + | "SpecializedFuelBay" + | "SpecializedGasHold" + | "SpecializedIndustrialShipHold" + | "SpecializedLargeShipHold" + | "SpecializedMaterialBay" + | "SpecializedMediumShipHold" + | "SpecializedMineralHold" + | "SpecializedOreHold" + | "SpecializedPlanetaryCommoditiesHold" + | "SpecializedSalvageHold" + | "SpecializedShipHold" + | "SpecializedSmallShipHold" + | "StructureActive" + | "StructureFuel" + | "StructureInactive" + | "StructureOffline" + | "SubSystemBay" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3" + | "SubSystemSlot4" + | "SubSystemSlot5" + | "SubSystemSlot6" + | "SubSystemSlot7" + | "Unlocked" + | "Wallet" + | "Wardrobe"; + /** + * get_corporations_corporation_id_blueprints_location_id + * References a station, a ship or an item_id if this blueprint is located within a container. + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_blueprints_material_efficiency + * Material Efficiency Level of the blueprint. + * @format int32 + * @min 0 + * @max 25 + */ + material_efficiency: number; + /** + * get_corporations_corporation_id_blueprints_quantity + * A range of numbers with a minimum of -2 and no maximum value where -1 is an original and -2 is a copy. It can be a positive integer if it is a stack of blueprint originals fresh from the market (e.g. no activities performed on them yet). + * @format int32 + * @min -2 + */ + quantity: number; + /** + * get_corporations_corporation_id_blueprints_runs + * Number of runs remaining if the blueprint is a copy, -1 if it is an original. + * @format int32 + * @min -1 + */ + runs: number; + /** + * get_corporations_corporation_id_blueprints_time_efficiency + * Time Efficiency Level of the blueprint. + * @format int32 + * @min 0 + * @max 20 + */ + time_efficiency: number; + /** + * get_corporations_corporation_id_blueprints_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/blueprints/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description A list of your corporation's bookmarks --- Alternate route: `/dev/corporations/{corporation_id}/bookmarks/` Alternate route: `/legacy/corporations/{corporation_id}/bookmarks/` Alternate route: `/v1/corporations/{corporation_id}/bookmarks/` --- This route is cached for up to 3600 seconds + * + * @tags Bookmarks + * @name GetCorporationsCorporationIdBookmarks + * @summary List corporation bookmarks + * @request GET:/corporations/{corporation_id}/bookmarks/ + * @secure + */ + getCorporationsCorporationIdBookmarks: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_bookmarks_bookmark_id + * bookmark_id integer + * @format int32 + */ + bookmark_id: number; + /** + * get_corporations_corporation_id_bookmarks_coordinates + * Optional object that is returned if a bookmark was made on a planet or a random location in space. + */ + coordinates?: { + /** + * get_corporations_corporation_id_bookmarks_x + * x number + * @format double + */ + x: number; + /** + * get_corporations_corporation_id_bookmarks_y + * y number + * @format double + */ + y: number; + /** + * get_corporations_corporation_id_bookmarks_z + * z number + * @format double + */ + z: number; + }; + /** + * get_corporations_corporation_id_bookmarks_created + * created string + * @format date-time + */ + created: string; + /** + * get_corporations_corporation_id_bookmarks_creator_id + * creator_id integer + * @format int32 + */ + creator_id: number; + /** + * get_corporations_corporation_id_bookmarks_folder_id + * folder_id integer + * @format int32 + */ + folder_id?: number; + /** + * get_corporations_corporation_id_bookmarks_item + * Optional object that is returned if a bookmark was made on a particular item. + */ + item?: { + /** + * get_corporations_corporation_id_bookmarks_item_id + * item_id integer + * @format int64 + */ + item_id: number; + /** + * get_corporations_corporation_id_bookmarks_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }; + /** + * get_corporations_corporation_id_bookmarks_label + * label string + */ + label: string; + /** + * get_corporations_corporation_id_bookmarks_location_id + * location_id integer + * @format int32 + */ + location_id: number; + /** + * get_corporations_corporation_id_bookmarks_notes + * notes string + */ + notes: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/bookmarks/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description A list of your corporation's bookmark folders --- Alternate route: `/dev/corporations/{corporation_id}/bookmarks/folders/` Alternate route: `/legacy/corporations/{corporation_id}/bookmarks/folders/` Alternate route: `/v1/corporations/{corporation_id}/bookmarks/folders/` --- This route is cached for up to 3600 seconds + * + * @tags Bookmarks + * @name GetCorporationsCorporationIdBookmarksFolders + * @summary List corporation bookmark folders + * @request GET:/corporations/{corporation_id}/bookmarks/folders/ + * @secure + */ + getCorporationsCorporationIdBookmarksFolders: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_bookmarks_folders_creator_id + * creator_id integer + * @format int32 + */ + creator_id?: number; + /** + * get_corporations_corporation_id_bookmarks_folders_folder_id + * folder_id integer + * @format int32 + */ + folder_id: number; + /** + * get_corporations_corporation_id_bookmarks_folders_name + * name string + */ + name: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/bookmarks/folders/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return contacts of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/contacts/` Alternate route: `/v2/corporations/{corporation_id}/contacts/` --- This route is cached for up to 300 seconds + * + * @tags Contacts + * @name GetCorporationsCorporationIdContacts + * @summary Get corporation contacts + * @request GET:/corporations/{corporation_id}/contacts/ + * @secure + */ + getCorporationsCorporationIdContacts: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_contacts_contact_id + * contact_id integer + * @format int32 + */ + contact_id: number; + /** + * get_corporations_corporation_id_contacts_contact_type + * contact_type string + */ + contact_type: "character" | "corporation" | "alliance" | "faction"; + /** + * get_corporations_corporation_id_contacts_is_watched + * Whether this contact is being watched + */ + is_watched?: boolean; + /** + * get_corporations_corporation_id_contacts_label_ids + * label_ids array + * @maxItems 63 + */ + label_ids?: number[]; + /** + * get_corporations_corporation_id_contacts_standing + * Standing of the contact + * @format float + */ + standing: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/contacts/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return custom labels for a corporation's contacts --- Alternate route: `/dev/corporations/{corporation_id}/contacts/labels/` Alternate route: `/legacy/corporations/{corporation_id}/contacts/labels/` Alternate route: `/v1/corporations/{corporation_id}/contacts/labels/` --- This route is cached for up to 300 seconds + * + * @tags Contacts + * @name GetCorporationsCorporationIdContactsLabels + * @summary Get corporation contact labels + * @request GET:/corporations/{corporation_id}/contacts/labels/ + * @secure + */ + getCorporationsCorporationIdContactsLabels: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_contacts_labels_label_id + * label_id integer + * @format int64 + */ + label_id: number; + /** + * get_corporations_corporation_id_contacts_labels_label_name + * label_name string + */ + label_name: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/contacts/labels/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation --- Alternate route: `/dev/corporations/{corporation_id}/containers/logs/` Alternate route: `/v3/corporations/{corporation_id}/containers/logs/` --- This route is cached for up to 600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdContainersLogs + * @summary Get all corporation ALSC logs + * @request GET:/corporations/{corporation_id}/containers/logs/ + * @secure + */ + getCorporationsCorporationIdContainersLogs: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_containers_logs_action + * action string + */ + action: + | "add" + | "assemble" + | "configure" + | "enter_password" + | "lock" + | "move" + | "repackage" + | "set_name" + | "set_password" + | "unlock"; + /** + * get_corporations_corporation_id_containers_logs_character_id + * ID of the character who performed the action. + * @format int32 + */ + character_id: number; + /** + * get_corporations_corporation_id_containers_logs_container_id + * ID of the container + * @format int64 + */ + container_id: number; + /** + * get_corporations_corporation_id_containers_logs_container_type_id + * Type ID of the container + * @format int32 + */ + container_type_id: number; + /** + * get_corporations_corporation_id_containers_logs_location_flag + * location_flag string + */ + location_flag: + | "AssetSafety" + | "AutoFit" + | "Bonus" + | "Booster" + | "BoosterBay" + | "Capsule" + | "Cargo" + | "CorpDeliveries" + | "CorpSAG1" + | "CorpSAG2" + | "CorpSAG3" + | "CorpSAG4" + | "CorpSAG5" + | "CorpSAG6" + | "CorpSAG7" + | "CrateLoot" + | "Deliveries" + | "DroneBay" + | "DustBattle" + | "DustDatabank" + | "FighterBay" + | "FighterTube0" + | "FighterTube1" + | "FighterTube2" + | "FighterTube3" + | "FighterTube4" + | "FleetHangar" + | "FrigateEscapeBay" + | "Hangar" + | "HangarAll" + | "HiSlot0" + | "HiSlot1" + | "HiSlot2" + | "HiSlot3" + | "HiSlot4" + | "HiSlot5" + | "HiSlot6" + | "HiSlot7" + | "HiddenModifiers" + | "Implant" + | "Impounded" + | "JunkyardReprocessed" + | "JunkyardTrashed" + | "LoSlot0" + | "LoSlot1" + | "LoSlot2" + | "LoSlot3" + | "LoSlot4" + | "LoSlot5" + | "LoSlot6" + | "LoSlot7" + | "Locked" + | "MedSlot0" + | "MedSlot1" + | "MedSlot2" + | "MedSlot3" + | "MedSlot4" + | "MedSlot5" + | "MedSlot6" + | "MedSlot7" + | "OfficeFolder" + | "Pilot" + | "PlanetSurface" + | "QuafeBay" + | "QuantumCoreRoom" + | "Reward" + | "RigSlot0" + | "RigSlot1" + | "RigSlot2" + | "RigSlot3" + | "RigSlot4" + | "RigSlot5" + | "RigSlot6" + | "RigSlot7" + | "SecondaryStorage" + | "ServiceSlot0" + | "ServiceSlot1" + | "ServiceSlot2" + | "ServiceSlot3" + | "ServiceSlot4" + | "ServiceSlot5" + | "ServiceSlot6" + | "ServiceSlot7" + | "ShipHangar" + | "ShipOffline" + | "Skill" + | "SkillInTraining" + | "SpecializedAmmoHold" + | "SpecializedCommandCenterHold" + | "SpecializedFuelBay" + | "SpecializedGasHold" + | "SpecializedIndustrialShipHold" + | "SpecializedLargeShipHold" + | "SpecializedMaterialBay" + | "SpecializedMediumShipHold" + | "SpecializedMineralHold" + | "SpecializedOreHold" + | "SpecializedPlanetaryCommoditiesHold" + | "SpecializedSalvageHold" + | "SpecializedShipHold" + | "SpecializedSmallShipHold" + | "StructureActive" + | "StructureFuel" + | "StructureInactive" + | "StructureOffline" + | "SubSystemBay" + | "SubSystemSlot0" + | "SubSystemSlot1" + | "SubSystemSlot2" + | "SubSystemSlot3" + | "SubSystemSlot4" + | "SubSystemSlot5" + | "SubSystemSlot6" + | "SubSystemSlot7" + | "Unlocked" + | "Wallet" + | "Wardrobe"; + /** + * get_corporations_corporation_id_containers_logs_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_containers_logs_logged_at + * Timestamp when this log was created + * @format date-time + */ + logged_at: string; + /** + * get_corporations_corporation_id_containers_logs_new_config_bitmask + * new_config_bitmask integer + * @format int32 + */ + new_config_bitmask?: number; + /** + * get_corporations_corporation_id_containers_logs_old_config_bitmask + * old_config_bitmask integer + * @format int32 + */ + old_config_bitmask?: number; + /** + * get_corporations_corporation_id_containers_logs_password_type + * Type of password set if action is of type SetPassword or EnterPassword + */ + password_type?: "config" | "general"; + /** + * get_corporations_corporation_id_containers_logs_quantity + * Quantity of the item being acted upon + * @format int32 + */ + quantity?: number; + /** + * get_corporations_corporation_id_containers_logs_type_id + * Type ID of the item being acted upon + * @format int32 + */ + type_id?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/containers/logs/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns contracts available to a corporation, only if the corporation is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress". --- Alternate route: `/dev/corporations/{corporation_id}/contracts/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/` Alternate route: `/v1/corporations/{corporation_id}/contracts/` --- This route is cached for up to 300 seconds + * + * @tags Contracts + * @name GetCorporationsCorporationIdContracts + * @summary Get corporation contracts + * @request GET:/corporations/{corporation_id}/contracts/ + * @secure + */ + getCorporationsCorporationIdContracts: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_contracts_acceptor_id + * Who will accept the contract + * @format int32 + */ + acceptor_id: number; + /** + * get_corporations_corporation_id_contracts_assignee_id + * ID to whom the contract is assigned, can be corporation or character ID + * @format int32 + */ + assignee_id: number; + /** + * get_corporations_corporation_id_contracts_availability + * To whom the contract is available + */ + availability: "public" | "personal" | "corporation" | "alliance"; + /** + * get_corporations_corporation_id_contracts_buyout + * Buyout price (for Auctions only) + * @format double + */ + buyout?: number; + /** + * get_corporations_corporation_id_contracts_collateral + * Collateral price (for Couriers only) + * @format double + */ + collateral?: number; + /** + * get_corporations_corporation_id_contracts_contract_id + * contract_id integer + * @format int32 + */ + contract_id: number; + /** + * get_corporations_corporation_id_contracts_date_accepted + * Date of confirmation of contract + * @format date-time + */ + date_accepted?: string; + /** + * get_corporations_corporation_id_contracts_date_completed + * Date of completed of contract + * @format date-time + */ + date_completed?: string; + /** + * get_corporations_corporation_id_contracts_date_expired + * Expiration date of the contract + * @format date-time + */ + date_expired: string; + /** + * get_corporations_corporation_id_contracts_date_issued + * Сreation date of the contract + * @format date-time + */ + date_issued: string; + /** + * get_corporations_corporation_id_contracts_days_to_complete + * Number of days to perform the contract + * @format int32 + */ + days_to_complete?: number; + /** + * get_corporations_corporation_id_contracts_end_location_id + * End location ID (for Couriers contract) + * @format int64 + */ + end_location_id?: number; + /** + * get_corporations_corporation_id_contracts_for_corporation + * true if the contract was issued on behalf of the issuer's corporation + */ + for_corporation: boolean; + /** + * get_corporations_corporation_id_contracts_issuer_corporation_id + * Character's corporation ID for the issuer + * @format int32 + */ + issuer_corporation_id: number; + /** + * get_corporations_corporation_id_contracts_issuer_id + * Character ID for the issuer + * @format int32 + */ + issuer_id: number; + /** + * get_corporations_corporation_id_contracts_price + * Price of contract (for ItemsExchange and Auctions) + * @format double + */ + price?: number; + /** + * get_corporations_corporation_id_contracts_reward + * Remuneration for contract (for Couriers only) + * @format double + */ + reward?: number; + /** + * get_corporations_corporation_id_contracts_start_location_id + * Start location ID (for Couriers contract) + * @format int64 + */ + start_location_id?: number; + /** + * get_corporations_corporation_id_contracts_status + * Status of the the contract + */ + status: + | "outstanding" + | "in_progress" + | "finished_issuer" + | "finished_contractor" + | "finished" + | "cancelled" + | "rejected" + | "failed" + | "deleted" + | "reversed"; + /** + * get_corporations_corporation_id_contracts_title + * Title of the contract + */ + title?: string; + /** + * get_corporations_corporation_id_contracts_type + * Type of the contract + */ + type: "unknown" | "item_exchange" | "auction" | "courier" | "loan"; + /** + * get_corporations_corporation_id_contracts_volume + * Volume of items in the contract + * @format double + */ + volume?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/contracts/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Lists bids on a particular auction contract --- Alternate route: `/dev/corporations/{corporation_id}/contracts/{contract_id}/bids/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/{contract_id}/bids/` Alternate route: `/v1/corporations/{corporation_id}/contracts/{contract_id}/bids/` --- This route is cached for up to 3600 seconds + * + * @tags Contracts + * @name GetCorporationsCorporationIdContractsContractIdBids + * @summary Get corporation contract bids + * @request GET:/corporations/{corporation_id}/contracts/{contract_id}/bids/ + * @secure + */ + getCorporationsCorporationIdContractsContractIdBids: ( + contractId: number, + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_contracts_contract_id_bids_amount + * The amount bid, in ISK + * @format float + */ + amount: number; + /** + * get_corporations_corporation_id_contracts_contract_id_bids_bid_id + * Unique ID for the bid + * @format int32 + */ + bid_id: number; + /** + * get_corporations_corporation_id_contracts_contract_id_bids_bidder_id + * Character ID of the bidder + * @format int32 + */ + bidder_id: number; + /** + * get_corporations_corporation_id_contracts_contract_id_bids_date_bid + * Datetime when the bid was placed + * @format date-time + */ + date_bid: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_corporations_corporation_id_contracts_contract_id_bids_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/contracts/${contractId}/bids/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Lists items of a particular contract --- Alternate route: `/dev/corporations/{corporation_id}/contracts/{contract_id}/items/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/{contract_id}/items/` Alternate route: `/v1/corporations/{corporation_id}/contracts/{contract_id}/items/` --- This route is cached for up to 3600 seconds + * + * @tags Contracts + * @name GetCorporationsCorporationIdContractsContractIdItems + * @summary Get corporation contract items + * @request GET:/corporations/{corporation_id}/contracts/{contract_id}/items/ + * @secure + */ + getCorporationsCorporationIdContractsContractIdItems: ( + contractId: number, + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_contracts_contract_id_items_is_included + * true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract + */ + is_included: boolean; + /** + * get_corporations_corporation_id_contracts_contract_id_items_is_singleton + * is_singleton boolean + */ + is_singleton: boolean; + /** + * get_corporations_corporation_id_contracts_contract_id_items_quantity + * Number of items in the stack + * @format int32 + */ + quantity: number; + /** + * get_corporations_corporation_id_contracts_contract_id_items_raw_quantity + * -1 indicates that the item is a singleton (non-stackable). If the item happens to be a Blueprint, -1 is an Original and -2 is a Blueprint Copy + * @format int32 + */ + raw_quantity?: number; + /** + * get_corporations_corporation_id_contracts_contract_id_items_record_id + * Unique ID for the item + * @format int64 + */ + record_id: number; + /** + * get_corporations_corporation_id_contracts_contract_id_items_type_id + * Type ID for item + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_corporations_corporation_id_contracts_contract_id_items_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + | { + /** + * get_corporations_corporation_id_contracts_contract_id_items_520_error_520 + * Error 520 message + */ + error?: string; + } + >({ + path: `/corporations/${corporationId}/contracts/${contractId}/items/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List customs offices owned by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/customs_offices/` Alternate route: `/legacy/corporations/{corporation_id}/customs_offices/` Alternate route: `/v1/corporations/{corporation_id}/customs_offices/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Planetary Interaction + * @name GetCorporationsCorporationIdCustomsOffices + * @summary List corporation customs offices + * @request GET:/corporations/{corporation_id}/customs_offices/ + * @secure + */ + getCorporationsCorporationIdCustomsOffices: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_customs_offices_alliance_tax_rate + * Only present if alliance access is allowed + * @format float + */ + alliance_tax_rate?: number; + /** + * get_corporations_corporation_id_customs_offices_allow_access_with_standings + * standing_level and any standing related tax rate only present when this is true + */ + allow_access_with_standings: boolean; + /** + * get_corporations_corporation_id_customs_offices_allow_alliance_access + * allow_alliance_access boolean + */ + allow_alliance_access: boolean; + /** + * get_corporations_corporation_id_customs_offices_bad_standing_tax_rate + * bad_standing_tax_rate number + * @format float + */ + bad_standing_tax_rate?: number; + /** + * get_corporations_corporation_id_customs_offices_corporation_tax_rate + * corporation_tax_rate number + * @format float + */ + corporation_tax_rate?: number; + /** + * get_corporations_corporation_id_customs_offices_excellent_standing_tax_rate + * Tax rate for entities with excellent level of standing, only present if this level is allowed, same for all other standing related tax rates + * @format float + */ + excellent_standing_tax_rate?: number; + /** + * get_corporations_corporation_id_customs_offices_good_standing_tax_rate + * good_standing_tax_rate number + * @format float + */ + good_standing_tax_rate?: number; + /** + * get_corporations_corporation_id_customs_offices_neutral_standing_tax_rate + * neutral_standing_tax_rate number + * @format float + */ + neutral_standing_tax_rate?: number; + /** + * get_corporations_corporation_id_customs_offices_office_id + * unique ID of this customs office + * @format int64 + */ + office_id: number; + /** + * get_corporations_corporation_id_customs_offices_reinforce_exit_end + * reinforce_exit_end integer + * @format int32 + * @min 0 + * @max 23 + */ + reinforce_exit_end: number; + /** + * get_corporations_corporation_id_customs_offices_reinforce_exit_start + * Together with reinforce_exit_end, marks a 2-hour period where this customs office could exit reinforcement mode during the day after initial attack + * @format int32 + * @min 0 + * @max 23 + */ + reinforce_exit_start: number; + /** + * get_corporations_corporation_id_customs_offices_standing_level + * Access is allowed only for entities with this level of standing or better + */ + standing_level?: "bad" | "excellent" | "good" | "neutral" | "terrible"; + /** + * get_corporations_corporation_id_customs_offices_system_id + * ID of the solar system this customs office is located in + * @format int32 + */ + system_id: number; + /** + * get_corporations_corporation_id_customs_offices_terrible_standing_tax_rate + * terrible_standing_tax_rate number + * @format float + */ + terrible_standing_tax_rate?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/customs_offices/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return corporation hangar and wallet division names, only show if a division is not using the default name --- Alternate route: `/dev/corporations/{corporation_id}/divisions/` Alternate route: `/v2/corporations/{corporation_id}/divisions/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdDivisions + * @summary Get corporation divisions + * @request GET:/corporations/{corporation_id}/divisions/ + * @secure + */ + getCorporationsCorporationIdDivisions: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_divisions_hangar + * hangar array + * @maxItems 7 + */ + hangar?: { + /** + * get_corporations_corporation_id_divisions_division + * division integer + * @format int32 + * @min 1 + * @max 7 + */ + division?: number; + /** + * get_corporations_corporation_id_divisions_name + * name string + * @maxLength 50 + */ + name?: string; + }[]; + /** + * get_corporations_corporation_id_divisions_wallet + * wallet array + * @maxItems 7 + */ + wallet?: { + /** + * get_corporations_corporation_id_divisions_wallet_division + * division integer + * @format int32 + * @min 1 + * @max 7 + */ + division?: number; + /** + * get_corporations_corporation_id_divisions_wallet_name + * name string + * @maxLength 50 + */ + name?: string; + }[]; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/divisions/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a corporation's facilities --- Alternate route: `/dev/corporations/{corporation_id}/facilities/` Alternate route: `/v2/corporations/{corporation_id}/facilities/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Factory_Manager + * + * @tags Corporation + * @name GetCorporationsCorporationIdFacilities + * @summary Get corporation facilities + * @request GET:/corporations/{corporation_id}/facilities/ + * @secure + */ + getCorporationsCorporationIdFacilities: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_facilities_facility_id + * facility_id integer + * @format int64 + */ + facility_id: number; + /** + * get_corporations_corporation_id_facilities_system_id + * system_id integer + * @format int32 + */ + system_id: number; + /** + * get_corporations_corporation_id_facilities_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/facilities/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Statistics about a corporation involved in faction warfare --- Alternate route: `/dev/corporations/{corporation_id}/fw/stats/` Alternate route: `/legacy/corporations/{corporation_id}/fw/stats/` Alternate route: `/v1/corporations/{corporation_id}/fw/stats/` Alternate route: `/v2/corporations/{corporation_id}/fw/stats/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetCorporationsCorporationIdFwStats + * @summary Overview of a corporation involved in faction warfare + * @request GET:/corporations/{corporation_id}/fw/stats/ + * @secure + */ + getCorporationsCorporationIdFwStats: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_fw_stats_enlisted_on + * The enlistment date of the given corporation into faction warfare. Will not be included if corporation is not enlisted in faction warfare + * @format date-time + */ + enlisted_on?: string; + /** + * get_corporations_corporation_id_fw_stats_faction_id + * The faction the given corporation is enlisted to fight for. Will not be included if corporation is not enlisted in faction warfare + * @format int32 + */ + faction_id?: number; + /** + * get_corporations_corporation_id_fw_stats_kills + * Summary of kills done by the given corporation against enemy factions + */ + kills: { + /** + * get_corporations_corporation_id_fw_stats_last_week + * Last week's total number of kills by members of the given corporation against enemy factions + * @format int32 + */ + last_week: number; + /** + * get_corporations_corporation_id_fw_stats_total + * Total number of kills by members of the given corporation against enemy factions since the corporation enlisted + * @format int32 + */ + total: number; + /** + * get_corporations_corporation_id_fw_stats_yesterday + * Yesterday's total number of kills by members of the given corporation against enemy factions + * @format int32 + */ + yesterday: number; + }; + /** + * get_corporations_corporation_id_fw_stats_pilots + * How many pilots the enlisted corporation has. Will not be included if corporation is not enlisted in faction warfare + * @format int32 + */ + pilots?: number; + /** + * get_corporations_corporation_id_fw_stats_victory_points + * Summary of victory points gained by the given corporation for the enlisted faction + */ + victory_points: { + /** + * get_corporations_corporation_id_fw_stats_victory_points_last_week + * Last week's victory points gained by members of the given corporation + * @format int32 + */ + last_week: number; + /** + * get_corporations_corporation_id_fw_stats_victory_points_total + * Total victory points gained since the given corporation enlisted + * @format int32 + */ + total: number; + /** + * get_corporations_corporation_id_fw_stats_victory_points_yesterday + * Yesterday's victory points gained by members of the given corporation + * @format int32 + */ + yesterday: number; + }; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/fw/stats/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get the icon urls for a corporation --- Alternate route: `/dev/corporations/{corporation_id}/icons/` Alternate route: `/v2/corporations/{corporation_id}/icons/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationIdIcons + * @summary Get corporation icon + * @request GET:/corporations/{corporation_id}/icons/ + */ + getCorporationsCorporationIdIcons: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_icons_px128x128 + * px128x128 string + */ + px128x128?: string; + /** + * get_corporations_corporation_id_icons_px256x256 + * px256x256 string + */ + px256x256?: string; + /** + * get_corporations_corporation_id_icons_px64x64 + * px64x64 string + */ + px64x64?: string; + }, + | void + | BadRequest + | { + /** + * get_corporations_corporation_id_icons_error + * error message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/icons/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description List industry jobs run by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/industry/jobs/` Alternate route: `/legacy/corporations/{corporation_id}/industry/jobs/` Alternate route: `/v1/corporations/{corporation_id}/industry/jobs/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Factory_Manager + * + * @tags Industry + * @name GetCorporationsCorporationIdIndustryJobs + * @summary List corporation industry jobs + * @request GET:/corporations/{corporation_id}/industry/jobs/ + * @secure + */ + getCorporationsCorporationIdIndustryJobs: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Whether to retrieve completed corporation industry jobs. Only includes jobs from the past 90 days + * @default false + */ + include_completed?: boolean; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_industry_jobs_activity_id + * Job activity ID + * @format int32 + */ + activity_id: number; + /** + * get_corporations_corporation_id_industry_jobs_blueprint_id + * blueprint_id integer + * @format int64 + */ + blueprint_id: number; + /** + * get_corporations_corporation_id_industry_jobs_blueprint_location_id + * Location ID of the location from which the blueprint was installed. Normally a station ID, but can also be an asset (e.g. container) or corporation facility + * @format int64 + */ + blueprint_location_id: number; + /** + * get_corporations_corporation_id_industry_jobs_blueprint_type_id + * blueprint_type_id integer + * @format int32 + */ + blueprint_type_id: number; + /** + * get_corporations_corporation_id_industry_jobs_completed_character_id + * ID of the character which completed this job + * @format int32 + */ + completed_character_id?: number; + /** + * get_corporations_corporation_id_industry_jobs_completed_date + * Date and time when this job was completed + * @format date-time + */ + completed_date?: string; + /** + * get_corporations_corporation_id_industry_jobs_cost + * The sume of job installation fee and industry facility tax + * @format double + */ + cost?: number; + /** + * get_corporations_corporation_id_industry_jobs_duration + * Job duration in seconds + * @format int32 + */ + duration: number; + /** + * get_corporations_corporation_id_industry_jobs_end_date + * Date and time when this job finished + * @format date-time + */ + end_date: string; + /** + * get_corporations_corporation_id_industry_jobs_facility_id + * ID of the facility where this job is running + * @format int64 + */ + facility_id: number; + /** + * get_corporations_corporation_id_industry_jobs_installer_id + * ID of the character which installed this job + * @format int32 + */ + installer_id: number; + /** + * get_corporations_corporation_id_industry_jobs_job_id + * Unique job ID + * @format int32 + */ + job_id: number; + /** + * get_corporations_corporation_id_industry_jobs_licensed_runs + * Number of runs blueprint is licensed for + * @format int32 + */ + licensed_runs?: number; + /** + * get_corporations_corporation_id_industry_jobs_location_id + * ID of the location for the industry facility + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_industry_jobs_output_location_id + * Location ID of the location to which the output of the job will be delivered. Normally a station ID, but can also be a corporation facility + * @format int64 + */ + output_location_id: number; + /** + * get_corporations_corporation_id_industry_jobs_pause_date + * Date and time when this job was paused (i.e. time when the facility where this job was installed went offline) + * @format date-time + */ + pause_date?: string; + /** + * get_corporations_corporation_id_industry_jobs_probability + * Chance of success for invention + * @format float + */ + probability?: number; + /** + * get_corporations_corporation_id_industry_jobs_product_type_id + * Type ID of product (manufactured, copied or invented) + * @format int32 + */ + product_type_id?: number; + /** + * get_corporations_corporation_id_industry_jobs_runs + * Number of runs for a manufacturing job, or number of copies to make for a blueprint copy + * @format int32 + */ + runs: number; + /** + * get_corporations_corporation_id_industry_jobs_start_date + * Date and time when this job started + * @format date-time + */ + start_date: string; + /** + * get_corporations_corporation_id_industry_jobs_status + * status string + */ + status: "active" | "cancelled" | "delivered" | "paused" | "ready" | "reverted"; + /** + * get_corporations_corporation_id_industry_jobs_successful_runs + * Number of successful runs for this job. Equal to runs unless this is an invention job + * @format int32 + */ + successful_runs?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/industry/jobs/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get a list of a corporation's kills and losses going back 90 days --- Alternate route: `/dev/corporations/{corporation_id}/killmails/recent/` Alternate route: `/legacy/corporations/{corporation_id}/killmails/recent/` Alternate route: `/v1/corporations/{corporation_id}/killmails/recent/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Killmails + * @name GetCorporationsCorporationIdKillmailsRecent + * @summary Get a corporation's recent kills and losses + * @request GET:/corporations/{corporation_id}/killmails/recent/ + * @secure + */ + getCorporationsCorporationIdKillmailsRecent: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_killmails_recent_killmail_hash + * A hash of this killmail + */ + killmail_hash: string; + /** + * get_corporations_corporation_id_killmails_recent_killmail_id + * ID of this killmail + * @format int32 + */ + killmail_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/killmails/recent/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns a corporation's medals --- Alternate route: `/dev/corporations/{corporation_id}/medals/` Alternate route: `/v2/corporations/{corporation_id}/medals/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationIdMedals + * @summary Get corporation medals + * @request GET:/corporations/{corporation_id}/medals/ + * @secure + */ + getCorporationsCorporationIdMedals: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_medals_created_at + * created_at string + * @format date-time + */ + created_at: string; + /** + * get_corporations_corporation_id_medals_creator_id + * ID of the character who created this medal + * @format int32 + */ + creator_id: number; + /** + * get_corporations_corporation_id_medals_description + * description string + * @maxLength 1000 + */ + description: string; + /** + * get_corporations_corporation_id_medals_medal_id + * medal_id integer + * @format int32 + */ + medal_id: number; + /** + * get_corporations_corporation_id_medals_title + * title string + * @maxLength 100 + */ + title: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/medals/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns medals issued by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/medals/issued/` Alternate route: `/v2/corporations/{corporation_id}/medals/issued/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdMedalsIssued + * @summary Get corporation issued medals + * @request GET:/corporations/{corporation_id}/medals/issued/ + * @secure + */ + getCorporationsCorporationIdMedalsIssued: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_medals_issued_character_id + * ID of the character who was rewarded this medal + * @format int32 + */ + character_id: number; + /** + * get_corporations_corporation_id_medals_issued_issued_at + * issued_at string + * @format date-time + */ + issued_at: string; + /** + * get_corporations_corporation_id_medals_issued_issuer_id + * ID of the character who issued the medal + * @format int32 + */ + issuer_id: number; + /** + * get_corporations_corporation_id_medals_issued_medal_id + * medal_id integer + * @format int32 + */ + medal_id: number; + /** + * get_corporations_corporation_id_medals_issued_reason + * reason string + * @maxLength 1000 + */ + reason: string; + /** + * get_corporations_corporation_id_medals_issued_status + * status string + */ + status: "private" | "public"; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/medals/issued/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return the current member list of a corporation, the token's character need to be a member of the corporation. --- Alternate route: `/dev/corporations/{corporation_id}/members/` Alternate route: `/v4/corporations/{corporation_id}/members/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationIdMembers + * @summary Get corporation members + * @request GET:/corporations/{corporation_id}/members/ + * @secure + */ + getCorporationsCorporationIdMembers: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/members/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a corporation's member limit, not including CEO himself --- Alternate route: `/dev/corporations/{corporation_id}/members/limit/` Alternate route: `/v2/corporations/{corporation_id}/members/limit/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdMembersLimit + * @summary Get corporation member limit + * @request GET:/corporations/{corporation_id}/members/limit/ + * @secure + */ + getCorporationsCorporationIdMembersLimit: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + number, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/members/limit/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns a corporation's members' titles --- Alternate route: `/dev/corporations/{corporation_id}/members/titles/` Alternate route: `/v2/corporations/{corporation_id}/members/titles/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdMembersTitles + * @summary Get corporation's members' titles + * @request GET:/corporations/{corporation_id}/members/titles/ + * @secure + */ + getCorporationsCorporationIdMembersTitles: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_members_titles_character_id + * character_id integer + * @format int32 + */ + character_id: number; + /** + * get_corporations_corporation_id_members_titles_titles + * A list of title_id + * @maxItems 16 + */ + titles: number[]; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/members/titles/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns additional information about a corporation's members which helps tracking their activities --- Alternate route: `/dev/corporations/{corporation_id}/membertracking/` Alternate route: `/v2/corporations/{corporation_id}/membertracking/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdMembertracking + * @summary Track corporation members + * @request GET:/corporations/{corporation_id}/membertracking/ + * @secure + */ + getCorporationsCorporationIdMembertracking: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_membertracking_base_id + * base_id integer + * @format int32 + */ + base_id?: number; + /** + * get_corporations_corporation_id_membertracking_character_id + * character_id integer + * @format int32 + */ + character_id: number; + /** + * get_corporations_corporation_id_membertracking_location_id + * location_id integer + * @format int64 + */ + location_id?: number; + /** + * get_corporations_corporation_id_membertracking_logoff_date + * logoff_date string + * @format date-time + */ + logoff_date?: string; + /** + * get_corporations_corporation_id_membertracking_logon_date + * logon_date string + * @format date-time + */ + logon_date?: string; + /** + * get_corporations_corporation_id_membertracking_ship_type_id + * ship_type_id integer + * @format int32 + */ + ship_type_id?: number; + /** + * get_corporations_corporation_id_membertracking_start_date + * start_date string + * @format date-time + */ + start_date?: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/membertracking/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List open market orders placed on behalf of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/orders/` Alternate route: `/v3/corporations/{corporation_id}/orders/` --- This route is cached for up to 1200 seconds --- Requires one of the following EVE corporation role(s): Accountant, Trader + * + * @tags Market + * @name GetCorporationsCorporationIdOrders + * @summary List open orders from a corporation + * @request GET:/corporations/{corporation_id}/orders/ + * @secure + */ + getCorporationsCorporationIdOrders: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_orders_duration + * Number of days for which order is valid (starting from the issued date). An order expires at time issued + duration + * @format int32 + */ + duration: number; + /** + * get_corporations_corporation_id_orders_escrow + * For buy orders, the amount of ISK in escrow + * @format double + */ + escrow?: number; + /** + * get_corporations_corporation_id_orders_is_buy_order + * True if the order is a bid (buy) order + */ + is_buy_order?: boolean; + /** + * get_corporations_corporation_id_orders_issued + * Date and time when this order was issued + * @format date-time + */ + issued: string; + /** + * get_corporations_corporation_id_orders_issued_by + * The character who issued this order + * @format int32 + */ + issued_by: number; + /** + * get_corporations_corporation_id_orders_location_id + * ID of the location where order was placed + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_orders_min_volume + * For buy orders, the minimum quantity that will be accepted in a matching sell order + * @format int32 + */ + min_volume?: number; + /** + * get_corporations_corporation_id_orders_order_id + * Unique order ID + * @format int64 + */ + order_id: number; + /** + * get_corporations_corporation_id_orders_price + * Cost per unit for this order + * @format double + */ + price: number; + /** + * get_corporations_corporation_id_orders_range + * Valid order range, numbers are ranges in jumps + */ + range: "1" | "10" | "2" | "20" | "3" | "30" | "4" | "40" | "5" | "region" | "solarsystem" | "station"; + /** + * get_corporations_corporation_id_orders_region_id + * ID of the region where order was placed + * @format int32 + */ + region_id: number; + /** + * get_corporations_corporation_id_orders_type_id + * The type ID of the item transacted in this order + * @format int32 + */ + type_id: number; + /** + * get_corporations_corporation_id_orders_volume_remain + * Quantity of items still required or offered + * @format int32 + */ + volume_remain: number; + /** + * get_corporations_corporation_id_orders_volume_total + * Quantity of items required or offered at time order was placed + * @format int32 + */ + volume_total: number; + /** + * get_corporations_corporation_id_orders_wallet_division + * The corporation wallet division used for this order. + * @format int32 + * @min 1 + * @max 7 + */ + wallet_division: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/orders/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past. --- Alternate route: `/dev/corporations/{corporation_id}/orders/history/` Alternate route: `/v2/corporations/{corporation_id}/orders/history/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Trader + * + * @tags Market + * @name GetCorporationsCorporationIdOrdersHistory + * @summary List historical orders from a corporation + * @request GET:/corporations/{corporation_id}/orders/history/ + * @secure + */ + getCorporationsCorporationIdOrdersHistory: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_orders_history_duration + * Number of days the order was valid for (starting from the issued date). An order expires at time issued + duration + * @format int32 + */ + duration: number; + /** + * get_corporations_corporation_id_orders_history_escrow + * For buy orders, the amount of ISK in escrow + * @format double + */ + escrow?: number; + /** + * get_corporations_corporation_id_orders_history_is_buy_order + * True if the order is a bid (buy) order + */ + is_buy_order?: boolean; + /** + * get_corporations_corporation_id_orders_history_issued + * Date and time when this order was issued + * @format date-time + */ + issued: string; + /** + * get_corporations_corporation_id_orders_history_issued_by + * The character who issued this order + * @format int32 + */ + issued_by?: number; + /** + * get_corporations_corporation_id_orders_history_location_id + * ID of the location where order was placed + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_orders_history_min_volume + * For buy orders, the minimum quantity that will be accepted in a matching sell order + * @format int32 + */ + min_volume?: number; + /** + * get_corporations_corporation_id_orders_history_order_id + * Unique order ID + * @format int64 + */ + order_id: number; + /** + * get_corporations_corporation_id_orders_history_price + * Cost per unit for this order + * @format double + */ + price: number; + /** + * get_corporations_corporation_id_orders_history_range + * Valid order range, numbers are ranges in jumps + */ + range: "1" | "10" | "2" | "20" | "3" | "30" | "4" | "40" | "5" | "region" | "solarsystem" | "station"; + /** + * get_corporations_corporation_id_orders_history_region_id + * ID of the region where order was placed + * @format int32 + */ + region_id: number; + /** + * get_corporations_corporation_id_orders_history_state + * Current order state + */ + state: "cancelled" | "expired"; + /** + * get_corporations_corporation_id_orders_history_type_id + * The type ID of the item transacted in this order + * @format int32 + */ + type_id: number; + /** + * get_corporations_corporation_id_orders_history_volume_remain + * Quantity of items still required or offered + * @format int32 + */ + volume_remain: number; + /** + * get_corporations_corporation_id_orders_history_volume_total + * Quantity of items required or offered at time order was placed + * @format int32 + */ + volume_total: number; + /** + * get_corporations_corporation_id_orders_history_wallet_division + * The corporation wallet division used for this order + * @format int32 + * @min 1 + * @max 7 + */ + wallet_division: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/orders/history/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return the roles of all members if the character has the personnel manager role or any grantable role. --- Alternate route: `/dev/corporations/{corporation_id}/roles/` Alternate route: `/v2/corporations/{corporation_id}/roles/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationIdRoles + * @summary Get corporation member roles + * @request GET:/corporations/{corporation_id}/roles/ + * @secure + */ + getCorporationsCorporationIdRoles: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_roles_character_id + * character_id integer + * @format int32 + */ + character_id: number; + /** + * get_corporations_corporation_id_roles_grantable_roles + * grantable_roles array + * @maxItems 50 + */ + grantable_roles?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_grantable_roles_at_base + * grantable_roles_at_base array + * @maxItems 50 + */ + grantable_roles_at_base?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_grantable_roles_at_hq + * grantable_roles_at_hq array + * @maxItems 50 + */ + grantable_roles_at_hq?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_grantable_roles_at_other + * grantable_roles_at_other array + * @maxItems 50 + */ + grantable_roles_at_other?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_roles + * roles array + * @maxItems 50 + */ + roles?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_roles_at_base + * roles_at_base array + * @maxItems 50 + */ + roles_at_base?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_roles_at_hq + * roles_at_hq array + * @maxItems 50 + */ + roles_at_hq?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_roles_at_other + * roles_at_other array + * @maxItems 50 + */ + roles_at_other?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/roles/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return how roles have changed for a coporation's members, up to a month --- Alternate route: `/dev/corporations/{corporation_id}/roles/history/` Alternate route: `/v2/corporations/{corporation_id}/roles/history/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdRolesHistory + * @summary Get corporation member roles history + * @request GET:/corporations/{corporation_id}/roles/history/ + * @secure + */ + getCorporationsCorporationIdRolesHistory: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_roles_history_changed_at + * changed_at string + * @format date-time + */ + changed_at: string; + /** + * get_corporations_corporation_id_roles_history_character_id + * The character whose roles are changed + * @format int32 + */ + character_id: number; + /** + * get_corporations_corporation_id_roles_history_issuer_id + * ID of the character who issued this change + * @format int32 + */ + issuer_id: number; + /** + * get_corporations_corporation_id_roles_history_new_roles + * new_roles array + * @maxItems 50 + */ + new_roles: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_history_old_roles + * old_roles array + * @maxItems 50 + */ + old_roles: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_roles_history_role_type + * role_type string + */ + role_type: + | "grantable_roles" + | "grantable_roles_at_base" + | "grantable_roles_at_hq" + | "grantable_roles_at_other" + | "roles" + | "roles_at_base" + | "roles_at_hq" + | "roles_at_other"; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/roles/history/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return the current shareholders of a corporation. --- Alternate route: `/dev/corporations/{corporation_id}/shareholders/` Alternate route: `/legacy/corporations/{corporation_id}/shareholders/` Alternate route: `/v1/corporations/{corporation_id}/shareholders/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdShareholders + * @summary Get corporation shareholders + * @request GET:/corporations/{corporation_id}/shareholders/ + * @secure + */ + getCorporationsCorporationIdShareholders: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_shareholders_share_count + * share_count integer + * @format int64 + */ + share_count: number; + /** + * get_corporations_corporation_id_shareholders_shareholder_id + * shareholder_id integer + * @format int32 + */ + shareholder_id: number; + /** + * get_corporations_corporation_id_shareholders_shareholder_type + * shareholder_type string + */ + shareholder_type: "character" | "corporation"; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/shareholders/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return corporation standings from agents, NPC corporations, and factions --- Alternate route: `/dev/corporations/{corporation_id}/standings/` Alternate route: `/v2/corporations/{corporation_id}/standings/` --- This route is cached for up to 3600 seconds + * + * @tags Corporation + * @name GetCorporationsCorporationIdStandings + * @summary Get corporation standings + * @request GET:/corporations/{corporation_id}/standings/ + * @secure + */ + getCorporationsCorporationIdStandings: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_standings_from_id + * from_id integer + * @format int32 + */ + from_id: number; + /** + * get_corporations_corporation_id_standings_from_type + * from_type string + */ + from_type: "agent" | "npc_corp" | "faction"; + /** + * get_corporations_corporation_id_standings_standing + * standing number + * @format float + */ + standing: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/standings/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns list of corporation starbases (POSes) --- Alternate route: `/dev/corporations/{corporation_id}/starbases/` Alternate route: `/v2/corporations/{corporation_id}/starbases/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdStarbases + * @summary Get corporation starbases (POSes) + * @request GET:/corporations/{corporation_id}/starbases/ + * @secure + */ + getCorporationsCorporationIdStarbases: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_starbases_moon_id + * The moon this starbase (POS) is anchored on, unanchored POSes do not have this information + * @format int32 + */ + moon_id?: number; + /** + * get_corporations_corporation_id_starbases_onlined_since + * When the POS onlined, for starbases (POSes) in online state + * @format date-time + */ + onlined_since?: string; + /** + * get_corporations_corporation_id_starbases_reinforced_until + * When the POS will be out of reinforcement, for starbases (POSes) in reinforced state + * @format date-time + */ + reinforced_until?: string; + /** + * get_corporations_corporation_id_starbases_starbase_id + * Unique ID for this starbase (POS) + * @format int64 + */ + starbase_id: number; + /** + * get_corporations_corporation_id_starbases_state + * state string + */ + state?: "offline" | "online" | "onlining" | "reinforced" | "unanchoring"; + /** + * get_corporations_corporation_id_starbases_system_id + * The solar system this starbase (POS) is in, unanchored POSes have this information + * @format int32 + */ + system_id: number; + /** + * get_corporations_corporation_id_starbases_type_id + * Starbase (POS) type + * @format int32 + */ + type_id: number; + /** + * get_corporations_corporation_id_starbases_unanchor_at + * When the POS started unanchoring, for starbases (POSes) in unanchoring state + * @format date-time + */ + unanchor_at?: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/starbases/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns various settings and fuels of a starbase (POS) --- Alternate route: `/dev/corporations/{corporation_id}/starbases/{starbase_id}/` Alternate route: `/v2/corporations/{corporation_id}/starbases/{starbase_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdStarbasesStarbaseId + * @summary Get starbase (POS) detail + * @request GET:/corporations/{corporation_id}/starbases/{starbase_id}/ + * @secure + */ + getCorporationsCorporationIdStarbasesStarbaseId: ( + corporationId: number, + starbaseId: number, + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * The solar system this starbase (POS) is located in, + * @format int32 + */ + system_id: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_starbases_starbase_id_allow_alliance_members + * allow_alliance_members boolean + */ + allow_alliance_members: boolean; + /** + * get_corporations_corporation_id_starbases_starbase_id_allow_corporation_members + * allow_corporation_members boolean + */ + allow_corporation_members: boolean; + /** + * get_corporations_corporation_id_starbases_starbase_id_anchor + * Who can anchor starbase (POS) and its structures + */ + anchor: + | "alliance_member" + | "config_starbase_equipment_role" + | "corporation_member" + | "starbase_fuel_technician_role"; + /** + * get_corporations_corporation_id_starbases_starbase_id_attack_if_at_war + * attack_if_at_war boolean + */ + attack_if_at_war: boolean; + /** + * get_corporations_corporation_id_starbases_starbase_id_attack_if_other_security_status_dropping + * attack_if_other_security_status_dropping boolean + */ + attack_if_other_security_status_dropping: boolean; + /** + * get_corporations_corporation_id_starbases_starbase_id_attack_security_status_threshold + * Starbase (POS) will attack if target's security standing is lower than this value + * @format float + */ + attack_security_status_threshold?: number; + /** + * get_corporations_corporation_id_starbases_starbase_id_attack_standing_threshold + * Starbase (POS) will attack if target's standing is lower than this value + * @format float + */ + attack_standing_threshold?: number; + /** + * get_corporations_corporation_id_starbases_starbase_id_fuel_bay_take + * Who can take fuel blocks out of the starbase (POS)'s fuel bay + */ + fuel_bay_take: + | "alliance_member" + | "config_starbase_equipment_role" + | "corporation_member" + | "starbase_fuel_technician_role"; + /** + * get_corporations_corporation_id_starbases_starbase_id_fuel_bay_view + * Who can view the starbase (POS)'s fule bay. Characters either need to have required role or belong to the starbase (POS) owner's corporation or alliance, as described by the enum, all other access settings follows the same scheme + */ + fuel_bay_view: + | "alliance_member" + | "config_starbase_equipment_role" + | "corporation_member" + | "starbase_fuel_technician_role"; + /** + * get_corporations_corporation_id_starbases_starbase_id_fuels + * Fuel blocks and other things that will be consumed when operating a starbase (POS) + * @maxItems 20 + */ + fuels?: { + /** + * get_corporations_corporation_id_starbases_starbase_id_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_corporations_corporation_id_starbases_starbase_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[]; + /** + * get_corporations_corporation_id_starbases_starbase_id_offline + * Who can offline starbase (POS) and its structures + */ + offline: + | "alliance_member" + | "config_starbase_equipment_role" + | "corporation_member" + | "starbase_fuel_technician_role"; + /** + * get_corporations_corporation_id_starbases_starbase_id_online + * Who can online starbase (POS) and its structures + */ + online: + | "alliance_member" + | "config_starbase_equipment_role" + | "corporation_member" + | "starbase_fuel_technician_role"; + /** + * get_corporations_corporation_id_starbases_starbase_id_unanchor + * Who can unanchor starbase (POS) and its structures + */ + unanchor: + | "alliance_member" + | "config_starbase_equipment_role" + | "corporation_member" + | "starbase_fuel_technician_role"; + /** + * get_corporations_corporation_id_starbases_starbase_id_use_alliance_standings + * True if the starbase (POS) is using alliance standings, otherwise using corporation's + */ + use_alliance_standings: boolean; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/starbases/${starbaseId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get a list of corporation structures. This route's version includes the changes to structures detailed in this blog: https://www.eveonline.com/article/upwell-2.0-structures-changes-coming-on-february-13th --- Alternate route: `/dev/corporations/{corporation_id}/structures/` Alternate route: `/v4/corporations/{corporation_id}/structures/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Station_Manager + * + * @tags Corporation + * @name GetCorporationsCorporationIdStructures + * @summary Get corporation structures + * @request GET:/corporations/{corporation_id}/structures/ + * @secure + */ + getCorporationsCorporationIdStructures: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_structures_corporation_id + * ID of the corporation that owns the structure + * @format int32 + */ + corporation_id: number; + /** + * get_corporations_corporation_id_structures_fuel_expires + * Date on which the structure will run out of fuel + * @format date-time + */ + fuel_expires?: string; + /** + * get_corporations_corporation_id_structures_name + * The structure name + */ + name?: string; + /** + * get_corporations_corporation_id_structures_next_reinforce_apply + * The date and time when the structure's newly requested reinforcement times (e.g. next_reinforce_hour and next_reinforce_day) will take effect + * @format date-time + */ + next_reinforce_apply?: string; + /** + * get_corporations_corporation_id_structures_next_reinforce_hour + * The requested change to reinforce_hour that will take effect at the time shown by next_reinforce_apply + * @format int32 + * @min 0 + * @max 23 + */ + next_reinforce_hour?: number; + /** + * get_corporations_corporation_id_structures_profile_id + * The id of the ACL profile for this citadel + * @format int32 + */ + profile_id: number; + /** + * get_corporations_corporation_id_structures_reinforce_hour + * The hour of day that determines the four hour window when the structure will randomly exit its reinforcement periods and become vulnerable to attack against its armor and/or hull. The structure will become vulnerable at a random time that is +/- 2 hours centered on the value of this property + * @format int32 + * @min 0 + * @max 23 + */ + reinforce_hour?: number; + /** + * get_corporations_corporation_id_structures_services + * Contains a list of service upgrades, and their state + * @maxItems 10 + */ + services?: { + /** + * get_corporations_corporation_id_structures_service_name + * name string + */ + name: string; + /** + * get_corporations_corporation_id_structures_service_state + * state string + */ + state: "online" | "offline" | "cleanup"; + }[]; + /** + * get_corporations_corporation_id_structures_state + * state string + */ + state: + | "anchor_vulnerable" + | "anchoring" + | "armor_reinforce" + | "armor_vulnerable" + | "deploy_vulnerable" + | "fitting_invulnerable" + | "hull_reinforce" + | "hull_vulnerable" + | "online_deprecated" + | "onlining_vulnerable" + | "shield_vulnerable" + | "unanchored" + | "unknown"; + /** + * get_corporations_corporation_id_structures_state_timer_end + * Date at which the structure will move to it's next state + * @format date-time + */ + state_timer_end?: string; + /** + * get_corporations_corporation_id_structures_state_timer_start + * Date at which the structure entered it's current state + * @format date-time + */ + state_timer_start?: string; + /** + * get_corporations_corporation_id_structures_structure_id + * The Item ID of the structure + * @format int64 + */ + structure_id: number; + /** + * get_corporations_corporation_id_structures_system_id + * The solar system the structure is in + * @format int32 + */ + system_id: number; + /** + * get_corporations_corporation_id_structures_type_id + * The type id of the structure + * @format int32 + */ + type_id: number; + /** + * get_corporations_corporation_id_structures_unanchors_at + * Date at which the structure will unanchor + * @format date-time + */ + unanchors_at?: string; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/structures/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Returns a corporation's titles --- Alternate route: `/dev/corporations/{corporation_id}/titles/` Alternate route: `/v2/corporations/{corporation_id}/titles/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director + * + * @tags Corporation + * @name GetCorporationsCorporationIdTitles + * @summary Get corporation titles + * @request GET:/corporations/{corporation_id}/titles/ + * @secure + */ + getCorporationsCorporationIdTitles: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_titles_grantable_roles + * grantable_roles array + * @maxItems 50 + */ + grantable_roles?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_grantable_roles_at_base + * grantable_roles_at_base array + * @maxItems 50 + */ + grantable_roles_at_base?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_grantable_roles_at_hq + * grantable_roles_at_hq array + * @maxItems 50 + */ + grantable_roles_at_hq?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_grantable_roles_at_other + * grantable_roles_at_other array + * @maxItems 50 + */ + grantable_roles_at_other?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_name + * name string + */ + name?: string; + /** + * get_corporations_corporation_id_titles_roles + * roles array + * @maxItems 50 + */ + roles?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_roles_at_base + * roles_at_base array + * @maxItems 50 + */ + roles_at_base?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_roles_at_hq + * roles_at_hq array + * @maxItems 50 + */ + roles_at_hq?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_roles_at_other + * roles_at_other array + * @maxItems 50 + */ + roles_at_other?: ( + | "Account_Take_1" + | "Account_Take_2" + | "Account_Take_3" + | "Account_Take_4" + | "Account_Take_5" + | "Account_Take_6" + | "Account_Take_7" + | "Accountant" + | "Auditor" + | "Communications_Officer" + | "Config_Equipment" + | "Config_Starbase_Equipment" + | "Container_Take_1" + | "Container_Take_2" + | "Container_Take_3" + | "Container_Take_4" + | "Container_Take_5" + | "Container_Take_6" + | "Container_Take_7" + | "Contract_Manager" + | "Diplomat" + | "Director" + | "Factory_Manager" + | "Fitting_Manager" + | "Hangar_Query_1" + | "Hangar_Query_2" + | "Hangar_Query_3" + | "Hangar_Query_4" + | "Hangar_Query_5" + | "Hangar_Query_6" + | "Hangar_Query_7" + | "Hangar_Take_1" + | "Hangar_Take_2" + | "Hangar_Take_3" + | "Hangar_Take_4" + | "Hangar_Take_5" + | "Hangar_Take_6" + | "Hangar_Take_7" + | "Junior_Accountant" + | "Personnel_Manager" + | "Rent_Factory_Facility" + | "Rent_Office" + | "Rent_Research_Facility" + | "Security_Officer" + | "Starbase_Defense_Operator" + | "Starbase_Fuel_Technician" + | "Station_Manager" + | "Trader" + )[]; + /** + * get_corporations_corporation_id_titles_title_id + * title_id integer + * @format int32 + */ + title_id?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/titles/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get a corporation's wallets --- Alternate route: `/dev/corporations/{corporation_id}/wallets/` Alternate route: `/legacy/corporations/{corporation_id}/wallets/` Alternate route: `/v1/corporations/{corporation_id}/wallets/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant + * + * @tags Wallet + * @name GetCorporationsCorporationIdWallets + * @summary Returns a corporation's wallet balance + * @request GET:/corporations/{corporation_id}/wallets/ + * @secure + */ + getCorporationsCorporationIdWallets: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_wallets_balance + * balance number + * @format double + */ + balance: number; + /** + * get_corporations_corporation_id_wallets_division + * division integer + * @format int32 + * @min 1 + * @max 7 + */ + division: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/wallets/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Retrieve the given corporation's wallet journal for the given division going 30 days back --- Alternate route: `/dev/corporations/{corporation_id}/wallets/{division}/journal/` Alternate route: `/v4/corporations/{corporation_id}/wallets/{division}/journal/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant + * + * @tags Wallet + * @name GetCorporationsCorporationIdWalletsDivisionJournal + * @summary Get corporation wallet journal + * @request GET:/corporations/{corporation_id}/wallets/{division}/journal/ + * @secure + */ + getCorporationsCorporationIdWalletsDivisionJournal: ( + corporationId: number, + division: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_wallets_division_journal_amount + * The amount of ISK given or taken from the wallet as a result of the given transaction. Positive when ISK is deposited into the wallet and negative when ISK is withdrawn + * @format double + */ + amount?: number; + /** + * get_corporations_corporation_id_wallets_division_journal_balance + * Wallet balance after transaction occurred + * @format double + */ + balance?: number; + /** + * get_corporations_corporation_id_wallets_division_journal_context_id + * An ID that gives extra context to the particular transaction. Because of legacy reasons the context is completely different per ref_type and means different things. It is also possible to not have a context_id + * @format int64 + */ + context_id?: number; + /** + * get_corporations_corporation_id_wallets_division_journal_context_id_type + * The type of the given context_id if present + */ + context_id_type?: + | "structure_id" + | "station_id" + | "market_transaction_id" + | "character_id" + | "corporation_id" + | "alliance_id" + | "eve_system" + | "industry_job_id" + | "contract_id" + | "planet_id" + | "system_id" + | "type_id"; + /** + * get_corporations_corporation_id_wallets_division_journal_date + * Date and time of transaction + * @format date-time + */ + date: string; + /** + * get_corporations_corporation_id_wallets_division_journal_description + * The reason for the transaction, mirrors what is seen in the client + */ + description: string; + /** + * get_corporations_corporation_id_wallets_division_journal_first_party_id + * The id of the first party involved in the transaction. This attribute has no consistency and is different or non existant for particular ref_types. The description attribute will help make sense of what this attribute means. For more info about the given ID it can be dropped into the /universe/names/ ESI route to determine its type and name + * @format int32 + */ + first_party_id?: number; + /** + * get_corporations_corporation_id_wallets_division_journal_id + * Unique journal reference ID + * @format int64 + */ + id: number; + /** + * get_corporations_corporation_id_wallets_division_journal_reason + * The user stated reason for the transaction. Only applies to some ref_types + */ + reason?: string; + /** + * get_corporations_corporation_id_wallets_division_journal_ref_type + * "The transaction type for the given. transaction. Different transaction types will populate different attributes. Note: If you have an existing XML API application that is using ref_types, you will need to know which string ESI ref_type maps to which integer. You can look at the following file to see string->int mappings: https://github.com/ccpgames/eve-glue/blob/master/eve_glue/wallet_journal_ref.py" + */ + ref_type: + | "acceleration_gate_fee" + | "advertisement_listing_fee" + | "agent_donation" + | "agent_location_services" + | "agent_miscellaneous" + | "agent_mission_collateral_paid" + | "agent_mission_collateral_refunded" + | "agent_mission_reward" + | "agent_mission_reward_corporation_tax" + | "agent_mission_time_bonus_reward" + | "agent_mission_time_bonus_reward_corporation_tax" + | "agent_security_services" + | "agent_services_rendered" + | "agents_preward" + | "alliance_maintainance_fee" + | "alliance_registration_fee" + | "asset_safety_recovery_tax" + | "bounty" + | "bounty_prize" + | "bounty_prize_corporation_tax" + | "bounty_prizes" + | "bounty_reimbursement" + | "bounty_surcharge" + | "brokers_fee" + | "clone_activation" + | "clone_transfer" + | "contraband_fine" + | "contract_auction_bid" + | "contract_auction_bid_corp" + | "contract_auction_bid_refund" + | "contract_auction_sold" + | "contract_brokers_fee" + | "contract_brokers_fee_corp" + | "contract_collateral" + | "contract_collateral_deposited_corp" + | "contract_collateral_payout" + | "contract_collateral_refund" + | "contract_deposit" + | "contract_deposit_corp" + | "contract_deposit_refund" + | "contract_deposit_sales_tax" + | "contract_price" + | "contract_price_payment_corp" + | "contract_reversal" + | "contract_reward" + | "contract_reward_deposited" + | "contract_reward_deposited_corp" + | "contract_reward_refund" + | "contract_sales_tax" + | "copying" + | "corporate_reward_payout" + | "corporate_reward_tax" + | "corporation_account_withdrawal" + | "corporation_bulk_payment" + | "corporation_dividend_payment" + | "corporation_liquidation" + | "corporation_logo_change_cost" + | "corporation_payment" + | "corporation_registration_fee" + | "courier_mission_escrow" + | "cspa" + | "cspaofflinerefund" + | "daily_challenge_reward" + | "datacore_fee" + | "dna_modification_fee" + | "docking_fee" + | "duel_wager_escrow" + | "duel_wager_payment" + | "duel_wager_refund" + | "ess_escrow_transfer" + | "external_trade_delivery" + | "external_trade_freeze" + | "external_trade_thaw" + | "factory_slot_rental_fee" + | "flux_payout" + | "flux_tax" + | "flux_ticket_repayment" + | "flux_ticket_sale" + | "gm_cash_transfer" + | "industry_job_tax" + | "infrastructure_hub_maintenance" + | "inheritance" + | "insurance" + | "item_trader_payment" + | "jump_clone_activation_fee" + | "jump_clone_installation_fee" + | "kill_right_fee" + | "lp_store" + | "manufacturing" + | "market_escrow" + | "market_fine_paid" + | "market_provider_tax" + | "market_transaction" + | "medal_creation" + | "medal_issued" + | "milestone_reward_payment" + | "mission_completion" + | "mission_cost" + | "mission_expiration" + | "mission_reward" + | "office_rental_fee" + | "operation_bonus" + | "opportunity_reward" + | "planetary_construction" + | "planetary_export_tax" + | "planetary_import_tax" + | "player_donation" + | "player_trading" + | "project_discovery_reward" + | "project_discovery_tax" + | "reaction" + | "redeemed_isk_token" + | "release_of_impounded_property" + | "repair_bill" + | "reprocessing_tax" + | "researching_material_productivity" + | "researching_technology" + | "researching_time_productivity" + | "resource_wars_reward" + | "reverse_engineering" + | "season_challenge_reward" + | "security_processing_fee" + | "shares" + | "skill_purchase" + | "sovereignity_bill" + | "store_purchase" + | "store_purchase_refund" + | "structure_gate_jump" + | "transaction_tax" + | "upkeep_adjustment_fee" + | "war_ally_contract" + | "war_fee" + | "war_fee_surrender"; + /** + * get_corporations_corporation_id_wallets_division_journal_second_party_id + * The id of the second party involved in the transaction. This attribute has no consistency and is different or non existant for particular ref_types. The description attribute will help make sense of what this attribute means. For more info about the given ID it can be dropped into the /universe/names/ ESI route to determine its type and name + * @format int32 + */ + second_party_id?: number; + /** + * get_corporations_corporation_id_wallets_division_journal_tax + * Tax amount received. Only applies to tax related transactions + * @format double + */ + tax?: number; + /** + * get_corporations_corporation_id_wallets_division_journal_tax_receiver_id + * The corporation ID receiving any tax paid. Only applies to tax related transactions + * @format int32 + */ + tax_receiver_id?: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/wallets/${division}/journal/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get wallet transactions of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/wallets/{division}/transactions/` Alternate route: `/legacy/corporations/{corporation_id}/wallets/{division}/transactions/` Alternate route: `/v1/corporations/{corporation_id}/wallets/{division}/transactions/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant + * + * @tags Wallet + * @name GetCorporationsCorporationIdWalletsDivisionTransactions + * @summary Get corporation wallet transactions + * @request GET:/corporations/{corporation_id}/wallets/{division}/transactions/ + * @secure + */ + getCorporationsCorporationIdWalletsDivisionTransactions: ( + corporationId: number, + division: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Only show journal entries happened before the transaction referenced by this id + * @format int64 + */ + from_id?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_corporations_corporation_id_wallets_division_transactions_client_id + * client_id integer + * @format int32 + */ + client_id: number; + /** + * get_corporations_corporation_id_wallets_division_transactions_date + * Date and time of transaction + * @format date-time + */ + date: string; + /** + * get_corporations_corporation_id_wallets_division_transactions_is_buy + * is_buy boolean + */ + is_buy: boolean; + /** + * get_corporations_corporation_id_wallets_division_transactions_journal_ref_id + * -1 if there is no corresponding wallet journal entry + * @format int64 + */ + journal_ref_id: number; + /** + * get_corporations_corporation_id_wallets_division_transactions_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_corporations_corporation_id_wallets_division_transactions_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_corporations_corporation_id_wallets_division_transactions_transaction_id + * Unique transaction ID + * @format int64 + */ + transaction_id: number; + /** + * get_corporations_corporation_id_wallets_division_transactions_type_id + * type_id integer + * @format int32 + */ + type_id: number; + /** + * get_corporations_corporation_id_wallets_division_transactions_unit_price + * Amount paid per unit + * @format double + */ + unit_price: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/corporations/${corporationId}/wallets/${division}/transactions/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + }; + dogma = { + /** + * @description Get a list of dogma attribute ids --- Alternate route: `/dev/dogma/attributes/` Alternate route: `/legacy/dogma/attributes/` Alternate route: `/v1/dogma/attributes/` --- This route expires daily at 11:05 + * + * @tags Dogma + * @name GetDogmaAttributes + * @summary Get attributes + * @request GET:/dogma/attributes/ + */ + getDogmaAttributes: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/dogma/attributes/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a dogma attribute --- Alternate route: `/dev/dogma/attributes/{attribute_id}/` Alternate route: `/legacy/dogma/attributes/{attribute_id}/` Alternate route: `/v1/dogma/attributes/{attribute_id}/` --- This route expires daily at 11:05 + * + * @tags Dogma + * @name GetDogmaAttributesAttributeId + * @summary Get attribute information + * @request GET:/dogma/attributes/{attribute_id}/ + */ + getDogmaAttributesAttributeId: ( + attributeId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_dogma_attributes_attribute_id_attribute_id + * attribute_id integer + * @format int32 + */ + attribute_id: number; + /** + * get_dogma_attributes_attribute_id_default_value + * default_value number + * @format float + */ + default_value?: number; + /** + * get_dogma_attributes_attribute_id_description + * description string + */ + description?: string; + /** + * get_dogma_attributes_attribute_id_display_name + * display_name string + */ + display_name?: string; + /** + * get_dogma_attributes_attribute_id_high_is_good + * high_is_good boolean + */ + high_is_good?: boolean; + /** + * get_dogma_attributes_attribute_id_icon_id + * icon_id integer + * @format int32 + */ + icon_id?: number; + /** + * get_dogma_attributes_attribute_id_name + * name string + */ + name?: string; + /** + * get_dogma_attributes_attribute_id_published + * published boolean + */ + published?: boolean; + /** + * get_dogma_attributes_attribute_id_stackable + * stackable boolean + */ + stackable?: boolean; + /** + * get_dogma_attributes_attribute_id_unit_id + * unit_id integer + * @format int32 + */ + unit_id?: number; + }, + | void + | BadRequest + | { + /** + * get_dogma_attributes_attribute_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/dogma/attributes/${attributeId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Returns info about a dynamic item resulting from mutation with a mutaplasmid. --- Alternate route: `/dev/dogma/dynamic/items/{type_id}/{item_id}/` Alternate route: `/legacy/dogma/dynamic/items/{type_id}/{item_id}/` Alternate route: `/v1/dogma/dynamic/items/{type_id}/{item_id}/` --- This route expires daily at 11:05 + * + * @tags Dogma + * @name GetDogmaDynamicItemsTypeIdItemId + * @summary Get dynamic item information + * @request GET:/dogma/dynamic/items/{type_id}/{item_id}/ + */ + getDogmaDynamicItemsTypeIdItemId: ( + itemId: number, + typeId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_dogma_dynamic_items_type_id_item_id_created_by + * The ID of the character who created the item + * @format int32 + */ + created_by: number; + /** + * get_dogma_dynamic_items_type_id_item_id_dogma_attributes + * dogma_attributes array + * @maxItems 1000 + */ + dogma_attributes: { + /** + * get_dogma_dynamic_items_type_id_item_id_attribute_id + * attribute_id integer + * @format int32 + */ + attribute_id: number; + /** + * get_dogma_dynamic_items_type_id_item_id_value + * value number + * @format float + */ + value: number; + }[]; + /** + * get_dogma_dynamic_items_type_id_item_id_dogma_effects + * dogma_effects array + * @maxItems 1000 + */ + dogma_effects: { + /** + * get_dogma_dynamic_items_type_id_item_id_effect_id + * effect_id integer + * @format int32 + */ + effect_id: number; + /** + * get_dogma_dynamic_items_type_id_item_id_is_default + * is_default boolean + */ + is_default: boolean; + }[]; + /** + * get_dogma_dynamic_items_type_id_item_id_mutator_type_id + * The type ID of the mutator used to generate the dynamic item. + * @format int32 + */ + mutator_type_id: number; + /** + * get_dogma_dynamic_items_type_id_item_id_source_type_id + * The type ID of the source item the mutator was applied to create the dynamic item. + * @format int32 + */ + source_type_id: number; + }, + | void + | BadRequest + | { + /** + * get_dogma_dynamic_items_type_id_item_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/dogma/dynamic/items/${typeId}/${itemId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of dogma effect ids --- Alternate route: `/dev/dogma/effects/` Alternate route: `/legacy/dogma/effects/` Alternate route: `/v1/dogma/effects/` --- This route expires daily at 11:05 + * + * @tags Dogma + * @name GetDogmaEffects + * @summary Get effects + * @request GET:/dogma/effects/ + */ + getDogmaEffects: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/dogma/effects/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a dogma effect --- Alternate route: `/dev/dogma/effects/{effect_id}/` Alternate route: `/v2/dogma/effects/{effect_id}/` --- This route expires daily at 11:05 + * + * @tags Dogma + * @name GetDogmaEffectsEffectId + * @summary Get effect information + * @request GET:/dogma/effects/{effect_id}/ + */ + getDogmaEffectsEffectId: ( + effectId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_dogma_effects_effect_id_description + * description string + */ + description?: string; + /** + * get_dogma_effects_effect_id_disallow_auto_repeat + * disallow_auto_repeat boolean + */ + disallow_auto_repeat?: boolean; + /** + * get_dogma_effects_effect_id_discharge_attribute_id + * discharge_attribute_id integer + * @format int32 + */ + discharge_attribute_id?: number; + /** + * get_dogma_effects_effect_id_display_name + * display_name string + */ + display_name?: string; + /** + * get_dogma_effects_effect_id_duration_attribute_id + * duration_attribute_id integer + * @format int32 + */ + duration_attribute_id?: number; + /** + * get_dogma_effects_effect_id_effect_category + * effect_category integer + * @format int32 + */ + effect_category?: number; + /** + * get_dogma_effects_effect_id_effect_id + * effect_id integer + * @format int32 + */ + effect_id: number; + /** + * get_dogma_effects_effect_id_electronic_chance + * electronic_chance boolean + */ + electronic_chance?: boolean; + /** + * get_dogma_effects_effect_id_falloff_attribute_id + * falloff_attribute_id integer + * @format int32 + */ + falloff_attribute_id?: number; + /** + * get_dogma_effects_effect_id_icon_id + * icon_id integer + * @format int32 + */ + icon_id?: number; + /** + * get_dogma_effects_effect_id_is_assistance + * is_assistance boolean + */ + is_assistance?: boolean; + /** + * get_dogma_effects_effect_id_is_offensive + * is_offensive boolean + */ + is_offensive?: boolean; + /** + * get_dogma_effects_effect_id_is_warp_safe + * is_warp_safe boolean + */ + is_warp_safe?: boolean; + /** + * get_dogma_effects_effect_id_modifiers + * modifiers array + * @maxItems 100 + */ + modifiers?: { + /** + * get_dogma_effects_effect_id_domain + * domain string + */ + domain?: string; + /** + * get_dogma_effects_effect_id_modifier_effect_id + * effect_id integer + * @format int32 + */ + effect_id?: number; + /** + * get_dogma_effects_effect_id_func + * func string + */ + func: string; + /** + * get_dogma_effects_effect_id_modified_attribute_id + * modified_attribute_id integer + * @format int32 + */ + modified_attribute_id?: number; + /** + * get_dogma_effects_effect_id_modifying_attribute_id + * modifying_attribute_id integer + * @format int32 + */ + modifying_attribute_id?: number; + /** + * get_dogma_effects_effect_id_operator + * operator integer + * @format int32 + */ + operator?: number; + }[]; + /** + * get_dogma_effects_effect_id_name + * name string + */ + name?: string; + /** + * get_dogma_effects_effect_id_post_expression + * post_expression integer + * @format int32 + */ + post_expression?: number; + /** + * get_dogma_effects_effect_id_pre_expression + * pre_expression integer + * @format int32 + */ + pre_expression?: number; + /** + * get_dogma_effects_effect_id_published + * published boolean + */ + published?: boolean; + /** + * get_dogma_effects_effect_id_range_attribute_id + * range_attribute_id integer + * @format int32 + */ + range_attribute_id?: number; + /** + * get_dogma_effects_effect_id_range_chance + * range_chance boolean + */ + range_chance?: boolean; + /** + * get_dogma_effects_effect_id_tracking_speed_attribute_id + * tracking_speed_attribute_id integer + * @format int32 + */ + tracking_speed_attribute_id?: number; + }, + | void + | BadRequest + | { + /** + * get_dogma_effects_effect_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/dogma/effects/${effectId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + fleets = { + /** + * @description Return details about a fleet --- Alternate route: `/dev/fleets/{fleet_id}/` Alternate route: `/legacy/fleets/{fleet_id}/` Alternate route: `/v1/fleets/{fleet_id}/` --- This route is cached for up to 5 seconds + * + * @tags Fleets + * @name GetFleetsFleetId + * @summary Get fleet information + * @request GET:/fleets/{fleet_id}/ + * @secure + */ + getFleetsFleetId: ( + fleetId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fleets_fleet_id_is_free_move + * Is free-move enabled + */ + is_free_move: boolean; + /** + * get_fleets_fleet_id_is_registered + * Does the fleet have an active fleet advertisement + */ + is_registered: boolean; + /** + * get_fleets_fleet_id_is_voice_enabled + * Is EVE Voice enabled + */ + is_voice_enabled: boolean; + /** + * get_fleets_fleet_id_motd + * Fleet MOTD in CCP flavoured HTML + */ + motd: string; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_fleets_fleet_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Update settings about a fleet --- Alternate route: `/dev/fleets/{fleet_id}/` Alternate route: `/legacy/fleets/{fleet_id}/` Alternate route: `/v1/fleets/{fleet_id}/` + * + * @tags Fleets + * @name PutFleetsFleetId + * @summary Update fleet + * @request PUT:/fleets/{fleet_id}/ + * @secure + */ + putFleetsFleetId: ( + fleetId: number, + new_settings: { + /** + * put_fleets_fleet_id_is_free_move + * Should free-move be enabled in the fleet + */ + is_free_move?: boolean; + /** + * put_fleets_fleet_id_motd + * New fleet MOTD in CCP flavoured HTML + */ + motd?: string; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * put_fleets_fleet_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/`, + method: "PUT", + query: query, + body: new_settings, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Return information about fleet members --- Alternate route: `/dev/fleets/{fleet_id}/members/` Alternate route: `/legacy/fleets/{fleet_id}/members/` Alternate route: `/v1/fleets/{fleet_id}/members/` --- This route is cached for up to 5 seconds + * + * @tags Fleets + * @name GetFleetsFleetIdMembers + * @summary Get fleet members + * @request GET:/fleets/{fleet_id}/members/ + * @secure + */ + getFleetsFleetIdMembers: ( + fleetId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fleets_fleet_id_members_character_id + * character_id integer + * @format int32 + */ + character_id: number; + /** + * get_fleets_fleet_id_members_join_time + * join_time string + * @format date-time + */ + join_time: string; + /** + * get_fleets_fleet_id_members_role + * Member’s role in fleet + */ + role: "fleet_commander" | "wing_commander" | "squad_commander" | "squad_member"; + /** + * get_fleets_fleet_id_members_role_name + * Localized role names + */ + role_name: string; + /** + * get_fleets_fleet_id_members_ship_type_id + * ship_type_id integer + * @format int32 + */ + ship_type_id: number; + /** + * get_fleets_fleet_id_members_solar_system_id + * Solar system the member is located in + * @format int32 + */ + solar_system_id: number; + /** + * get_fleets_fleet_id_members_squad_id + * ID of the squad the member is in. If not applicable, will be set to -1 + * @format int64 + */ + squad_id: number; + /** + * get_fleets_fleet_id_members_station_id + * Station in which the member is docked in, if applicable + * @format int64 + */ + station_id?: number; + /** + * get_fleets_fleet_id_members_takes_fleet_warp + * Whether the member take fleet warps + */ + takes_fleet_warp: boolean; + /** + * get_fleets_fleet_id_members_wing_id + * ID of the wing the member is in. If not applicable, will be set to -1 + * @format int64 + */ + wing_id: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_fleets_fleet_id_members_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/members/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Invite a character into the fleet. If a character has a CSPA charge set it is not possible to invite them to the fleet using ESI --- Alternate route: `/dev/fleets/{fleet_id}/members/` Alternate route: `/legacy/fleets/{fleet_id}/members/` Alternate route: `/v1/fleets/{fleet_id}/members/` + * + * @tags Fleets + * @name PostFleetsFleetIdMembers + * @summary Create fleet invitation + * @request POST:/fleets/{fleet_id}/members/ + * @secure + */ + postFleetsFleetIdMembers: ( + fleetId: number, + invitation: { + /** + * post_fleets_fleet_id_members_character_id + * The character you want to invite + * @format int32 + */ + character_id: number; + /** + * post_fleets_fleet_id_members_role + * If a character is invited with the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified. If a character is invited with the `wing_commander` role, only `wing_id` should be specified. If a character is invited with the `squad_commander` role, both `wing_id` and `squad_id` should be specified. If a character is invited with the `squad_member` role, `wing_id` and `squad_id` should either both be specified or not specified at all. If they aren’t specified, the invited character will join any squad with available positions. + */ + role: "fleet_commander" | "wing_commander" | "squad_commander" | "squad_member"; + /** + * post_fleets_fleet_id_members_squad_id + * squad_id integer + * @format int64 + * @min 0 + */ + squad_id?: number; + /** + * post_fleets_fleet_id_members_wing_id + * wing_id integer + * @format int64 + * @min 0 + */ + wing_id?: number; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * post_fleets_fleet_id_members_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | { + /** + * post_fleets_fleet_id_members_error + * error message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/members/`, + method: "POST", + query: query, + body: invitation, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Kick a fleet member --- Alternate route: `/dev/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/v1/fleets/{fleet_id}/members/{member_id}/` + * + * @tags Fleets + * @name DeleteFleetsFleetIdMembersMemberId + * @summary Kick fleet member + * @request DELETE:/fleets/{fleet_id}/members/{member_id}/ + * @secure + */ + deleteFleetsFleetIdMembersMemberId: ( + fleetId: number, + memberId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * delete_fleets_fleet_id_members_member_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/members/${memberId}/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Move a fleet member around --- Alternate route: `/dev/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/v1/fleets/{fleet_id}/members/{member_id}/` + * + * @tags Fleets + * @name PutFleetsFleetIdMembersMemberId + * @summary Move fleet member + * @request PUT:/fleets/{fleet_id}/members/{member_id}/ + * @secure + */ + putFleetsFleetIdMembersMemberId: ( + fleetId: number, + memberId: number, + movement: { + /** + * put_fleets_fleet_id_members_member_id_role + * If a character is moved to the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified. If a character is moved to the `wing_commander` role, only `wing_id` should be specified. If a character is moved to the `squad_commander` role, both `wing_id` and `squad_id` should be specified. If a character is moved to the `squad_member` role, both `wing_id` and `squad_id` should be specified. + */ + role: "fleet_commander" | "wing_commander" | "squad_commander" | "squad_member"; + /** + * put_fleets_fleet_id_members_member_id_squad_id + * squad_id integer + * @format int64 + * @min 0 + */ + squad_id?: number; + /** + * put_fleets_fleet_id_members_member_id_wing_id + * wing_id integer + * @format int64 + * @min 0 + */ + wing_id?: number; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * put_fleets_fleet_id_members_member_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | { + /** + * put_fleets_fleet_id_members_member_id_error + * error message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/members/${memberId}/`, + method: "PUT", + query: query, + body: movement, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Delete a fleet squad, only empty squads can be deleted --- Alternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/` + * + * @tags Fleets + * @name DeleteFleetsFleetIdSquadsSquadId + * @summary Delete fleet squad + * @request DELETE:/fleets/{fleet_id}/squads/{squad_id}/ + * @secure + */ + deleteFleetsFleetIdSquadsSquadId: ( + fleetId: number, + squadId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * delete_fleets_fleet_id_squads_squad_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/squads/${squadId}/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Rename a fleet squad --- Alternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/` + * + * @tags Fleets + * @name PutFleetsFleetIdSquadsSquadId + * @summary Rename fleet squad + * @request PUT:/fleets/{fleet_id}/squads/{squad_id}/ + * @secure + */ + putFleetsFleetIdSquadsSquadId: ( + fleetId: number, + squadId: number, + naming: { + /** + * put_fleets_fleet_id_squads_squad_id_name + * name string + * @maxLength 10 + */ + name: string; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * put_fleets_fleet_id_squads_squad_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/squads/${squadId}/`, + method: "PUT", + query: query, + body: naming, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Return information about wings in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/` Alternate route: `/legacy/fleets/{fleet_id}/wings/` Alternate route: `/v1/fleets/{fleet_id}/wings/` --- This route is cached for up to 5 seconds + * + * @tags Fleets + * @name GetFleetsFleetIdWings + * @summary Get fleet wings + * @request GET:/fleets/{fleet_id}/wings/ + * @secure + */ + getFleetsFleetIdWings: ( + fleetId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fleets_fleet_id_wings_id + * id integer + * @format int64 + */ + id: number; + /** + * get_fleets_fleet_id_wings_name + * name string + */ + name: string; + /** + * get_fleets_fleet_id_wings_squads + * squads array + * @maxItems 25 + */ + squads: { + /** + * get_fleets_fleet_id_wings_squad_id + * id integer + * @format int64 + */ + id: number; + /** + * get_fleets_fleet_id_wings_squad_name + * name string + */ + name: string; + }[]; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_fleets_fleet_id_wings_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/wings/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Create a new wing in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/` Alternate route: `/legacy/fleets/{fleet_id}/wings/` Alternate route: `/v1/fleets/{fleet_id}/wings/` + * + * @tags Fleets + * @name PostFleetsFleetIdWings + * @summary Create fleet wing + * @request POST:/fleets/{fleet_id}/wings/ + * @secure + */ + postFleetsFleetIdWings: ( + fleetId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_fleets_fleet_id_wings_wing_id + * The wing_id of the newly created wing + * @format int64 + */ + wing_id: number; + }, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * post_fleets_fleet_id_wings_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/wings/`, + method: "POST", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/` + * + * @tags Fleets + * @name DeleteFleetsFleetIdWingsWingId + * @summary Delete fleet wing + * @request DELETE:/fleets/{fleet_id}/wings/{wing_id}/ + * @secure + */ + deleteFleetsFleetIdWingsWingId: ( + fleetId: number, + wingId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * delete_fleets_fleet_id_wings_wing_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/wings/${wingId}/`, + method: "DELETE", + query: query, + secure: true, + ...params, + }), + + /** + * @description Rename a fleet wing --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/` + * + * @tags Fleets + * @name PutFleetsFleetIdWingsWingId + * @summary Rename fleet wing + * @request PUT:/fleets/{fleet_id}/wings/{wing_id}/ + * @secure + */ + putFleetsFleetIdWingsWingId: ( + fleetId: number, + wingId: number, + naming: { + /** + * put_fleets_fleet_id_wings_wing_id_name + * name string + * @maxLength 10 + */ + name: string; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * put_fleets_fleet_id_wings_wing_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/wings/${wingId}/`, + method: "PUT", + query: query, + body: naming, + secure: true, + type: ContentType.Json, + ...params, + }), + + /** + * @description Create a new squad in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/squads/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/squads/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/squads/` + * + * @tags Fleets + * @name PostFleetsFleetIdWingsWingIdSquads + * @summary Create fleet squad + * @request POST:/fleets/{fleet_id}/wings/{wing_id}/squads/ + * @secure + */ + postFleetsFleetIdWingsWingIdSquads: ( + fleetId: number, + wingId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_fleets_fleet_id_wings_wing_id_squads_squad_id + * The squad_id of the newly created squad + * @format int64 + */ + squad_id: number; + }, + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * post_fleets_fleet_id_wings_wing_id_squads_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/fleets/${fleetId}/wings/${wingId}/squads/`, + method: "POST", + query: query, + secure: true, + format: "json", + ...params, + }), + }; + fw = { + /** + * @description Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday --- Alternate route: `/dev/fw/leaderboards/` Alternate route: `/legacy/fw/leaderboards/` Alternate route: `/v1/fw/leaderboards/` Alternate route: `/v2/fw/leaderboards/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetFwLeaderboards + * @summary List of the top factions in faction warfare + * @request GET:/fw/leaderboards/ + */ + getFwLeaderboards: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fw_leaderboards_kills + * Top 4 rankings of factions by number of kills from yesterday, last week and in total + */ + kills: { + /** + * get_fw_leaderboards_active_total + * Top 4 ranking of factions active in faction warfare by total kills. A faction is considered "active" if they have participated in faction warfare in the past 14 days + * @maxItems 4 + */ + active_total: { + /** + * get_fw_leaderboards_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + }[]; + /** + * get_fw_leaderboards_last_week + * Top 4 ranking of factions by kills in the past week + * @maxItems 4 + */ + last_week: { + /** + * get_fw_leaderboards_last_week_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_last_week_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + }[]; + /** + * get_fw_leaderboards_yesterday + * Top 4 ranking of factions by kills in the past day + * @maxItems 4 + */ + yesterday: { + /** + * get_fw_leaderboards_yesterday_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_yesterday_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + }[]; + }; + /** + * get_fw_leaderboards_victory_points + * Top 4 rankings of factions by victory points from yesterday, last week and in total + */ + victory_points: { + /** + * get_fw_leaderboards_victory_points_active_total + * Top 4 ranking of factions active in faction warfare by total victory points. A faction is considered "active" if they have participated in faction warfare in the past 14 days + * @maxItems 4 + */ + active_total: { + /** + * get_fw_leaderboards_active_total_amount + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_active_total_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + }[]; + /** + * get_fw_leaderboards_victory_points_last_week + * Top 4 ranking of factions by victory points in the past week + * @maxItems 4 + */ + last_week: { + /** + * get_fw_leaderboards_last_week_amount_1 + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_last_week_faction_id_1 + * faction_id integer + * @format int32 + */ + faction_id?: number; + }[]; + /** + * get_fw_leaderboards_victory_points_yesterday + * Top 4 ranking of factions by victory points in the past day + * @maxItems 4 + */ + yesterday: { + /** + * get_fw_leaderboards_yesterday_amount_1 + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_yesterday_faction_id_1 + * faction_id integer + * @format int32 + */ + faction_id?: number; + }[]; + }; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/fw/leaderboards/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday --- Alternate route: `/dev/fw/leaderboards/characters/` Alternate route: `/legacy/fw/leaderboards/characters/` Alternate route: `/v1/fw/leaderboards/characters/` Alternate route: `/v2/fw/leaderboards/characters/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetFwLeaderboardsCharacters + * @summary List of the top pilots in faction warfare + * @request GET:/fw/leaderboards/characters/ + */ + getFwLeaderboardsCharacters: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fw_leaderboards_characters_kills + * Top 100 rankings of pilots by number of kills from yesterday, last week and in total + */ + kills: { + /** + * get_fw_leaderboards_characters_active_total + * Top 100 ranking of pilots active in faction warfare by total kills. A pilot is considered "active" if they have participated in faction warfare in the past 14 days + * @maxItems 100 + */ + active_total: { + /** + * get_fw_leaderboards_characters_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_characters_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + }[]; + /** + * get_fw_leaderboards_characters_last_week + * Top 100 ranking of pilots by kills in the past week + * @maxItems 100 + */ + last_week: { + /** + * get_fw_leaderboards_characters_last_week_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_characters_last_week_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + }[]; + /** + * get_fw_leaderboards_characters_yesterday + * Top 100 ranking of pilots by kills in the past day + * @maxItems 100 + */ + yesterday: { + /** + * get_fw_leaderboards_characters_yesterday_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_characters_yesterday_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + }[]; + }; + /** + * get_fw_leaderboards_characters_victory_points + * Top 100 rankings of pilots by victory points from yesterday, last week and in total + */ + victory_points: { + /** + * get_fw_leaderboards_characters_victory_points_active_total + * Top 100 ranking of pilots active in faction warfare by total victory points. A pilot is considered "active" if they have participated in faction warfare in the past 14 days + * @maxItems 100 + */ + active_total: { + /** + * get_fw_leaderboards_characters_active_total_amount + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_characters_active_total_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + }[]; + /** + * get_fw_leaderboards_characters_victory_points_last_week + * Top 100 ranking of pilots by victory points in the past week + * @maxItems 100 + */ + last_week: { + /** + * get_fw_leaderboards_characters_last_week_amount_1 + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_characters_last_week_character_id_1 + * character_id integer + * @format int32 + */ + character_id?: number; + }[]; + /** + * get_fw_leaderboards_characters_victory_points_yesterday + * Top 100 ranking of pilots by victory points in the past day + * @maxItems 100 + */ + yesterday: { + /** + * get_fw_leaderboards_characters_yesterday_amount_1 + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_characters_yesterday_character_id_1 + * character_id integer + * @format int32 + */ + character_id?: number; + }[]; + }; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/fw/leaderboards/characters/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday --- Alternate route: `/dev/fw/leaderboards/corporations/` Alternate route: `/legacy/fw/leaderboards/corporations/` Alternate route: `/v1/fw/leaderboards/corporations/` Alternate route: `/v2/fw/leaderboards/corporations/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetFwLeaderboardsCorporations + * @summary List of the top corporations in faction warfare + * @request GET:/fw/leaderboards/corporations/ + */ + getFwLeaderboardsCorporations: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fw_leaderboards_corporations_kills + * Top 10 rankings of corporations by number of kills from yesterday, last week and in total + */ + kills: { + /** + * get_fw_leaderboards_corporations_active_total + * Top 10 ranking of corporations active in faction warfare by total kills. A corporation is considered "active" if they have participated in faction warfare in the past 14 days + * @maxItems 10 + */ + active_total: { + /** + * get_fw_leaderboards_corporations_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_corporations_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + }[]; + /** + * get_fw_leaderboards_corporations_last_week + * Top 10 ranking of corporations by kills in the past week + * @maxItems 10 + */ + last_week: { + /** + * get_fw_leaderboards_corporations_last_week_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_corporations_last_week_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + }[]; + /** + * get_fw_leaderboards_corporations_yesterday + * Top 10 ranking of corporations by kills in the past day + * @maxItems 10 + */ + yesterday: { + /** + * get_fw_leaderboards_corporations_yesterday_amount + * Amount of kills + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_corporations_yesterday_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + }[]; + }; + /** + * get_fw_leaderboards_corporations_victory_points + * Top 10 rankings of corporations by victory points from yesterday, last week and in total + */ + victory_points: { + /** + * get_fw_leaderboards_corporations_victory_points_active_total + * Top 10 ranking of corporations active in faction warfare by total victory points. A corporation is considered "active" if they have participated in faction warfare in the past 14 days + * @maxItems 10 + */ + active_total: { + /** + * get_fw_leaderboards_corporations_active_total_amount + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_corporations_active_total_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + }[]; + /** + * get_fw_leaderboards_corporations_victory_points_last_week + * Top 10 ranking of corporations by victory points in the past week + * @maxItems 10 + */ + last_week: { + /** + * get_fw_leaderboards_corporations_last_week_amount_1 + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_corporations_last_week_corporation_id_1 + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + }[]; + /** + * get_fw_leaderboards_corporations_victory_points_yesterday + * Top 10 ranking of corporations by victory points in the past day + * @maxItems 10 + */ + yesterday: { + /** + * get_fw_leaderboards_corporations_yesterday_amount_1 + * Amount of victory points + * @format int32 + */ + amount?: number; + /** + * get_fw_leaderboards_corporations_yesterday_corporation_id_1 + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + }[]; + }; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/fw/leaderboards/corporations/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Statistical overviews of factions involved in faction warfare --- Alternate route: `/dev/fw/stats/` Alternate route: `/legacy/fw/stats/` Alternate route: `/v1/fw/stats/` Alternate route: `/v2/fw/stats/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetFwStats + * @summary An overview of statistics about factions involved in faction warfare + * @request GET:/fw/stats/ + */ + getFwStats: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fw_stats_faction_id + * faction_id integer + * @format int32 + */ + faction_id: number; + /** + * get_fw_stats_kills + * Summary of kills against an enemy faction for the given faction + */ + kills: { + /** + * get_fw_stats_last_week + * Last week's total number of kills against enemy factions + * @format int32 + */ + last_week: number; + /** + * get_fw_stats_total + * Total number of kills against enemy factions since faction warfare began + * @format int32 + */ + total: number; + /** + * get_fw_stats_yesterday + * Yesterday's total number of kills against enemy factions + * @format int32 + */ + yesterday: number; + }; + /** + * get_fw_stats_pilots + * How many pilots fight for the given faction + * @format int32 + */ + pilots: number; + /** + * get_fw_stats_systems_controlled + * The number of solar systems controlled by the given faction + * @format int32 + */ + systems_controlled: number; + /** + * get_fw_stats_victory_points + * Summary of victory points gained for the given faction + */ + victory_points: { + /** + * get_fw_stats_victory_points_last_week + * Last week's victory points gained + * @format int32 + */ + last_week: number; + /** + * get_fw_stats_victory_points_total + * Total victory points gained since faction warfare began + * @format int32 + */ + total: number; + /** + * get_fw_stats_victory_points_yesterday + * Yesterday's victory points gained + * @format int32 + */ + yesterday: number; + }; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/fw/stats/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description An overview of the current ownership of faction warfare solar systems --- Alternate route: `/dev/fw/systems/` Alternate route: `/legacy/fw/systems/` Alternate route: `/v2/fw/systems/` Alternate route: `/v3/fw/systems/` --- This route is cached for up to 1800 seconds + * + * @tags Faction Warfare + * @name GetFwSystems + * @summary Ownership of faction warfare systems + * @request GET:/fw/systems/ + */ + getFwSystems: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fw_systems_contested + * contested string + */ + contested: "captured" | "contested" | "uncontested" | "vulnerable"; + /** + * get_fw_systems_occupier_faction_id + * occupier_faction_id integer + * @format int32 + */ + occupier_faction_id: number; + /** + * get_fw_systems_owner_faction_id + * owner_faction_id integer + * @format int32 + */ + owner_faction_id: number; + /** + * get_fw_systems_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + /** + * get_fw_systems_victory_points + * victory_points integer + * @format int32 + */ + victory_points: number; + /** + * get_fw_systems_victory_points_threshold + * victory_points_threshold integer + * @format int32 + */ + victory_points_threshold: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/fw/systems/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Data about which NPC factions are at war --- Alternate route: `/dev/fw/wars/` Alternate route: `/legacy/fw/wars/` Alternate route: `/v1/fw/wars/` Alternate route: `/v2/fw/wars/` --- This route expires daily at 11:05 + * + * @tags Faction Warfare + * @name GetFwWars + * @summary Data about which NPC factions are at war + * @request GET:/fw/wars/ + */ + getFwWars: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_fw_wars_against_id + * The faction ID of the enemy faction. + * @format int32 + */ + against_id: number; + /** + * get_fw_wars_faction_id + * faction_id integer + * @format int32 + */ + faction_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/fw/wars/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + incursions = { + /** + * @description Return a list of current incursions --- Alternate route: `/dev/incursions/` Alternate route: `/legacy/incursions/` Alternate route: `/v1/incursions/` --- This route is cached for up to 300 seconds + * + * @tags Incursions + * @name GetIncursions + * @summary List incursions + * @request GET:/incursions/ + */ + getIncursions: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_incursions_constellation_id + * The constellation id in which this incursion takes place + * @format int32 + */ + constellation_id: number; + /** + * get_incursions_faction_id + * The attacking faction's id + * @format int32 + */ + faction_id: number; + /** + * get_incursions_has_boss + * Whether the final encounter has boss or not + */ + has_boss: boolean; + /** + * get_incursions_infested_solar_systems + * A list of infested solar system ids that are a part of this incursion + * @maxItems 100 + */ + infested_solar_systems: number[]; + /** + * get_incursions_influence + * Influence of this incursion as a float from 0 to 1 + * @format float + */ + influence: number; + /** + * get_incursions_staging_solar_system_id + * Staging solar system for this incursion + * @format int32 + */ + staging_solar_system_id: number; + /** + * get_incursions_state + * The state of this incursion + */ + state: "withdrawing" | "mobilizing" | "established"; + /** + * get_incursions_type + * The type of this incursion + */ + type: string; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/incursions/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + industry = { + /** + * @description Return a list of industry facilities --- Alternate route: `/dev/industry/facilities/` Alternate route: `/legacy/industry/facilities/` Alternate route: `/v1/industry/facilities/` --- This route is cached for up to 3600 seconds + * + * @tags Industry + * @name GetIndustryFacilities + * @summary List industry facilities + * @request GET:/industry/facilities/ + */ + getIndustryFacilities: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_industry_facilities_facility_id + * ID of the facility + * @format int64 + */ + facility_id: number; + /** + * get_industry_facilities_owner_id + * Owner of the facility + * @format int32 + */ + owner_id: number; + /** + * get_industry_facilities_region_id + * Region ID where the facility is + * @format int32 + */ + region_id: number; + /** + * get_industry_facilities_solar_system_id + * Solar system ID where the facility is + * @format int32 + */ + solar_system_id: number; + /** + * get_industry_facilities_tax + * Tax imposed by the facility + * @format float + */ + tax?: number; + /** + * get_industry_facilities_type_id + * Type ID of the facility + * @format int32 + */ + type_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/industry/facilities/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return cost indices for solar systems --- Alternate route: `/dev/industry/systems/` Alternate route: `/legacy/industry/systems/` Alternate route: `/v1/industry/systems/` --- This route is cached for up to 3600 seconds + * + * @tags Industry + * @name GetIndustrySystems + * @summary List solar system cost indices + * @request GET:/industry/systems/ + */ + getIndustrySystems: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_industry_systems_cost_indices + * cost_indices array + * @maxItems 10 + */ + cost_indices: { + /** + * get_industry_systems_activity + * activity string + */ + activity: + | "copying" + | "duplicating" + | "invention" + | "manufacturing" + | "none" + | "reaction" + | "researching_material_efficiency" + | "researching_technology" + | "researching_time_efficiency" + | "reverse_engineering"; + /** + * get_industry_systems_cost_index + * cost_index number + * @format float + */ + cost_index: number; + }[]; + /** + * get_industry_systems_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/industry/systems/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + insurance = { + /** + * @description Return available insurance levels for all ship types --- Alternate route: `/dev/insurance/prices/` Alternate route: `/legacy/insurance/prices/` Alternate route: `/v1/insurance/prices/` --- This route is cached for up to 3600 seconds + * + * @tags Insurance + * @name GetInsurancePrices + * @summary List insurance levels + * @request GET:/insurance/prices/ + */ + getInsurancePrices: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_insurance_prices_levels + * A list of a available insurance levels for this ship type + * @maxItems 6 + */ + levels: { + /** + * get_insurance_prices_cost + * cost number + * @format float + */ + cost: number; + /** + * get_insurance_prices_name + * Localized insurance level + */ + name: string; + /** + * get_insurance_prices_payout + * payout number + * @format float + */ + payout: number; + }[]; + /** + * get_insurance_prices_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/insurance/prices/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + killmails = { + /** + * @description Return a single killmail from its ID and hash --- Alternate route: `/dev/killmails/{killmail_id}/{killmail_hash}/` Alternate route: `/legacy/killmails/{killmail_id}/{killmail_hash}/` Alternate route: `/v1/killmails/{killmail_id}/{killmail_hash}/` --- This route is cached for up to 30758400 seconds + * + * @tags Killmails + * @name GetKillmailsKillmailIdKillmailHash + * @summary Get a single killmail + * @request GET:/killmails/{killmail_id}/{killmail_hash}/ + */ + getKillmailsKillmailIdKillmailHash: ( + killmailHash: string, + killmailId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_killmails_killmail_id_killmail_hash_attackers + * attackers array + * @maxItems 10000 + */ + attackers: { + /** + * get_killmails_killmail_id_killmail_hash_alliance_id + * alliance_id integer + * @format int32 + */ + alliance_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_damage_done + * damage_done integer + * @format int32 + */ + damage_done: number; + /** + * get_killmails_killmail_id_killmail_hash_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_final_blow + * Was the attacker the one to achieve the final blow + */ + final_blow: boolean; + /** + * get_killmails_killmail_id_killmail_hash_security_status + * Security status for the attacker + * @format float + */ + security_status: number; + /** + * get_killmails_killmail_id_killmail_hash_ship_type_id + * What ship was the attacker flying + * @format int32 + */ + ship_type_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_weapon_type_id + * What weapon was used by the attacker for the kill + * @format int32 + */ + weapon_type_id?: number; + }[]; + /** + * get_killmails_killmail_id_killmail_hash_killmail_id + * ID of the killmail + * @format int32 + */ + killmail_id: number; + /** + * get_killmails_killmail_id_killmail_hash_killmail_time + * Time that the victim was killed and the killmail generated + * @format date-time + */ + killmail_time: string; + /** + * get_killmails_killmail_id_killmail_hash_moon_id + * Moon if the kill took place at one + * @format int32 + */ + moon_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_solar_system_id + * Solar system that the kill took place in + * @format int32 + */ + solar_system_id: number; + /** + * get_killmails_killmail_id_killmail_hash_victim + * victim object + */ + victim: { + /** + * get_killmails_killmail_id_killmail_hash_victim_alliance_id + * alliance_id integer + * @format int32 + */ + alliance_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_victim_character_id + * character_id integer + * @format int32 + */ + character_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_victim_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_damage_taken + * How much total damage was taken by the victim + * @format int32 + */ + damage_taken: number; + /** + * get_killmails_killmail_id_killmail_hash_victim_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + /** + * get_killmails_killmail_id_killmail_hash_items + * items array + * @maxItems 10000 + */ + items?: { + /** + * get_killmails_killmail_id_killmail_hash_flag + * Flag for the location of the item + * @format int32 + */ + flag: number; + /** + * get_killmails_killmail_id_killmail_hash_item_type_id + * item_type_id integer + * @format int32 + */ + item_type_id: number; + /** + * get_killmails_killmail_id_killmail_hash_item_items + * items array + * @maxItems 10000 + */ + items?: { + /** + * get_killmails_killmail_id_killmail_hash_item_flag + * flag integer + * @format int32 + */ + flag: number; + /** + * get_killmails_killmail_id_killmail_hash_item_item_type_id + * item_type_id integer + * @format int32 + */ + item_type_id: number; + /** + * get_killmails_killmail_id_killmail_hash_item_quantity_destroyed + * quantity_destroyed integer + * @format int64 + */ + quantity_destroyed?: number; + /** + * get_killmails_killmail_id_killmail_hash_item_quantity_dropped + * quantity_dropped integer + * @format int64 + */ + quantity_dropped?: number; + /** + * get_killmails_killmail_id_killmail_hash_item_singleton + * singleton integer + * @format int32 + */ + singleton: number; + }[]; + /** + * get_killmails_killmail_id_killmail_hash_quantity_destroyed + * How many of the item were destroyed if any + * @format int64 + */ + quantity_destroyed?: number; + /** + * get_killmails_killmail_id_killmail_hash_quantity_dropped + * How many of the item were dropped if any + * @format int64 + */ + quantity_dropped?: number; + /** + * get_killmails_killmail_id_killmail_hash_singleton + * singleton integer + * @format int32 + */ + singleton: number; + }[]; + /** + * get_killmails_killmail_id_killmail_hash_position + * Coordinates of the victim in Cartesian space relative to the Sun + */ + position?: { + /** + * get_killmails_killmail_id_killmail_hash_x + * x number + * @format double + */ + x: number; + /** + * get_killmails_killmail_id_killmail_hash_y + * y number + * @format double + */ + y: number; + /** + * get_killmails_killmail_id_killmail_hash_z + * z number + * @format double + */ + z: number; + }; + /** + * get_killmails_killmail_id_killmail_hash_victim_ship_type_id + * The ship that the victim was piloting and was destroyed + * @format int32 + */ + ship_type_id: number; + }; + /** + * get_killmails_killmail_id_killmail_hash_war_id + * War if the killmail is generated in relation to an official war + * @format int32 + */ + war_id?: number; + }, + | void + | BadRequest + | ErrorLimited + | { + /** + * get_killmails_killmail_id_killmail_hash_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/killmails/${killmailId}/${killmailHash}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + loyalty = { + /** + * @description Return a list of offers from a specific corporation's loyalty store --- Alternate route: `/dev/loyalty/stores/{corporation_id}/offers/` Alternate route: `/legacy/loyalty/stores/{corporation_id}/offers/` Alternate route: `/v1/loyalty/stores/{corporation_id}/offers/` --- This route expires daily at 11:05 + * + * @tags Loyalty + * @name GetLoyaltyStoresCorporationIdOffers + * @summary List loyalty store offers + * @request GET:/loyalty/stores/{corporation_id}/offers/ + */ + getLoyaltyStoresCorporationIdOffers: ( + corporationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_loyalty_stores_corporation_id_offers_ak_cost + * Analysis kredit cost + * @format int32 + */ + ak_cost?: number; + /** + * get_loyalty_stores_corporation_id_offers_isk_cost + * isk_cost integer + * @format int64 + */ + isk_cost: number; + /** + * get_loyalty_stores_corporation_id_offers_lp_cost + * lp_cost integer + * @format int32 + */ + lp_cost: number; + /** + * get_loyalty_stores_corporation_id_offers_offer_id + * offer_id integer + * @format int32 + */ + offer_id: number; + /** + * get_loyalty_stores_corporation_id_offers_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_loyalty_stores_corporation_id_offers_required_items + * required_items array + * @maxItems 100 + */ + required_items: { + /** + * get_loyalty_stores_corporation_id_offers_required_item_quantity + * quantity integer + * @format int32 + */ + quantity: number; + /** + * get_loyalty_stores_corporation_id_offers_required_item_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[]; + /** + * get_loyalty_stores_corporation_id_offers_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + | void + | BadRequest + | { + /** + * get_loyalty_stores_corporation_id_offers_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/loyalty/stores/${corporationId}/offers/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + markets = { + /** + * @description Get a list of item groups --- Alternate route: `/dev/markets/groups/` Alternate route: `/legacy/markets/groups/` Alternate route: `/v1/markets/groups/` --- This route expires daily at 11:05 + * + * @tags Market + * @name GetMarketsGroups + * @summary Get item groups + * @request GET:/markets/groups/ + */ + getMarketsGroups: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/markets/groups/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on an item group --- Alternate route: `/dev/markets/groups/{market_group_id}/` Alternate route: `/legacy/markets/groups/{market_group_id}/` Alternate route: `/v1/markets/groups/{market_group_id}/` --- This route expires daily at 11:05 + * + * @tags Market + * @name GetMarketsGroupsMarketGroupId + * @summary Get item group information + * @request GET:/markets/groups/{market_group_id}/ + */ + getMarketsGroupsMarketGroupId: ( + marketGroupId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_markets_groups_market_group_id_description + * description string + */ + description: string; + /** + * get_markets_groups_market_group_id_market_group_id + * market_group_id integer + * @format int32 + */ + market_group_id: number; + /** + * get_markets_groups_market_group_id_name + * name string + */ + name: string; + /** + * get_markets_groups_market_group_id_parent_group_id + * parent_group_id integer + * @format int32 + */ + parent_group_id?: number; + /** + * get_markets_groups_market_group_id_types + * types array + * @maxItems 5000 + */ + types: number[]; + }, + | void + | BadRequest + | { + /** + * get_markets_groups_market_group_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/markets/groups/${marketGroupId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of prices --- Alternate route: `/dev/markets/prices/` Alternate route: `/legacy/markets/prices/` Alternate route: `/v1/markets/prices/` --- This route is cached for up to 3600 seconds + * + * @tags Market + * @name GetMarketsPrices + * @summary List market prices + * @request GET:/markets/prices/ + */ + getMarketsPrices: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_markets_prices_adjusted_price + * adjusted_price number + * @format double + */ + adjusted_price?: number; + /** + * get_markets_prices_average_price + * average_price number + * @format double + */ + average_price?: number; + /** + * get_markets_prices_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/markets/prices/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return all orders in a structure --- Alternate route: `/dev/markets/structures/{structure_id}/` Alternate route: `/legacy/markets/structures/{structure_id}/` Alternate route: `/v1/markets/structures/{structure_id}/` --- This route is cached for up to 300 seconds + * + * @tags Market + * @name GetMarketsStructuresStructureId + * @summary List orders in a structure + * @request GET:/markets/structures/{structure_id}/ + * @secure + */ + getMarketsStructuresStructureId: ( + structureId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_markets_structures_structure_id_duration + * duration integer + * @format int32 + */ + duration: number; + /** + * get_markets_structures_structure_id_is_buy_order + * is_buy_order boolean + */ + is_buy_order: boolean; + /** + * get_markets_structures_structure_id_issued + * issued string + * @format date-time + */ + issued: string; + /** + * get_markets_structures_structure_id_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_markets_structures_structure_id_min_volume + * min_volume integer + * @format int32 + */ + min_volume: number; + /** + * get_markets_structures_structure_id_order_id + * order_id integer + * @format int64 + */ + order_id: number; + /** + * get_markets_structures_structure_id_price + * price number + * @format double + */ + price: number; + /** + * get_markets_structures_structure_id_range + * range string + */ + range: "station" | "region" | "solarsystem" | "1" | "2" | "3" | "4" | "5" | "10" | "20" | "30" | "40"; + /** + * get_markets_structures_structure_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + /** + * get_markets_structures_structure_id_volume_remain + * volume_remain integer + * @format int32 + */ + volume_remain: number; + /** + * get_markets_structures_structure_id_volume_total + * volume_total integer + * @format int32 + */ + volume_total: number; + }[], + | void + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/markets/structures/${structureId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Return a list of historical market statistics for the specified type in a region --- Alternate route: `/dev/markets/{region_id}/history/` Alternate route: `/legacy/markets/{region_id}/history/` Alternate route: `/v1/markets/{region_id}/history/` --- This route expires daily at 11:05 + * + * @tags Market + * @name GetMarketsRegionIdHistory + * @summary List historical market statistics in a region + * @request GET:/markets/{region_id}/history/ + */ + getMarketsRegionIdHistory: ( + regionId: number, + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Return statistics for this type + * @format int32 + */ + type_id: number; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_markets_region_id_history_average + * average number + * @format double + */ + average: number; + /** + * get_markets_region_id_history_date + * The date of this historical statistic entry + * @format date + */ + date: string; + /** + * get_markets_region_id_history_highest + * highest number + * @format double + */ + highest: number; + /** + * get_markets_region_id_history_lowest + * lowest number + * @format double + */ + lowest: number; + /** + * get_markets_region_id_history_order_count + * Total number of orders happened that day + * @format int64 + */ + order_count: number; + /** + * get_markets_region_id_history_volume + * Total + * @format int64 + */ + volume: number; + }[], + | void + | BadRequest + | { + /** + * get_markets_region_id_history_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | { + /** + * get_markets_region_id_history_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + | { + /** + * get_markets_region_id_history_520_error_520 + * Error 520 message + */ + error?: string; + } + >({ + path: `/markets/${regionId}/history/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of orders in a region --- Alternate route: `/dev/markets/{region_id}/orders/` Alternate route: `/legacy/markets/{region_id}/orders/` Alternate route: `/v1/markets/{region_id}/orders/` --- This route is cached for up to 300 seconds + * + * @tags Market + * @name GetMarketsRegionIdOrders + * @summary List orders in a region + * @request GET:/markets/{region_id}/orders/ + */ + getMarketsRegionIdOrders: ( + regionId: number, + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Filter buy/sell orders, return all orders by default. If you query without type_id, we always return both buy and sell orders + * @default "all" + */ + order_type: "buy" | "sell" | "all"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + /** + * Return orders only for this type + * @format int32 + */ + type_id?: number; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_markets_region_id_orders_duration + * duration integer + * @format int32 + */ + duration: number; + /** + * get_markets_region_id_orders_is_buy_order + * is_buy_order boolean + */ + is_buy_order: boolean; + /** + * get_markets_region_id_orders_issued + * issued string + * @format date-time + */ + issued: string; + /** + * get_markets_region_id_orders_location_id + * location_id integer + * @format int64 + */ + location_id: number; + /** + * get_markets_region_id_orders_min_volume + * min_volume integer + * @format int32 + */ + min_volume: number; + /** + * get_markets_region_id_orders_order_id + * order_id integer + * @format int64 + */ + order_id: number; + /** + * get_markets_region_id_orders_price + * price number + * @format double + */ + price: number; + /** + * get_markets_region_id_orders_range + * range string + */ + range: "station" | "region" | "solarsystem" | "1" | "2" | "3" | "4" | "5" | "10" | "20" | "30" | "40"; + /** + * get_markets_region_id_orders_system_id + * The solar system this order was placed + * @format int32 + */ + system_id: number; + /** + * get_markets_region_id_orders_type_id + * type_id integer + * @format int32 + */ + type_id: number; + /** + * get_markets_region_id_orders_volume_remain + * volume_remain integer + * @format int32 + */ + volume_remain: number; + /** + * get_markets_region_id_orders_volume_total + * volume_total integer + * @format int32 + */ + volume_total: number; + }[], + | void + | BadRequest + | { + /** + * get_markets_region_id_orders_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | { + /** + * get_markets_region_id_orders_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/markets/${regionId}/orders/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of type IDs that have active orders in the region, for efficient market indexing. --- Alternate route: `/dev/markets/{region_id}/types/` Alternate route: `/legacy/markets/{region_id}/types/` Alternate route: `/v1/markets/{region_id}/types/` --- This route is cached for up to 600 seconds + * + * @tags Market + * @name GetMarketsRegionIdTypes + * @summary List type IDs relevant to a market + * @request GET:/markets/{region_id}/types/ + */ + getMarketsRegionIdTypes: ( + regionId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/markets/${regionId}/types/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + opportunities = { + /** + * @description Return a list of opportunities groups --- Alternate route: `/dev/opportunities/groups/` Alternate route: `/legacy/opportunities/groups/` Alternate route: `/v1/opportunities/groups/` --- This route expires daily at 11:05 + * + * @tags Opportunities + * @name GetOpportunitiesGroups + * @summary Get opportunities groups + * @request GET:/opportunities/groups/ + */ + getOpportunitiesGroups: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/opportunities/groups/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return information of an opportunities group --- Alternate route: `/dev/opportunities/groups/{group_id}/` Alternate route: `/legacy/opportunities/groups/{group_id}/` Alternate route: `/v1/opportunities/groups/{group_id}/` --- This route expires daily at 11:05 + * + * @tags Opportunities + * @name GetOpportunitiesGroupsGroupId + * @summary Get opportunities group + * @request GET:/opportunities/groups/{group_id}/ + */ + getOpportunitiesGroupsGroupId: ( + groupId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_opportunities_groups_group_id_connected_groups + * The groups that are connected to this group on the opportunities map + * @maxItems 50 + */ + connected_groups: number[]; + /** + * get_opportunities_groups_group_id_description + * description string + */ + description: string; + /** + * get_opportunities_groups_group_id_group_id + * group_id integer + * @format int32 + */ + group_id: number; + /** + * get_opportunities_groups_group_id_name + * name string + */ + name: string; + /** + * get_opportunities_groups_group_id_notification + * notification string + */ + notification: string; + /** + * get_opportunities_groups_group_id_required_tasks + * Tasks need to complete for this group + * @maxItems 100 + */ + required_tasks: number[]; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/opportunities/groups/${groupId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of opportunities tasks --- Alternate route: `/dev/opportunities/tasks/` Alternate route: `/legacy/opportunities/tasks/` Alternate route: `/v1/opportunities/tasks/` --- This route expires daily at 11:05 + * + * @tags Opportunities + * @name GetOpportunitiesTasks + * @summary Get opportunities tasks + * @request GET:/opportunities/tasks/ + */ + getOpportunitiesTasks: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/opportunities/tasks/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return information of an opportunities task --- Alternate route: `/dev/opportunities/tasks/{task_id}/` Alternate route: `/legacy/opportunities/tasks/{task_id}/` Alternate route: `/v1/opportunities/tasks/{task_id}/` --- This route expires daily at 11:05 + * + * @tags Opportunities + * @name GetOpportunitiesTasksTaskId + * @summary Get opportunities task + * @request GET:/opportunities/tasks/{task_id}/ + */ + getOpportunitiesTasksTaskId: ( + taskId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_opportunities_tasks_task_id_description + * description string + */ + description: string; + /** + * get_opportunities_tasks_task_id_name + * name string + */ + name: string; + /** + * get_opportunities_tasks_task_id_notification + * notification string + */ + notification: string; + /** + * get_opportunities_tasks_task_id_task_id + * task_id integer + * @format int32 + */ + task_id: number; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/opportunities/tasks/${taskId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + route = { + /** + * @description Get the systems between origin and destination --- Alternate route: `/dev/route/{origin}/{destination}/` Alternate route: `/legacy/route/{origin}/{destination}/` Alternate route: `/v1/route/{origin}/{destination}/` --- This route is cached for up to 86400 seconds + * + * @tags Routes + * @name GetRouteOriginDestination + * @summary Get route + * @request GET:/route/{origin}/{destination}/ + */ + getRouteOriginDestination: ( + destination: number, + origin: number, + query?: { + /** + * avoid solar system ID(s) + * @maxItems 100 + * @uniqueItems true + */ + avoid?: number[]; + /** + * connected solar system pairs + * @maxItems 100 + * @uniqueItems true + */ + connections?: number[][]; + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * route security preference + * @default "shortest" + */ + flag?: "shortest" | "secure" | "insecure"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + | void + | BadRequest + | { + /** + * get_route_origin_destination_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/route/${origin}/${destination}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + sovereignty = { + /** + * @description Shows sovereignty data for campaigns. --- Alternate route: `/dev/sovereignty/campaigns/` Alternate route: `/legacy/sovereignty/campaigns/` Alternate route: `/v1/sovereignty/campaigns/` --- This route is cached for up to 5 seconds + * + * @tags Sovereignty + * @name GetSovereigntyCampaigns + * @summary List sovereignty campaigns + * @request GET:/sovereignty/campaigns/ + */ + getSovereigntyCampaigns: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_sovereignty_campaigns_attackers_score + * Score for all attacking parties, only present in Defense Events. + * @format float + */ + attackers_score?: number; + /** + * get_sovereignty_campaigns_campaign_id + * Unique ID for this campaign. + * @format int32 + */ + campaign_id: number; + /** + * get_sovereignty_campaigns_constellation_id + * The constellation in which the campaign will take place. + * @format int32 + */ + constellation_id: number; + /** + * get_sovereignty_campaigns_defender_id + * Defending alliance, only present in Defense Events + * @format int32 + */ + defender_id?: number; + /** + * get_sovereignty_campaigns_defender_score + * Score for the defending alliance, only present in Defense Events. + * @format float + */ + defender_score?: number; + /** + * get_sovereignty_campaigns_event_type + * Type of event this campaign is for. tcu_defense, ihub_defense and station_defense are referred to as "Defense Events", station_freeport as "Freeport Events". + */ + event_type: "tcu_defense" | "ihub_defense" | "station_defense" | "station_freeport"; + /** + * get_sovereignty_campaigns_participants + * Alliance participating and their respective scores, only present in Freeport Events. + * @maxItems 5000 + */ + participants?: { + /** + * get_sovereignty_campaigns_alliance_id + * alliance_id integer + * @format int32 + */ + alliance_id: number; + /** + * get_sovereignty_campaigns_score + * score number + * @format float + */ + score: number; + }[]; + /** + * get_sovereignty_campaigns_solar_system_id + * The solar system the structure is located in. + * @format int32 + */ + solar_system_id: number; + /** + * get_sovereignty_campaigns_start_time + * Time the event is scheduled to start. + * @format date-time + */ + start_time: string; + /** + * get_sovereignty_campaigns_structure_id + * The structure item ID that is related to this campaign. + * @format int64 + */ + structure_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/sovereignty/campaigns/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Shows sovereignty information for solar systems --- Alternate route: `/dev/sovereignty/map/` Alternate route: `/legacy/sovereignty/map/` Alternate route: `/v1/sovereignty/map/` --- This route is cached for up to 3600 seconds + * + * @tags Sovereignty + * @name GetSovereigntyMap + * @summary List sovereignty of systems + * @request GET:/sovereignty/map/ + */ + getSovereigntyMap: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_sovereignty_map_alliance_id + * alliance_id integer + * @format int32 + */ + alliance_id?: number; + /** + * get_sovereignty_map_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + /** + * get_sovereignty_map_faction_id + * faction_id integer + * @format int32 + */ + faction_id?: number; + /** + * get_sovereignty_map_system_id + * system_id integer + * @format int32 + */ + system_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/sovereignty/map/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Shows sovereignty data for structures. --- Alternate route: `/dev/sovereignty/structures/` Alternate route: `/legacy/sovereignty/structures/` Alternate route: `/v1/sovereignty/structures/` --- This route is cached for up to 120 seconds + * + * @tags Sovereignty + * @name GetSovereigntyStructures + * @summary List sovereignty structures + * @request GET:/sovereignty/structures/ + */ + getSovereigntyStructures: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_sovereignty_structures_alliance_id + * The alliance that owns the structure. + * @format int32 + */ + alliance_id: number; + /** + * get_sovereignty_structures_solar_system_id + * Solar system in which the structure is located. + * @format int32 + */ + solar_system_id: number; + /** + * get_sovereignty_structures_structure_id + * Unique item ID for this structure. + * @format int64 + */ + structure_id: number; + /** + * get_sovereignty_structures_structure_type_id + * A reference to the type of structure this is. + * @format int32 + */ + structure_type_id: number; + /** + * get_sovereignty_structures_vulnerability_occupancy_level + * The occupancy level for the next or current vulnerability window. This takes into account all development indexes and capital system bonuses. Also known as Activity Defense Multiplier from in the client. It increases the time that attackers must spend using their entosis links on the structure. + * @format float + */ + vulnerability_occupancy_level?: number; + /** + * get_sovereignty_structures_vulnerable_end_time + * The time at which the next or current vulnerability window ends. At the end of a vulnerability window the next window is recalculated and locked in along with the vulnerabilityOccupancyLevel. If the structure is not in 100% entosis control of the defender, it will go in to 'overtime' and stay vulnerable for as long as that situation persists. Only once the defenders have 100% entosis control and has the vulnerableEndTime passed does the vulnerability interval expire and a new one is calculated. + * @format date-time + */ + vulnerable_end_time?: string; + /** + * get_sovereignty_structures_vulnerable_start_time + * The next time at which the structure will become vulnerable. Or the start time of the current window if current time is between this and vulnerableEndTime. + * @format date-time + */ + vulnerable_start_time?: string; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/sovereignty/structures/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + status = { + /** + * @description EVE Server status --- Alternate route: `/dev/status/` Alternate route: `/legacy/status/` Alternate route: `/v1/status/` Alternate route: `/v2/status/` --- This route is cached for up to 30 seconds + * + * @tags Status + * @name GetStatus + * @summary Retrieve the uptime and player counts + * @request GET:/status/ + */ + getStatus: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_status_players + * Current online player count + */ + players: number; + /** + * get_status_server_version + * Running version as string + */ + server_version: string; + /** + * get_status_start_time + * Server start timestamp + * @format date-time + */ + start_time: string; + /** + * get_status_vip + * If the server is in VIP mode + */ + vip?: boolean; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/status/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + ui = { + /** + * @description Set a solar system as autopilot waypoint --- Alternate route: `/dev/ui/autopilot/waypoint/` Alternate route: `/legacy/ui/autopilot/waypoint/` Alternate route: `/v2/ui/autopilot/waypoint/` + * + * @tags User Interface + * @name PostUiAutopilotWaypoint + * @summary Set Autopilot Waypoint + * @request POST:/ui/autopilot/waypoint/ + * @secure + */ + postUiAutopilotWaypoint: ( + query: { + /** + * Whether this solar system should be added to the beginning of all waypoints + * @default false + */ + add_to_beginning: boolean; + /** + * Whether clean other waypoints beforing adding this one + * @default false + */ + clear_other_waypoints: boolean; + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * The destination to travel to, can be solar system, station or structure's id + * @format int64 + */ + destination_id: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/ui/autopilot/waypoint/`, + method: "POST", + query: query, + secure: true, + ...params, + }), + + /** + * @description Open the contract window inside the client --- Alternate route: `/dev/ui/openwindow/contract/` Alternate route: `/legacy/ui/openwindow/contract/` Alternate route: `/v1/ui/openwindow/contract/` + * + * @tags User Interface + * @name PostUiOpenwindowContract + * @summary Open Contract Window + * @request POST:/ui/openwindow/contract/ + * @secure + */ + postUiOpenwindowContract: ( + query: { + /** + * The contract to open + * @format int32 + */ + contract_id: number; + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/ui/openwindow/contract/`, + method: "POST", + query: query, + secure: true, + ...params, + }), + + /** + * @description Open the information window for a character, corporation or alliance inside the client --- Alternate route: `/dev/ui/openwindow/information/` Alternate route: `/legacy/ui/openwindow/information/` Alternate route: `/v1/ui/openwindow/information/` + * + * @tags User Interface + * @name PostUiOpenwindowInformation + * @summary Open Information Window + * @request POST:/ui/openwindow/information/ + * @secure + */ + postUiOpenwindowInformation: ( + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * The target to open + * @format int32 + */ + target_id: number; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/ui/openwindow/information/`, + method: "POST", + query: query, + secure: true, + ...params, + }), + + /** + * @description Open the market details window for a specific typeID inside the client --- Alternate route: `/dev/ui/openwindow/marketdetails/` Alternate route: `/legacy/ui/openwindow/marketdetails/` Alternate route: `/v1/ui/openwindow/marketdetails/` + * + * @tags User Interface + * @name PostUiOpenwindowMarketdetails + * @summary Open Market Details + * @request POST:/ui/openwindow/marketdetails/ + * @secure + */ + postUiOpenwindowMarketdetails: ( + query: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + /** + * The item type to open in market window + * @format int32 + */ + type_id: number; + }, + params: RequestParams = {}, + ) => + this.request< + void, + BadRequest | Unauthorized | Forbidden | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/ui/openwindow/marketdetails/`, + method: "POST", + query: query, + secure: true, + ...params, + }), + + /** + * @description Open the New Mail window, according to settings from the request if applicable --- Alternate route: `/dev/ui/openwindow/newmail/` Alternate route: `/legacy/ui/openwindow/newmail/` Alternate route: `/v1/ui/openwindow/newmail/` + * + * @tags User Interface + * @name PostUiOpenwindowNewmail + * @summary Open New Mail Window + * @request POST:/ui/openwindow/newmail/ + * @secure + */ + postUiOpenwindowNewmail: ( + new_mail: { + /** + * post_ui_openwindow_newmail_body + * body string + * @maxLength 10000 + */ + body: string; + /** + * post_ui_openwindow_newmail_recipients + * recipients array + * @maxItems 50 + * @minItems 1 + */ + recipients: number[]; + /** + * post_ui_openwindow_newmail_subject + * subject string + * @maxLength 1000 + */ + subject: string; + /** + * post_ui_openwindow_newmail_to_corp_or_alliance_id + * to_corp_or_alliance_id integer + * @format int32 + */ + to_corp_or_alliance_id?: number; + /** + * post_ui_openwindow_newmail_to_mailing_list_id + * Corporations, alliances and mailing lists are all types of mailing groups. You may only send to one mailing group, at a time, so you may fill out either this field or the to_corp_or_alliance_ids field + * @format int32 + */ + to_mailing_list_id?: number; + }, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + void, + | BadRequest + | Unauthorized + | Forbidden + | ErrorLimited + | { + /** + * post_ui_openwindow_newmail_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/ui/openwindow/newmail/`, + method: "POST", + query: query, + body: new_mail, + secure: true, + type: ContentType.Json, + ...params, + }), + }; + universe = { + /** + * @description Get all character ancestries --- Alternate route: `/legacy/universe/ancestries/` Alternate route: `/v1/universe/ancestries/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseAncestries + * @summary Get ancestries + * @request GET:/universe/ancestries/ + */ + getUniverseAncestries: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_ancestries_bloodline_id + * The bloodline associated with this ancestry + * @format int32 + */ + bloodline_id: number; + /** + * get_universe_ancestries_description + * description string + */ + description: string; + /** + * get_universe_ancestries_icon_id + * icon_id integer + * @format int32 + */ + icon_id?: number; + /** + * get_universe_ancestries_id + * id integer + * @format int32 + */ + id: number; + /** + * get_universe_ancestries_name + * name string + */ + name: string; + /** + * get_universe_ancestries_short_description + * short_description string + */ + short_description?: string; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/ancestries/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on an asteroid belt --- Alternate route: `/legacy/universe/asteroid_belts/{asteroid_belt_id}/` Alternate route: `/v1/universe/asteroid_belts/{asteroid_belt_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseAsteroidBeltsAsteroidBeltId + * @summary Get asteroid belt information + * @request GET:/universe/asteroid_belts/{asteroid_belt_id}/ + */ + getUniverseAsteroidBeltsAsteroidBeltId: ( + asteroidBeltId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_asteroid_belts_asteroid_belt_id_name + * name string + */ + name: string; + /** + * get_universe_asteroid_belts_asteroid_belt_id_position + * position object + */ + position: { + /** + * get_universe_asteroid_belts_asteroid_belt_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_asteroid_belts_asteroid_belt_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_asteroid_belts_asteroid_belt_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_asteroid_belts_asteroid_belt_id_system_id + * The solar system this asteroid belt is in + * @format int32 + */ + system_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_asteroid_belts_asteroid_belt_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/asteroid_belts/${asteroidBeltId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of bloodlines --- Alternate route: `/legacy/universe/bloodlines/` Alternate route: `/v1/universe/bloodlines/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseBloodlines + * @summary Get bloodlines + * @request GET:/universe/bloodlines/ + */ + getUniverseBloodlines: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_bloodlines_bloodline_id + * bloodline_id integer + * @format int32 + */ + bloodline_id: number; + /** + * get_universe_bloodlines_charisma + * charisma integer + * @format int32 + */ + charisma: number; + /** + * get_universe_bloodlines_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id: number; + /** + * get_universe_bloodlines_description + * description string + */ + description: string; + /** + * get_universe_bloodlines_intelligence + * intelligence integer + * @format int32 + */ + intelligence: number; + /** + * get_universe_bloodlines_memory + * memory integer + * @format int32 + */ + memory: number; + /** + * get_universe_bloodlines_name + * name string + */ + name: string; + /** + * get_universe_bloodlines_perception + * perception integer + * @format int32 + */ + perception: number; + /** + * get_universe_bloodlines_race_id + * race_id integer + * @format int32 + */ + race_id: number; + /** + * get_universe_bloodlines_ship_type_id + * ship_type_id integer + * @format int32 + */ + ship_type_id?: number | null; + /** + * get_universe_bloodlines_willpower + * willpower integer + * @format int32 + */ + willpower: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/bloodlines/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of item categories --- Alternate route: `/legacy/universe/categories/` Alternate route: `/v1/universe/categories/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseCategories + * @summary Get item categories + * @request GET:/universe/categories/ + */ + getUniverseCategories: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/categories/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information of an item category --- Alternate route: `/legacy/universe/categories/{category_id}/` Alternate route: `/v1/universe/categories/{category_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseCategoriesCategoryId + * @summary Get item category information + * @request GET:/universe/categories/{category_id}/ + */ + getUniverseCategoriesCategoryId: ( + categoryId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_categories_category_id_category_id + * category_id integer + * @format int32 + */ + category_id: number; + /** + * get_universe_categories_category_id_groups + * groups array + * @maxItems 10000 + */ + groups: number[]; + /** + * get_universe_categories_category_id_name + * name string + */ + name: string; + /** + * get_universe_categories_category_id_published + * published boolean + */ + published: boolean; + }, + | void + | BadRequest + | { + /** + * get_universe_categories_category_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/categories/${categoryId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of constellations --- Alternate route: `/legacy/universe/constellations/` Alternate route: `/v1/universe/constellations/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseConstellations + * @summary Get constellations + * @request GET:/universe/constellations/ + */ + getUniverseConstellations: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/constellations/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a constellation --- Alternate route: `/legacy/universe/constellations/{constellation_id}/` Alternate route: `/v1/universe/constellations/{constellation_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseConstellationsConstellationId + * @summary Get constellation information + * @request GET:/universe/constellations/{constellation_id}/ + */ + getUniverseConstellationsConstellationId: ( + constellationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_constellations_constellation_id_constellation_id + * constellation_id integer + * @format int32 + */ + constellation_id: number; + /** + * get_universe_constellations_constellation_id_name + * name string + */ + name: string; + /** + * get_universe_constellations_constellation_id_position + * position object + */ + position: { + /** + * get_universe_constellations_constellation_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_constellations_constellation_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_constellations_constellation_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_constellations_constellation_id_region_id + * The region this constellation is in + * @format int32 + */ + region_id: number; + /** + * get_universe_constellations_constellation_id_systems + * systems array + * @maxItems 10000 + */ + systems: number[]; + }, + | void + | BadRequest + | { + /** + * get_universe_constellations_constellation_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/constellations/${constellationId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of factions --- Alternate route: `/dev/universe/factions/` Alternate route: `/v2/universe/factions/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseFactions + * @summary Get factions + * @request GET:/universe/factions/ + */ + getUniverseFactions: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_factions_corporation_id + * corporation_id integer + * @format int32 + */ + corporation_id?: number; + /** + * get_universe_factions_description + * description string + */ + description: string; + /** + * get_universe_factions_faction_id + * faction_id integer + * @format int32 + */ + faction_id: number; + /** + * get_universe_factions_is_unique + * is_unique boolean + */ + is_unique: boolean; + /** + * get_universe_factions_militia_corporation_id + * militia_corporation_id integer + * @format int32 + */ + militia_corporation_id?: number; + /** + * get_universe_factions_name + * name string + */ + name: string; + /** + * get_universe_factions_size_factor + * size_factor number + * @format float + */ + size_factor: number; + /** + * get_universe_factions_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id?: number; + /** + * get_universe_factions_station_count + * station_count integer + * @format int32 + */ + station_count: number; + /** + * get_universe_factions_station_system_count + * station_system_count integer + * @format int32 + */ + station_system_count: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/factions/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of graphics --- Alternate route: `/legacy/universe/graphics/` Alternate route: `/v1/universe/graphics/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseGraphics + * @summary Get graphics + * @request GET:/universe/graphics/ + */ + getUniverseGraphics: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/graphics/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a graphic --- Alternate route: `/dev/universe/graphics/{graphic_id}/` Alternate route: `/legacy/universe/graphics/{graphic_id}/` Alternate route: `/v1/universe/graphics/{graphic_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseGraphicsGraphicId + * @summary Get graphic information + * @request GET:/universe/graphics/{graphic_id}/ + */ + getUniverseGraphicsGraphicId: ( + graphicId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_graphics_graphic_id_collision_file + * collision_file string + */ + collision_file?: string; + /** + * get_universe_graphics_graphic_id_graphic_file + * graphic_file string + */ + graphic_file?: string; + /** + * get_universe_graphics_graphic_id_graphic_id + * graphic_id integer + * @format int32 + */ + graphic_id: number; + /** + * get_universe_graphics_graphic_id_icon_folder + * icon_folder string + */ + icon_folder?: string; + /** + * get_universe_graphics_graphic_id_sof_dna + * sof_dna string + */ + sof_dna?: string; + /** + * get_universe_graphics_graphic_id_sof_fation_name + * sof_fation_name string + */ + sof_fation_name?: string; + /** + * get_universe_graphics_graphic_id_sof_hull_name + * sof_hull_name string + */ + sof_hull_name?: string; + /** + * get_universe_graphics_graphic_id_sof_race_name + * sof_race_name string + */ + sof_race_name?: string; + }, + | void + | BadRequest + | { + /** + * get_universe_graphics_graphic_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/graphics/${graphicId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of item groups --- Alternate route: `/legacy/universe/groups/` Alternate route: `/v1/universe/groups/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseGroups + * @summary Get item groups + * @request GET:/universe/groups/ + */ + getUniverseGroups: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/groups/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on an item group --- Alternate route: `/dev/universe/groups/{group_id}/` Alternate route: `/legacy/universe/groups/{group_id}/` Alternate route: `/v1/universe/groups/{group_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseGroupsGroupId + * @summary Get item group information + * @request GET:/universe/groups/{group_id}/ + */ + getUniverseGroupsGroupId: ( + groupId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_groups_group_id_category_id + * category_id integer + * @format int32 + */ + category_id: number; + /** + * get_universe_groups_group_id_group_id + * group_id integer + * @format int32 + */ + group_id: number; + /** + * get_universe_groups_group_id_name + * name string + */ + name: string; + /** + * get_universe_groups_group_id_published + * published boolean + */ + published: boolean; + /** + * get_universe_groups_group_id_types + * types array + * @maxItems 10000 + */ + types: number[]; + }, + | void + | BadRequest + | { + /** + * get_universe_groups_group_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/groups/${groupId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Resolve a set of names to IDs in the following categories: agents, alliances, characters, constellations, corporations factions, inventory_types, regions, stations, and systems. Only exact matches will be returned. All names searched for are cached for 12 hours --- Alternate route: `/dev/universe/ids/` Alternate route: `/legacy/universe/ids/` Alternate route: `/v1/universe/ids/` + * + * @tags Universe + * @name PostUniverseIds + * @summary Bulk names to IDs + * @request POST:/universe/ids/ + */ + postUniverseIds: ( + names: string[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_universe_ids_agents + * agents array + * @maxItems 500 + */ + agents?: { + /** + * post_universe_ids_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_alliances + * alliances array + * @maxItems 500 + */ + alliances?: { + /** + * post_universe_ids_alliance_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_alliance_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_characters + * characters array + * @maxItems 500 + */ + characters?: { + /** + * post_universe_ids_character_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_character_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_constellations + * constellations array + * @maxItems 500 + */ + constellations?: { + /** + * post_universe_ids_constellation_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_constellation_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_corporations + * corporations array + * @maxItems 500 + */ + corporations?: { + /** + * post_universe_ids_corporation_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_corporation_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_factions + * factions array + * @maxItems 500 + */ + factions?: { + /** + * post_universe_ids_faction_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_faction_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_inventory_types + * inventory_types array + * @maxItems 500 + */ + inventory_types?: { + /** + * post_universe_ids_inventory_type_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_inventory_type_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_regions + * regions array + * @maxItems 500 + */ + regions?: { + /** + * post_universe_ids_region_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_region_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_stations + * stations array + * @maxItems 500 + */ + stations?: { + /** + * post_universe_ids_station_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_station_name + * name string + */ + name?: string; + }[]; + /** + * post_universe_ids_systems + * systems array + * @maxItems 500 + */ + systems?: { + /** + * post_universe_ids_system_id + * id integer + * @format int32 + */ + id?: number; + /** + * post_universe_ids_system_name + * name string + */ + name?: string; + }[]; + }, + BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/ids/`, + method: "POST", + query: query, + body: names, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Get information on a moon --- Alternate route: `/legacy/universe/moons/{moon_id}/` Alternate route: `/v1/universe/moons/{moon_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseMoonsMoonId + * @summary Get moon information + * @request GET:/universe/moons/{moon_id}/ + */ + getUniverseMoonsMoonId: ( + moonId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_moons_moon_id_moon_id + * moon_id integer + * @format int32 + */ + moon_id: number; + /** + * get_universe_moons_moon_id_name + * name string + */ + name: string; + /** + * get_universe_moons_moon_id_position + * position object + */ + position: { + /** + * get_universe_moons_moon_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_moons_moon_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_moons_moon_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_moons_moon_id_system_id + * The solar system this moon is in + * @format int32 + */ + system_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_moons_moon_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/moons/${moonId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Resolve a set of IDs to names and categories. Supported ID's for resolving are: Characters, Corporations, Alliances, Stations, Solar Systems, Constellations, Regions, Types, Factions --- Alternate route: `/dev/universe/names/` Alternate route: `/v3/universe/names/` + * + * @tags Universe + * @name PostUniverseNames + * @summary Get names and categories for a set of IDs + * @request POST:/universe/names/ + */ + postUniverseNames: ( + ids: number[], + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * post_universe_names_category + * category string + */ + category: + | "alliance" + | "character" + | "constellation" + | "corporation" + | "inventory_type" + | "region" + | "solar_system" + | "station" + | "faction"; + /** + * post_universe_names_id + * id integer + * @format int32 + */ + id: number; + /** + * post_universe_names_name + * name string + */ + name: string; + }[], + | BadRequest + | { + /** + * post_universe_names_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/names/`, + method: "POST", + query: query, + body: ids, + type: ContentType.Json, + format: "json", + ...params, + }), + + /** + * @description Get information on a planet --- Alternate route: `/legacy/universe/planets/{planet_id}/` Alternate route: `/v1/universe/planets/{planet_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniversePlanetsPlanetId + * @summary Get planet information + * @request GET:/universe/planets/{planet_id}/ + */ + getUniversePlanetsPlanetId: ( + planetId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_planets_planet_id_name + * name string + */ + name: string; + /** + * get_universe_planets_planet_id_planet_id + * planet_id integer + * @format int32 + */ + planet_id: number; + /** + * get_universe_planets_planet_id_position + * position object + */ + position: { + /** + * get_universe_planets_planet_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_planets_planet_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_planets_planet_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_planets_planet_id_system_id + * The solar system this planet is in + * @format int32 + */ + system_id: number; + /** + * get_universe_planets_planet_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_planets_planet_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/planets/${planetId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of character races --- Alternate route: `/dev/universe/races/` Alternate route: `/legacy/universe/races/` Alternate route: `/v1/universe/races/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseRaces + * @summary Get character races + * @request GET:/universe/races/ + */ + getUniverseRaces: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_races_alliance_id + * The alliance generally associated with this race + * @format int32 + */ + alliance_id: number; + /** + * get_universe_races_description + * description string + */ + description: string; + /** + * get_universe_races_name + * name string + */ + name: string; + /** + * get_universe_races_race_id + * race_id integer + * @format int32 + */ + race_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/races/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of regions --- Alternate route: `/legacy/universe/regions/` Alternate route: `/v1/universe/regions/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseRegions + * @summary Get regions + * @request GET:/universe/regions/ + */ + getUniverseRegions: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/regions/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a region --- Alternate route: `/legacy/universe/regions/{region_id}/` Alternate route: `/v1/universe/regions/{region_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseRegionsRegionId + * @summary Get region information + * @request GET:/universe/regions/{region_id}/ + */ + getUniverseRegionsRegionId: ( + regionId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_regions_region_id_constellations + * constellations array + * @maxItems 1000 + */ + constellations: number[]; + /** + * get_universe_regions_region_id_description + * description string + */ + description?: string; + /** + * get_universe_regions_region_id_name + * name string + */ + name: string; + /** + * get_universe_regions_region_id_region_id + * region_id integer + * @format int32 + */ + region_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_regions_region_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/regions/${regionId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a planetary factory schematic --- Alternate route: `/dev/universe/schematics/{schematic_id}/` Alternate route: `/legacy/universe/schematics/{schematic_id}/` Alternate route: `/v1/universe/schematics/{schematic_id}/` --- This route is cached for up to 3600 seconds + * + * @tags Planetary Interaction + * @name GetUniverseSchematicsSchematicId + * @summary Get schematic information + * @request GET:/universe/schematics/{schematic_id}/ + */ + getUniverseSchematicsSchematicId: ( + schematicId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_schematics_schematic_id_cycle_time + * Time in seconds to process a run + * @format int32 + */ + cycle_time: number; + /** + * get_universe_schematics_schematic_id_schematic_name + * schematic_name string + */ + schematic_name: string; + }, + | void + | BadRequest + | { + /** + * get_universe_schematics_schematic_id_error + * error message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/schematics/${schematicId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a stargate --- Alternate route: `/legacy/universe/stargates/{stargate_id}/` Alternate route: `/v1/universe/stargates/{stargate_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseStargatesStargateId + * @summary Get stargate information + * @request GET:/universe/stargates/{stargate_id}/ + */ + getUniverseStargatesStargateId: ( + stargateId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_stargates_stargate_id_destination + * destination object + */ + destination: { + /** + * get_universe_stargates_stargate_id_destination_stargate_id + * The stargate this stargate connects to + * @format int32 + */ + stargate_id: number; + /** + * get_universe_stargates_stargate_id_destination_system_id + * The solar system this stargate connects to + * @format int32 + */ + system_id: number; + }; + /** + * get_universe_stargates_stargate_id_name + * name string + */ + name: string; + /** + * get_universe_stargates_stargate_id_position + * position object + */ + position: { + /** + * get_universe_stargates_stargate_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_stargates_stargate_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_stargates_stargate_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_stargates_stargate_id_stargate_id + * stargate_id integer + * @format int32 + */ + stargate_id: number; + /** + * get_universe_stargates_stargate_id_system_id + * The solar system this stargate is in + * @format int32 + */ + system_id: number; + /** + * get_universe_stargates_stargate_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_stargates_stargate_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/stargates/${stargateId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a star --- Alternate route: `/legacy/universe/stars/{star_id}/` Alternate route: `/v1/universe/stars/{star_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseStarsStarId + * @summary Get star information + * @request GET:/universe/stars/{star_id}/ + */ + getUniverseStarsStarId: ( + starId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_stars_star_id_age + * Age of star in years + * @format int64 + */ + age: number; + /** + * get_universe_stars_star_id_luminosity + * luminosity number + * @format float + */ + luminosity: number; + /** + * get_universe_stars_star_id_name + * name string + */ + name: string; + /** + * get_universe_stars_star_id_radius + * radius integer + * @format int64 + */ + radius: number; + /** + * get_universe_stars_star_id_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + /** + * get_universe_stars_star_id_spectral_class + * spectral_class string + */ + spectral_class: + | "K2 V" + | "K4 V" + | "G2 V" + | "G8 V" + | "M7 V" + | "K7 V" + | "M2 V" + | "K5 V" + | "M3 V" + | "G0 V" + | "G7 V" + | "G3 V" + | "F9 V" + | "G5 V" + | "F6 V" + | "K8 V" + | "K9 V" + | "K6 V" + | "G9 V" + | "G6 V" + | "G4 VI" + | "G4 V" + | "F8 V" + | "F2 V" + | "F1 V" + | "K3 V" + | "F0 VI" + | "G1 VI" + | "G0 VI" + | "K1 V" + | "M4 V" + | "M1 V" + | "M6 V" + | "M0 V" + | "K2 IV" + | "G2 VI" + | "K0 V" + | "K5 IV" + | "F5 VI" + | "G6 VI" + | "F6 VI" + | "F2 IV" + | "G3 VI" + | "M8 V" + | "F1 VI" + | "K1 IV" + | "F7 V" + | "G5 VI" + | "M5 V" + | "G7 VI" + | "F5 V" + | "F4 VI" + | "F8 VI" + | "K3 IV" + | "F4 IV" + | "F0 V" + | "G7 IV" + | "G8 VI" + | "F2 VI" + | "F4 V" + | "F7 VI" + | "F3 V" + | "G1 V" + | "G9 VI" + | "F3 IV" + | "F9 VI" + | "M9 V" + | "K0 IV" + | "F1 IV" + | "G4 IV" + | "F3 VI" + | "K4 IV" + | "G5 IV" + | "G3 IV" + | "G1 IV" + | "K7 IV" + | "G0 IV" + | "K6 IV" + | "K9 IV" + | "G2 IV" + | "F9 IV" + | "F0 IV" + | "K8 IV" + | "G8 IV" + | "F6 IV" + | "F5 IV" + | "A0" + | "A0IV" + | "A0IV2"; + /** + * get_universe_stars_star_id_temperature + * temperature integer + * @format int32 + */ + temperature: number; + /** + * get_universe_stars_star_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }, + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/stars/${starId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a station --- Alternate route: `/dev/universe/stations/{station_id}/` Alternate route: `/v2/universe/stations/{station_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseStationsStationId + * @summary Get station information + * @request GET:/universe/stations/{station_id}/ + */ + getUniverseStationsStationId: ( + stationId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_stations_station_id_max_dockable_ship_volume + * max_dockable_ship_volume number + * @format float + */ + max_dockable_ship_volume: number; + /** + * get_universe_stations_station_id_name + * name string + */ + name: string; + /** + * get_universe_stations_station_id_office_rental_cost + * office_rental_cost number + * @format float + */ + office_rental_cost: number; + /** + * get_universe_stations_station_id_owner + * ID of the corporation that controls this station + * @format int32 + */ + owner?: number; + /** + * get_universe_stations_station_id_position + * position object + */ + position: { + /** + * get_universe_stations_station_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_stations_station_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_stations_station_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_stations_station_id_race_id + * race_id integer + * @format int32 + */ + race_id?: number; + /** + * get_universe_stations_station_id_reprocessing_efficiency + * reprocessing_efficiency number + * @format float + */ + reprocessing_efficiency: number; + /** + * get_universe_stations_station_id_reprocessing_stations_take + * reprocessing_stations_take number + * @format float + */ + reprocessing_stations_take: number; + /** + * get_universe_stations_station_id_services + * services array + * @maxItems 30 + */ + services: ( + | "bounty-missions" + | "assasination-missions" + | "courier-missions" + | "interbus" + | "reprocessing-plant" + | "refinery" + | "market" + | "black-market" + | "stock-exchange" + | "cloning" + | "surgery" + | "dna-therapy" + | "repair-facilities" + | "factory" + | "labratory" + | "gambling" + | "fitting" + | "paintshop" + | "news" + | "storage" + | "insurance" + | "docking" + | "office-rental" + | "jump-clone-facility" + | "loyalty-point-store" + | "navy-offices" + | "security-offices" + )[]; + /** + * get_universe_stations_station_id_station_id + * station_id integer + * @format int32 + */ + station_id: number; + /** + * get_universe_stations_station_id_system_id + * The solar system this station is in + * @format int32 + */ + system_id: number; + /** + * get_universe_stations_station_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_stations_station_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/stations/${stationId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description List all public structures --- Alternate route: `/dev/universe/structures/` Alternate route: `/legacy/universe/structures/` Alternate route: `/v1/universe/structures/` --- This route is cached for up to 3600 seconds + * + * @tags Universe + * @name GetUniverseStructures + * @summary List all public structures + * @request GET:/universe/structures/ + */ + getUniverseStructures: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Only list public structures that have this service online */ + filter?: "market" | "manufacturing_basic"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/structures/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs. --- Alternate route: `/v2/universe/structures/{structure_id}/` --- This route is cached for up to 3600 seconds + * + * @tags Universe + * @name GetUniverseStructuresStructureId + * @summary Get structure information + * @request GET:/universe/structures/{structure_id}/ + * @secure + */ + getUniverseStructuresStructureId: ( + structureId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** Access token to use if unable to set a header */ + token?: string; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_structures_structure_id_name + * The full name of the structure + */ + name: string; + /** + * get_universe_structures_structure_id_owner_id + * The ID of the corporation who owns this particular structure + * @format int32 + */ + owner_id: number; + /** + * get_universe_structures_structure_id_position + * Coordinates of the structure in Cartesian space relative to the Sun, in metres. + */ + position?: { + /** + * get_universe_structures_structure_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_structures_structure_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_structures_structure_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_structures_structure_id_solar_system_id + * solar_system_id integer + * @format int32 + */ + solar_system_id: number; + /** + * get_universe_structures_structure_id_type_id + * type_id integer + * @format int32 + */ + type_id?: number; + }, + | void + | BadRequest + | Unauthorized + | Forbidden + | { + /** + * get_universe_structures_structure_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/structures/${structureId}/`, + method: "GET", + query: query, + secure: true, + format: "json", + ...params, + }), + + /** + * @description Get the number of jumps in solar systems within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with jumps will be listed --- Alternate route: `/legacy/universe/system_jumps/` Alternate route: `/v1/universe/system_jumps/` --- This route is cached for up to 3600 seconds + * + * @tags Universe + * @name GetUniverseSystemJumps + * @summary Get system jumps + * @request GET:/universe/system_jumps/ + */ + getUniverseSystemJumps: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_system_jumps_ship_jumps + * ship_jumps integer + * @format int32 + */ + ship_jumps: number; + /** + * get_universe_system_jumps_system_id + * system_id integer + * @format int32 + */ + system_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/system_jumps/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get the number of ship, pod and NPC kills per solar system within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with kills will be listed --- Alternate route: `/v2/universe/system_kills/` --- This route is cached for up to 3600 seconds + * + * @tags Universe + * @name GetUniverseSystemKills + * @summary Get system kills + * @request GET:/universe/system_kills/ + */ + getUniverseSystemKills: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_system_kills_npc_kills + * Number of NPC ships killed in this system + * @format int32 + */ + npc_kills: number; + /** + * get_universe_system_kills_pod_kills + * Number of pods killed in this system + * @format int32 + */ + pod_kills: number; + /** + * get_universe_system_kills_ship_kills + * Number of player ships killed in this system + * @format int32 + */ + ship_kills: number; + /** + * get_universe_system_kills_system_id + * system_id integer + * @format int32 + */ + system_id: number; + }[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/system_kills/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of solar systems --- Alternate route: `/dev/universe/systems/` Alternate route: `/legacy/universe/systems/` Alternate route: `/v1/universe/systems/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseSystems + * @summary Get solar systems + * @request GET:/universe/systems/ + */ + getUniverseSystems: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/systems/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a solar system. --- Alternate route: `/dev/universe/systems/{system_id}/` Alternate route: `/v4/universe/systems/{system_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseSystemsSystemId + * @summary Get solar system information + * @request GET:/universe/systems/{system_id}/ + */ + getUniverseSystemsSystemId: ( + systemId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_systems_system_id_constellation_id + * The constellation this solar system is in + * @format int32 + */ + constellation_id: number; + /** + * get_universe_systems_system_id_name + * name string + */ + name: string; + /** + * get_universe_systems_system_id_planets + * planets array + * @maxItems 1000 + */ + planets?: { + /** + * get_universe_systems_system_id_asteroid_belts + * asteroid_belts array + * @maxItems 100 + */ + asteroid_belts?: number[]; + /** + * get_universe_systems_system_id_moons + * moons array + * @maxItems 1000 + */ + moons?: number[]; + /** + * get_universe_systems_system_id_planet_id + * planet_id integer + * @format int32 + */ + planet_id: number; + }[]; + /** + * get_universe_systems_system_id_position + * position object + */ + position: { + /** + * get_universe_systems_system_id_x + * x number + * @format double + */ + x: number; + /** + * get_universe_systems_system_id_y + * y number + * @format double + */ + y: number; + /** + * get_universe_systems_system_id_z + * z number + * @format double + */ + z: number; + }; + /** + * get_universe_systems_system_id_security_class + * security_class string + */ + security_class?: string; + /** + * get_universe_systems_system_id_security_status + * security_status number + * @format float + */ + security_status: number; + /** + * get_universe_systems_system_id_star_id + * star_id integer + * @format int32 + */ + star_id?: number; + /** + * get_universe_systems_system_id_stargates + * stargates array + * @maxItems 25 + */ + stargates?: number[]; + /** + * get_universe_systems_system_id_stations + * stations array + * @maxItems 25 + */ + stations?: number[]; + /** + * get_universe_systems_system_id_system_id + * system_id integer + * @format int32 + */ + system_id: number; + }, + | void + | BadRequest + | { + /** + * get_universe_systems_system_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/systems/${systemId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get a list of type ids --- Alternate route: `/legacy/universe/types/` Alternate route: `/v1/universe/types/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseTypes + * @summary Get types + * @request GET:/universe/types/ + */ + getUniverseTypes: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/universe/types/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Get information on a type --- Alternate route: `/dev/universe/types/{type_id}/` Alternate route: `/v3/universe/types/{type_id}/` --- This route expires daily at 11:05 + * + * @tags Universe + * @name GetUniverseTypesTypeId + * @summary Get type information + * @request GET:/universe/types/{type_id}/ + */ + getUniverseTypesTypeId: ( + typeId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Language to use in the response, takes precedence over Accept-Language + * @default "en" + */ + language?: "en" | "en-us" | "de" | "fr" | "ja" | "ru" | "zh" | "ko" | "es"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_universe_types_type_id_capacity + * capacity number + * @format float + */ + capacity?: number; + /** + * get_universe_types_type_id_description + * description string + */ + description: string; + /** + * get_universe_types_type_id_dogma_attributes + * dogma_attributes array + * @maxItems 1000 + */ + dogma_attributes?: { + /** + * get_universe_types_type_id_attribute_id + * attribute_id integer + * @format int32 + */ + attribute_id: number; + /** + * get_universe_types_type_id_value + * value number + * @format float + */ + value: number; + }[]; + /** + * get_universe_types_type_id_dogma_effects + * dogma_effects array + * @maxItems 1000 + */ + dogma_effects?: { + /** + * get_universe_types_type_id_effect_id + * effect_id integer + * @format int32 + */ + effect_id: number; + /** + * get_universe_types_type_id_is_default + * is_default boolean + */ + is_default: boolean; + }[]; + /** + * get_universe_types_type_id_graphic_id + * graphic_id integer + * @format int32 + */ + graphic_id?: number; + /** + * get_universe_types_type_id_group_id + * group_id integer + * @format int32 + */ + group_id: number; + /** + * get_universe_types_type_id_icon_id + * icon_id integer + * @format int32 + */ + icon_id?: number; + /** + * get_universe_types_type_id_market_group_id + * This only exists for types that can be put on the market + * @format int32 + */ + market_group_id?: number; + /** + * get_universe_types_type_id_mass + * mass number + * @format float + */ + mass?: number; + /** + * get_universe_types_type_id_name + * name string + */ + name: string; + /** + * get_universe_types_type_id_packaged_volume + * packaged_volume number + * @format float + */ + packaged_volume?: number; + /** + * get_universe_types_type_id_portion_size + * portion_size integer + * @format int32 + */ + portion_size?: number; + /** + * get_universe_types_type_id_published + * published boolean + */ + published: boolean; + /** + * get_universe_types_type_id_radius + * radius number + * @format float + */ + radius?: number; + /** + * get_universe_types_type_id_type_id + * type_id integer + * @format int32 + */ + type_id: number; + /** + * get_universe_types_type_id_volume + * volume number + * @format float + */ + volume?: number; + }, + | void + | BadRequest + | { + /** + * get_universe_types_type_id_404_not_found + * Not found message + */ + error?: string; + } + | ErrorLimited + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/universe/types/${typeId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; + wars = { + /** + * @description Return a list of wars --- Alternate route: `/dev/wars/` Alternate route: `/legacy/wars/` Alternate route: `/v1/wars/` --- This route is cached for up to 3600 seconds + * + * @tags Wars + * @name GetWars + * @summary List wars + * @request GET:/wars/ + */ + getWars: ( + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Only return wars with ID smaller than this + * @format int32 + */ + max_war_id?: number; + }, + params: RequestParams = {}, + ) => + this.request< + number[], + void | BadRequest | ErrorLimited | InternalServerError | ServiceUnavailable | GatewayTimeout + >({ + path: `/wars/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return details about a war --- Alternate route: `/dev/wars/{war_id}/` Alternate route: `/legacy/wars/{war_id}/` Alternate route: `/v1/wars/{war_id}/` --- This route is cached for up to 3600 seconds + * + * @tags Wars + * @name GetWarsWarId + * @summary Get war information + * @request GET:/wars/{war_id}/ + */ + getWarsWarId: ( + warId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_wars_war_id_aggressor + * The aggressor corporation or alliance that declared this war, only contains either corporation_id or alliance_id + */ + aggressor: { + /** + * get_wars_war_id_alliance_id + * Alliance ID if and only if the aggressor is an alliance + * @format int32 + */ + alliance_id?: number; + /** + * get_wars_war_id_corporation_id + * Corporation ID if and only if the aggressor is a corporation + * @format int32 + */ + corporation_id?: number; + /** + * get_wars_war_id_isk_destroyed + * ISK value of ships the aggressor has destroyed + * @format float + */ + isk_destroyed: number; + /** + * get_wars_war_id_ships_killed + * The number of ships the aggressor has killed + * @format int32 + */ + ships_killed: number; + }; + /** + * get_wars_war_id_allies + * allied corporations or alliances, each object contains either corporation_id or alliance_id + * @maxItems 10000 + */ + allies?: { + /** + * get_wars_war_id_ally_alliance_id + * Alliance ID if and only if this ally is an alliance + * @format int32 + */ + alliance_id?: number; + /** + * get_wars_war_id_ally_corporation_id + * Corporation ID if and only if this ally is a corporation + * @format int32 + */ + corporation_id?: number; + }[]; + /** + * get_wars_war_id_declared + * Time that the war was declared + * @format date-time + */ + declared: string; + /** + * get_wars_war_id_defender + * The defending corporation or alliance that declared this war, only contains either corporation_id or alliance_id + */ + defender: { + /** + * get_wars_war_id_defender_alliance_id + * Alliance ID if and only if the defender is an alliance + * @format int32 + */ + alliance_id?: number; + /** + * get_wars_war_id_defender_corporation_id + * Corporation ID if and only if the defender is a corporation + * @format int32 + */ + corporation_id?: number; + /** + * get_wars_war_id_defender_isk_destroyed + * ISK value of ships the defender has killed + * @format float + */ + isk_destroyed: number; + /** + * get_wars_war_id_defender_ships_killed + * The number of ships the defender has killed + * @format int32 + */ + ships_killed: number; + }; + /** + * get_wars_war_id_finished + * Time the war ended and shooting was no longer allowed + * @format date-time + */ + finished?: string; + /** + * get_wars_war_id_id + * ID of the specified war + * @format int32 + */ + id: number; + /** + * get_wars_war_id_mutual + * Was the war declared mutual by both parties + */ + mutual: boolean; + /** + * get_wars_war_id_open_for_allies + * Is the war currently open for allies or not + */ + open_for_allies: boolean; + /** + * get_wars_war_id_retracted + * Time the war was retracted but both sides could still shoot each other + * @format date-time + */ + retracted?: string; + /** + * get_wars_war_id_started + * Time when the war started and both sides could shoot each other + * @format date-time + */ + started?: string; + }, + | void + | BadRequest + | ErrorLimited + | { + /** + * get_wars_war_id_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/wars/${warId}/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + + /** + * @description Return a list of kills related to a war --- Alternate route: `/dev/wars/{war_id}/killmails/` Alternate route: `/legacy/wars/{war_id}/killmails/` Alternate route: `/v1/wars/{war_id}/killmails/` --- This route is cached for up to 3600 seconds + * + * @tags Wars + * @name GetWarsWarIdKillmails + * @summary List kills for a war + * @request GET:/wars/{war_id}/killmails/ + */ + getWarsWarIdKillmails: ( + warId: number, + query?: { + /** + * The server name you would like data from + * @default "tranquility" + */ + datasource?: "tranquility"; + /** + * Which page of results to return + * @format int32 + * @min 1 + * @default 1 + */ + page?: number; + }, + params: RequestParams = {}, + ) => + this.request< + { + /** + * get_wars_war_id_killmails_killmail_hash + * A hash of this killmail + */ + killmail_hash: string; + /** + * get_wars_war_id_killmails_killmail_id + * ID of this killmail + * @format int32 + */ + killmail_id: number; + }[], + | void + | BadRequest + | ErrorLimited + | { + /** + * get_wars_war_id_killmails_422_unprocessable_entity + * Unprocessable entity message + */ + error?: string; + } + | InternalServerError + | ServiceUnavailable + | GatewayTimeout + >({ + path: `/wars/${warId}/killmails/`, + method: "GET", + query: query, + format: "json", + ...params, + }), + }; +} diff --git a/src/esi-sso.ts b/src/esi-sso.ts new file mode 100644 index 0000000..e4627bc --- /dev/null +++ b/src/esi-sso.ts @@ -0,0 +1,55 @@ +import { AccessToken } from "./types"; + +export const refreshToken = async ( + character: AccessToken +): Promise => { + return fetch(`api/refresh`, { + method: "POST", + mode: "cors", + cache: "no-cache", + credentials: "same-origin", + headers: { + "Content-Type": "application/json", + }, + redirect: "error", + referrerPolicy: "no-referrer", + body: JSON.stringify(character), + }).then((res) => res.json()); +}; + +export const revokeToken = async ( + character: AccessToken +): Promise => { + return fetch(`api/revoke`, { + method: "POST", + mode: "cors", + cache: "no-cache", + credentials: "same-origin", + headers: { + "Content-Type": "application/json", + }, + redirect: "error", + referrerPolicy: "no-referrer", + body: JSON.stringify(character), + }); +}; + +export const loginParameters = async ( + selectedScopes: string[], + EVE_SSO_CLIENT_ID: string, + EVE_SSO_CALLBACK_URL: string +) => { + return new URLSearchParams({ + response_type: "code", + redirect_uri: EVE_SSO_CALLBACK_URL, + client_id: EVE_SSO_CLIENT_ID, + scope: selectedScopes.join(" "), + state: "asfe", + }).toString(); +}; + +export const eveSwagger = async () => { + return fetch("https://esi.evetech.net/latest/swagger.json").then((res) => + res.json() + ); +}; diff --git a/src/pages/api/env.ts b/src/pages/api/env.ts new file mode 100644 index 0000000..71af247 --- /dev/null +++ b/src/pages/api/env.ts @@ -0,0 +1,13 @@ +import { NextApiRequest, NextApiResponse } from "next"; + +const handler = async (req: NextApiRequest, res: NextApiResponse) => { + if (req.method === "GET") { + const EVE_SSO_CALLBACK_URL = process.env.EVE_SSO_CALLBACK_URL; + const EVE_SSO_CLIENT_ID = process.env.EVE_SSO_CLIENT_ID; + res.json({ EVE_SSO_CLIENT_ID, EVE_SSO_CALLBACK_URL }); + } else { + res.status(404).end(); + } +}; + +export default handler; diff --git a/src/pages/api/refresh.ts b/src/pages/api/refresh.ts new file mode 100644 index 0000000..ff5fd07 --- /dev/null +++ b/src/pages/api/refresh.ts @@ -0,0 +1,62 @@ +import { AccessToken } from "@/types"; +import { extractCharacterFromToken } from "@/utils"; +import { NextApiRequest, NextApiResponse } from "next"; +import crypto from "crypto-js"; + +const EVE_SSO_TOKEN_URL = "https://login.eveonline.com/v2/oauth/token"; +const EVE_SSO_CLIENT_ID = process.env.EVE_SSO_CLIENT_ID ?? ""; +const EVE_SSO_SECRET = process.env.EVE_SSO_SECRET ?? ""; + +const handler = async (req: NextApiRequest, res: NextApiResponse) => { + if (req.method === "POST") { + const accessToken: AccessToken = req.body; + const params = new URLSearchParams({ + grant_type: "refresh_token", + refresh_token: crypto.AES.decrypt( + accessToken.refresh_token, + EVE_SSO_SECRET + ).toString(crypto.enc.Utf8), + }).toString(); + + const headers = { + "Content-Type": "application/x-www-form-urlencoded", + Authorization: `Basic ${Buffer.from( + `${EVE_SSO_CLIENT_ID}:${EVE_SSO_SECRET}` + ).toString("base64")}`, + Host: "login.eveonline.com", + }; + + try { + const response = await fetch(EVE_SSO_TOKEN_URL, { + method: "POST", + body: params, + headers, + }).then((res) => res.json()); + const character = extractCharacterFromToken(response); + + const token: AccessToken = { + access_token: response.access_token, + token_type: response.token_type, + refresh_token: crypto.AES.encrypt( + response.refresh_token, + EVE_SSO_SECRET + ).toString(), + expires_at: Date.now() + response.expires_in * 1000, + character, + needsLogin: false, + account: accessToken.account, + }; + + console.log("Refresh", character.name, character.characterId); + + return res.json(token); + } catch (e) { + console.log(e); + res.json({ ...accessToken, needsLogin: true }); + } + } else { + res.status(404).end(); + } +}; + +export default handler; diff --git a/src/pages/api/revoke.ts b/src/pages/api/revoke.ts new file mode 100644 index 0000000..fd9343e --- /dev/null +++ b/src/pages/api/revoke.ts @@ -0,0 +1,51 @@ +import { AccessToken } from "@/types"; +import { NextApiRequest, NextApiResponse } from "next"; +import crypto from "crypto-js"; + +const EVE_SSO_REVOKE_URL = "https://login.eveonline.com/v2/oauth/revoke"; +const EVE_SSO_CLIENT_ID = process.env.EVE_SSO_CLIENT_ID ?? ""; +const EVE_SSO_SECRET = process.env.EVE_SSO_SECRET ?? ""; + +const handler = async (req: NextApiRequest, res: NextApiResponse) => { + if (req.method === "POST") { + const accessToken: AccessToken = req.body; + const params = new URLSearchParams({ + grant_type: "refresh_token", + refresh_token: crypto.AES.decrypt( + accessToken.refresh_token, + EVE_SSO_SECRET + ).toString(crypto.enc.Utf8), + }).toString(); + + const headers = { + "Content-Type": "application/x-www-form-urlencoded", + Authorization: `Basic ${Buffer.from( + `${EVE_SSO_CLIENT_ID}:${EVE_SSO_SECRET}` + ).toString("base64")}`, + Host: "login.eveonline.com", + }; + + try { + await fetch(EVE_SSO_REVOKE_URL, { + method: "POST", + body: params, + headers, + }).then((res) => res.json()); + + console.log( + "Revoke", + accessToken.character.name, + accessToken.character.characterId + ); + + return res.end(); + } catch (e) { + console.log(e); + return res.status(500).end(); + } + } else { + res.status(404).end(); + } +}; + +export default handler; diff --git a/src/pages/api/token.ts b/src/pages/api/token.ts new file mode 100644 index 0000000..81712c7 --- /dev/null +++ b/src/pages/api/token.ts @@ -0,0 +1,56 @@ +import { AccessToken } from "@/types"; +import { extractCharacterFromToken } from "@/utils"; +import { NextApiRequest, NextApiResponse } from "next"; +import crypto from "crypto-js"; + +const EVE_SSO_TOKEN_URL = "https://login.eveonline.com/v2/oauth/token"; +const EVE_SSO_CLIENT_ID = process.env.EVE_SSO_CLIENT_ID ?? ""; +const EVE_SSO_SECRET = process.env.EVE_SSO_SECRET ?? ""; + +const handler = async (req: NextApiRequest, res: NextApiResponse) => { + if (req.method === "GET") { + const code = req.query.code as string; + if (!code || code === undefined) return res.status(404).end(); + + const params = new URLSearchParams({ + grant_type: "authorization_code", + code: code, + }).toString(); + + const headers = { + "Content-Type": "application/x-www-form-urlencoded", + Authorization: `Basic ${Buffer.from( + `${EVE_SSO_CLIENT_ID}:${EVE_SSO_SECRET}` + ).toString("base64")}`, + Host: "login.eveonline.com", + }; + + const response = await fetch(EVE_SSO_TOKEN_URL, { + method: "POST", + body: params, + headers, + }).then((res) => res.json()); + + const character = extractCharacterFromToken(response); + + console.log("Login", character.name, character.characterId); + + const token: AccessToken = { + access_token: response.access_token, + token_type: response.token_type, + refresh_token: crypto.AES.encrypt( + response.refresh_token, + EVE_SSO_SECRET + ).toString(), + expires_at: Date.now() + response.expires_in * 1000, + character, + needsLogin: false, + account: "-", + }; + res.json(token); + } else { + res.status(404).end(); + } +}; + +export default handler; diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..90bb348 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,41 @@ +export interface AccessToken { + access_token: string; + expires_at: number; + token_type: "Bearer"; + refresh_token: string; + character: Character; + account: string; + needsLogin: boolean; +} + +export interface Character { + name: string; + characterId: number; +} + +export interface CharacterUpdate { + account?: string; +} + +export interface Planet { + last_update: string; + num_pins: number; + owner_id: number; + planet_id: number; + planet_type: + | "temperate" + | "barren" + | "oceanic" + | "ice" + | "gas" + | "lava" + | "storm" + | "plasma"; + solar_system_id: number; + upgrade_level: number; +} + +export interface Env { + EVE_SSO_CALLBACK_URL: string; + EVE_SSO_CLIENT_ID: string; +} diff --git a/src/utils.ts b/src/utils.ts new file mode 100644 index 0000000..be874d5 --- /dev/null +++ b/src/utils.ts @@ -0,0 +1,13 @@ +import { AccessToken, Character } from "./types"; + +export const extractCharacterFromToken = (token: AccessToken): Character => { + const decodedToken = parseJwt(token.access_token); + return { + name: decodedToken.name, + characterId: decodedToken.sub.split(":")[2], + }; +}; + +const parseJwt = (token: string) => { + return JSON.parse(Buffer.from(token.split(".")[1], "base64").toString()); +}; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..0c7555f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +}