diff --git a/.dockerignore b/.dockerignore index efc1070d6..9f57b3aaf 100644 --- a/.dockerignore +++ b/.dockerignore @@ -7,6 +7,8 @@ !package* !remix.config.js !tailwind.config.js +!tailwind-base.js +!.npmrc !scripts !public/package.json !jsconfig.json @@ -15,6 +17,7 @@ !tsconfig-compile.json !tsconfig.json !remix.env.d.ts +!css-plugins src/generated/node_modules src/generated/plugin/node_modules src/design-system/node_modules diff --git a/.eslintrc.yml b/.eslintrc.yml index a8907fe08..8cb74c91b 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -1,7 +1,123 @@ extends: - - ./src/design-system/.eslintrc.yml + - airbnb + - airbnb/hooks + - plugin:react/recommended + - plugin:prettier/recommended + - plugin:@typescript-eslint/recommended + +plugins: + - import + - react + - prefer-arrow-functions + - prettier + - "@typescript-eslint" + +parser: "@typescript-eslint/parser" + +parserOptions: + ecmaFeatures: + jsx: true + ecmaVersion: 12 + sourceType: module + +env: + es6: true + node: true + browser: true + jest: true + es2021: true + +settings: + import/resolver: + node: + extensions: [.js, .jsx, .ts, .tsx, .json] + moduleDirectory: + - node_modules + jsconfig: + config: ./jsconfig.json + typescript: + project: ./tsconfig.json + +# settings: +# import/resolver: +# node: true +# jsconfig: +# config: ./jsconfig.json + +globals: + Logger: false rules: - no-case-declarations: 0 - no-restricted-syntax: 0 + # pritter rules + + # ts rules react/no-unescaped-entities: 0 + react/jsx-filename-extension: 0 + react/require-default-props : 0 + "@typescript-eslint/no-unused-vars": + - error + - ignoreRestSiblings: true + varsIgnorePattern: '^_' + argsIgnorePattern: '^_' + + "@typescript-eslint/no-explicit-any": 0 + "@typescript-eslint/ban-ts-comment": 0 + no-shadow: 0 + + + # js rules + react/react-in-jsx-scope: 0 + # prefer-arrow-functions/prefer-arrow-functions: + # [ + # "warn", + # { + # classPropertiesAllowed: false, + # disallowPrototype: true, + # returnStyle: "unchanged", + # singleReturnOnly: true, + # }, + # ] + + import/extensions: 0 + import/prefer-default-export: off + + react/jsx-uses-react: 0 + react/jsx-uses-vars: 1 + react/jsx-props-no-spreading: 0 + react/function-component-definition: 0 + prettier/prettier: + - error + - singleQuote: true + camelcase: + - error + - ignoreDestructuring: true + properties: never + + no-underscore-dangle: 0 + + react-hooks/exhaustive-deps: 0 + jsx-a11y/no-static-element-interactions: 0 + jsx-a11y/click-events-have-key-events: 0 + allow-named-functions: 0 + max-classes-per-file: 0 + react/prop-types: 0 + react/display-name: 0 + jsx-a11y/anchor-is-valid: 0 + import/order: 1 + react/button-has-type: 0 + no-console: 0 + no-param-reassign: + - error + - props: false + import/no-unresolved: + - error + - ignore: + - \.svg + + import/no-extraneous-dependencies: 0 + + no-unused-vars: + - error + - ignoreRestSiblings: true + varsIgnorePattern: '^_' + argsIgnorePattern: '^_' diff --git a/.npmrc b/.npmrc deleted file mode 100644 index d7af27f53..000000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -@kloudlite:registry=https://npm.pkg.github.com diff --git a/Dockerfile b/Dockerfile index 5b08341d3..c3ff980f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ RUN npm i --frozen-lockfile FROM node:22.10.0-alpine AS install RUN npm i -g pnpm@9.12.2 +RUN apk add gcc python3 make WORKDIR /app COPY ./package.json ./package.json COPY ./pnpm-lock.yaml ./pnpm-lock.yaml @@ -34,35 +35,25 @@ COPY ./static/${APP}/. ./public # lib COPY ./lib ./lib -# design system -COPY ./src/design-system/components ./src/design-system/components -COPY ./src/design-system/index.css ./src/design-system/index.css -COPY ./src/design-system/css ./src/design-system/css -COPY ./src/design-system/css-plugins ./src/design-system/css-plugins -COPY ./src/design-system/tailwind-base.js ./src/design-system/tailwind-base.js -COPY ./src/design-system/tailwind.config.js ./src/design-system/tailwind.config.js - # typecheck -COPY ./src/design-system/.eslintrc.yml ./src/design-system/.eslintrc.yml -COPY ./src/design-system/tsconfig.json ./src/design-system/tsconfig.json -COPY ./src/design-system/jsconfig.json ./src/design-system/jsconfig.json -COPY ./src/design-system/package.json ./src/design-system/package.json COPY ./gql-queries-generator/loader.ts ./gql-queries-generator/loader.ts COPY ./fake-data-generator/gen.ts ./fake-data-generator/gen.ts COPY ./gql-queries-generator/${APP}.ts ./gql-queries-generator/index.ts COPY ./tsconfig-compile.json ./tsconfig-compile.json -RUN ls ./src/design-system # app COPY ./src/apps/${APP} ./src/apps/${APP} COPY ./tailwind.config.js ./tailwind.config.js +COPY ./tailwind-base.js ./tailwind-base.js COPY ./remix.config.js ./remix.config.js COPY ./pnpm-lock.yaml ./pnpm-lock.yaml COPY ./package.json ./package.json COPY ./jsconfig.json ./jsconfig.json COPY ./tsconfig.json ./tsconfig.json COPY ./remix.env.d.ts ./remix.env.d.ts +COPY ./css-plugins ./css-plugins + RUN pnpm build:ts FROM node:22.10.0-alpine diff --git a/Taskfile.yaml b/Taskfile.yaml index 62d7c18fb..3bcfb5698 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -184,7 +184,7 @@ tasks: - docker build --build-arg APP=auth . -t {{.IMAGE}}/auth:{{.tag}} - docker push {{.IMAGE}}/auth:{{.tag}} - docker build --build-arg APP=console . -t {{.IMAGE}}/console:{{.tag}} - - docker push {{.IMAGE}}/console:{{.tag}} + # - docker push {{.IMAGE}}/console:{{.tag}} container-build-webinar: preconditions: diff --git a/package.json b/package.json index 5773083ed..67ca5bdd6 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ }, "dependencies": { "@jengaicons/react": "1.6.0", - "@kloudlite/design-system": "^0.0.1", + "@kloudlite/design-system": "^0.0.2", "@mdx-js/react": "^2.3.0", "@monaco-editor/react": "^4.6.0", "@oshq/react-select": "^3.2.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dedb844ba..b187f4660 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,8 +9,8 @@ dependencies: specifier: 1.6.0 version: 1.6.0(react@18.2.0) '@kloudlite/design-system': - specifier: ^0.0.1 - version: 0.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(immer@10.1.1)(monaco-editor@0.52.0)(react-dom@18.3.1)(react@18.2.0)(websocket@1.0.35) + specifier: ^0.0.2 + version: 0.0.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(immer@10.1.1)(monaco-editor@0.52.0)(react-dom@18.3.1)(react@18.2.0)(websocket@1.0.35) '@mdx-js/react': specifier: ^2.3.0 version: 2.3.0(react@18.2.0) @@ -2388,8 +2388,8 @@ packages: resolution: {integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==} dev: true - /@kloudlite/design-system@0.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(immer@10.1.1)(monaco-editor@0.52.0)(react-dom@18.3.1)(react@18.2.0)(websocket@1.0.35): - resolution: {integrity: sha512-C2cWB3Rx05++dvE6Ju4nXBLFS/5rziadJoPmLtBieVQSDB2DN+vKLS8P6qZq7+ZX1OdRQtFDGaRrs1qh4TWH0w==, tarball: https://npm.pkg.github.com/download/@kloudlite/design-system/0.0.1/14e9a82ef8f1dd5fb0fbe22c2990304e85c76607} + /@kloudlite/design-system@0.0.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(immer@10.1.1)(monaco-editor@0.52.0)(react-dom@18.3.1)(react@18.2.0)(websocket@1.0.35): + resolution: {integrity: sha512-drLZyJtV5VPWSkuBbw0lyDk9BCCsNt8r9LiiYEWrda9tAlO9ueVbsuxdaFwPuswYbvBCPbwSL5f6IH2QPr5jSQ==} peerDependencies: react: ^18.2.0 || ^17.0.0 || ^16.0.0 react-dom: ^18.2.0 || ^17.0.0 || ^16.0.0 diff --git a/src/apps/auth/routes/_providers+/signup.tsx b/src/apps/auth/routes/_providers+/signup.tsx index 56795ed07..dcce5526a 100644 --- a/src/apps/auth/routes/_providers+/signup.tsx +++ b/src/apps/auth/routes/_providers+/signup.tsx @@ -11,8 +11,8 @@ import { useSearchParams, } from '@remix-run/react'; import { RECAPTCHA_SITE_KEY, mainUrl } from '~/auth/consts'; -import { Button } from '@kloudlite/design-system/atoms/button.jsx'; -import { PasswordInput, TextInput } from '@kloudlite/design-system/atoms/input.jsx'; +import { Button } from '@kloudlite/design-system/atoms/button'; +import { PasswordInput, TextInput } from '@kloudlite/design-system/atoms/input'; import { ArrowLeft, ArrowRight } from '@kloudlite/design-system/icons'; import { toast } from '@kloudlite/design-system/molecule/toast'; import { cn } from '@kloudlite/design-system/utils'; diff --git a/src/apps/iot-console/routes/_main+/$account+/$project+/deployments/route.tsx b/src/apps/iot-console/routes/_main+/$account+/$project+/deployments/route.tsx index 3f9c3e461..f7909077c 100644 --- a/src/apps/iot-console/routes/_main+/$account+/$project+/deployments/route.tsx +++ b/src/apps/iot-console/routes/_main+/$account+/$project+/deployments/route.tsx @@ -1,7 +1,7 @@ import { Plus } from '~/iotconsole/components/icons'; import { defer } from '@remix-run/node'; import { Link, useLoaderData } from '@remix-run/react'; -import { Button } from '@kloudlite/design-system/atoms/button.jsx'; +import { Button } from '@kloudlite/design-system/atoms/button'; import { LoadingComp, pWrapper, @@ -24,7 +24,7 @@ export const loader = (ctx: IRemixCtx) => { const { project } = ctx.params; const { data, errors } = await GQLServerHandler( - ctx.request + ctx.request, ).listIotDeployments({ pq: getPagination(ctx), search: getSearch(ctx), diff --git a/src/apps/iot-console/routes/_main+/$account+/$project+/deviceblueprints/route.tsx b/src/apps/iot-console/routes/_main+/$account+/$project+/deviceblueprints/route.tsx index e3334ed22..1c25d3b3f 100644 --- a/src/apps/iot-console/routes/_main+/$account+/$project+/deviceblueprints/route.tsx +++ b/src/apps/iot-console/routes/_main+/$account+/$project+/deviceblueprints/route.tsx @@ -2,7 +2,7 @@ import { Plus } from '~/iotconsole/components/icons'; import { defer } from '@remix-run/node'; import { Link, useLoaderData } from '@remix-run/react'; import { useState } from 'react'; -import { Button } from '@kloudlite/design-system/atoms/button.jsx'; +import { Button } from '@kloudlite/design-system/atoms/button'; import { LoadingComp, pWrapper, @@ -23,9 +23,9 @@ export const loader = async (ctx: IRemixCtx) => { const { project } = ctx.params; const promise = pWrapper(async () => { const { data, errors } = await GQLServerHandler( - ctx.request + ctx.request, ).listIotDeviceBlueprints({ - projectName: + projectName: project, pq: getPagination(ctx), search: getSearch(ctx), }); @@ -56,7 +56,6 @@ const Workspaces = () => { // }} > {({ deviceBlueprintData }) => { - const deviceBlueprints = parseNodes(deviceBlueprintData); if (!deviceBlueprints) { diff --git a/src/apps/iot-console/routes/_main+/$account+/projects/route.tsx b/src/apps/iot-console/routes/_main+/$account+/projects/route.tsx index 001f5ba0f..abb922efb 100644 --- a/src/apps/iot-console/routes/_main+/$account+/projects/route.tsx +++ b/src/apps/iot-console/routes/_main+/$account+/projects/route.tsx @@ -1,7 +1,7 @@ import { Plus } from '~/iotconsole/components/icons'; import { defer } from '@remix-run/node'; import { Link, useLoaderData, useParams } from '@remix-run/react'; -import { Button } from '@kloudlite/design-system/atoms/button.jsx'; +import { Button } from '@kloudlite/design-system/atoms/button'; import { LoadingComp, pWrapper, @@ -22,7 +22,7 @@ export const loader = (ctx: IRemixCtx) => { ensureAccountSet(ctx); const { data: projects, errors } = await GQLServerHandler( - ctx.request + ctx.request, ).listIotProjects({ pq: getPagination(ctx), search: getSearch(ctx), diff --git a/src/generated/.eslintrc.yml b/src/generated/.eslintrc.yml index 0d0342e61..434c114bc 100644 --- a/src/generated/.eslintrc.yml +++ b/src/generated/.eslintrc.yml @@ -1,5 +1,5 @@ extends: - - ../design-system/.eslintrc.yml + - ../.eslintrc.yml rules: camelcase: 0 diff --git a/src/generated/gql/server.ts b/src/generated/gql/server.ts index 8936df3a2..a148d625b 100644 --- a/src/generated/gql/server.ts +++ b/src/generated/gql/server.ts @@ -1,36 +1,23 @@ export type Maybe = T; export type InputMaybe = T; -export type Exact = { - [K in keyof T]: T[K]; -}; -export type MakeOptional = Omit & { - [SubKey in K]?: Maybe; -}; -export type MakeMaybe = Omit & { - [SubKey in K]: Maybe; -}; -export type MakeEmpty< - T extends { [key: string]: unknown }, - K extends keyof T -> = { [_ in K]?: never }; -export type Incremental = - | T - | { - [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never; - }; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +export type MakeEmpty = { [_ in K]?: never }; +export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string; output: string }; - String: { input: string; output: string }; - Boolean: { input: boolean; output: boolean }; - Int: { input: number; output: number }; - Float: { input: number; output: number }; - Date: { input: any; output: any }; - Map: { input: any; output: any }; - Json: { input: any; output: any }; - ProviderDetail: { input: any; output: any }; - Any: { input: any; output: any }; - URL: { input: any; output: any }; + ID: { input: string; output: string; } + String: { input: string; output: string; } + Boolean: { input: boolean; output: boolean; } + Int: { input: number; output: number; } + Float: { input: number; output: number; } + Date: { input: any; output: any; } + Map: { input: any; output: any; } + Json: { input: any; output: any; } + ProviderDetail: { input: any; output: any; } + Any: { input: any; output: any; } + URL: { input: any; output: any; } }; export type Github__Com___Kloudlite___Api___Apps___Iam___Types__Role = @@ -50,10 +37,13 @@ export type CursorPaginationIn = { sortDirection?: InputMaybe; }; -export type CursorPaginationSortDirection = 'ASC' | 'DESC'; +export type CursorPaginationSortDirection = + | 'ASC' + | 'DESC'; export type Github__Com___Kloudlite___Api___Apps___Comms___Types__NotificationType = - 'alert' | 'notification'; + | 'alert' + | 'notification'; export type ConsoleResType = | 'app' @@ -81,23 +71,37 @@ export type Github__Com___Kloudlite___Api___Pkg___Types__SyncState = | 'UPDATED_AT_AGENT'; export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider = - 'github' | 'gitlab'; + | 'github' + | 'gitlab'; export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__BuildStatus = - 'error' | 'failed' | 'idle' | 'pending' | 'queued' | 'running' | 'success'; + | 'error' + | 'failed' + | 'idle' + | 'pending' + | 'queued' + | 'running' + | 'success'; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret = - 'config' | 'pvc' | 'secret'; + | 'config' + | 'pvc' + | 'secret'; export type K8s__Io___Api___Core___V1__TaintEffect = | 'NoExecute' | 'NoSchedule' | 'PreferNoSchedule'; -export type K8s__Io___Api___Core___V1__TolerationOperator = 'Equal' | 'Exists'; +export type K8s__Io___Api___Core___V1__TolerationOperator = + | 'Equal' + | 'Exists'; export type K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator = - 'DoesNotExist' | 'Exists' | 'In' | 'NotIn'; + | 'DoesNotExist' + | 'Exists' + | 'In' + | 'NotIn'; export type K8s__Io___Api___Core___V1__UnsatisfiableConstraintAction = | 'DoNotSchedule' @@ -109,13 +113,16 @@ export type ConfigKeyRefIn = { }; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode = - 'private' | 'public'; + | 'private' + | 'public'; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType = - 'CNAME' | 'IPAddr'; + | 'CNAME' + | 'IPAddr'; export type Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__PullSecretFormat = - 'dockerConfigJson' | 'params'; + | 'dockerConfigJson' + | 'params'; export type ManagedResourceKeyRefIn = { key: Scalars['String']['input']; @@ -133,18 +140,17 @@ export type K8s__Io___Api___Core___V1__SecretType = | 'Opaque'; export type Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__ResourceType = - - | 'app' - | 'cluster_managed_service' - | 'config' - | 'environment' - | 'external_app' - | 'image_pull_secret' - | 'imported_managed_resource' - | 'managed_resource' - | 'router' - | 'secret' - | 'service_binding'; + | 'app' + | 'cluster_managed_service' + | 'config' + | 'environment' + | 'external_app' + | 'image_pull_secret' + | 'imported_managed_resource' + | 'managed_resource' + | 'router' + | 'secret' + | 'service_binding'; export type SecretKeyRefIn = { key: Scalars['String']['input']; @@ -235,10 +241,15 @@ export type SearchCreds = { }; export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__RepoAccess = - 'read' | 'read_write'; + | 'read' + | 'read_write'; export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationUnit = - 'd' | 'h' | 'm' | 'w' | 'y'; + | 'd' + | 'h' + | 'm' + | 'w' + | 'y'; export type SearchRepos = { text?: InputMaybe; @@ -259,16 +270,22 @@ export type ResType = | 'providersecret'; export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__ClusterVisibilityMode = - 'private' | 'public'; + | 'private' + | 'public'; export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode = - 'dev' | 'HA'; + | 'dev' + | 'HA'; export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism = - 'assume_role' | 'secret_keys'; + | 'assume_role' + | 'secret_keys'; export type Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider = - 'aws' | 'azure' | 'digitalocean' | 'gcp'; + | 'aws' + | 'azure' + | 'digitalocean' + | 'gcp'; export type K8s__Io___Api___Core___V1__NodeSelectorOperator = | 'DoesNotExist' @@ -295,10 +312,12 @@ export type K8s__Io___Api___Core___V1__NamespacePhase = | 'Terminating'; export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType = - 'ec2' | 'spot'; + | 'ec2' + | 'spot'; export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType = - 'SPOT' | 'STANDARD'; + | 'SPOT' + | 'STANDARD'; export type K8s__Io___Api___Core___V1__PersistentVolumeReclaimPolicy = | 'Delete' @@ -319,7 +338,9 @@ export type K8s__Io___Api___Core___V1__PersistentVolumeClaimConditionType = | 'Resizing'; export type K8s__Io___Api___Core___V1__PersistentVolumeClaimModifyVolumeStatus = - 'Infeasible' | 'InProgress' | 'Pending'; + | 'Infeasible' + | 'InProgress' + | 'Pending'; export type K8s__Io___Api___Core___V1__PersistentVolumeClaimPhase = | 'Bound' @@ -412,30 +433,26 @@ export type NotificationConfIn = { webhook?: InputMaybe; }; -export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__EmailIn = - { - enabled: Scalars['Boolean']['input']; - mailAddress: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__EmailIn = { + enabled: Scalars['Boolean']['input']; + mailAddress: Scalars['String']['input']; +}; -export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__SlackIn = - { - enabled: Scalars['Boolean']['input']; - url: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__SlackIn = { + enabled: Scalars['Boolean']['input']; + url: Scalars['String']['input']; +}; -export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__TelegramIn = - { - chatId: Scalars['String']['input']; - enabled: Scalars['Boolean']['input']; - token: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__TelegramIn = { + chatId: Scalars['String']['input']; + enabled: Scalars['Boolean']['input']; + token: Scalars['String']['input']; +}; -export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__WebhookIn = - { - enabled: Scalars['Boolean']['input']; - url: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Comms___Internal___Domain___Entities__WebhookIn = { + enabled: Scalars['Boolean']['input']; + url: Scalars['String']['input']; +}; export type SubscriptionIn = { enabled: Scalars['Boolean']['input']; @@ -463,46 +480,34 @@ export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppSpecIn = { replicas?: InputMaybe; router?: InputMaybe; serviceAccount?: InputMaybe; - services?: InputMaybe< - Array - >; + services?: InputMaybe>; tolerations?: InputMaybe>; - topologySpreadConstraints?: InputMaybe< - Array - >; -}; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppContainerIn = - { - args?: InputMaybe>; - command?: InputMaybe>; - env?: InputMaybe< - Array - >; - envFrom?: InputMaybe< - Array - >; - image: Scalars['String']['input']; - imagePullPolicy?: InputMaybe; - livenessProbe?: InputMaybe; - name: Scalars['String']['input']; - readinessProbe?: InputMaybe; - resourceCpu?: InputMaybe; - resourceMemory?: InputMaybe; - volumes?: InputMaybe< - Array - >; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerEnvIn = - { - key: Scalars['String']['input']; - optional?: InputMaybe; - refKey?: InputMaybe; - refName?: InputMaybe; - type?: InputMaybe; - value?: InputMaybe; - }; + topologySpreadConstraints?: InputMaybe>; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppContainerIn = { + args?: InputMaybe>; + command?: InputMaybe>; + env?: InputMaybe>; + envFrom?: InputMaybe>; + image: Scalars['String']['input']; + imagePullPolicy?: InputMaybe; + livenessProbe?: InputMaybe; + name: Scalars['String']['input']; + readinessProbe?: InputMaybe; + resourceCpu?: InputMaybe; + resourceMemory?: InputMaybe; + volumes?: InputMaybe>; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerEnvIn = { + key: Scalars['String']['input']; + optional?: InputMaybe; + refKey?: InputMaybe; + refName?: InputMaybe; + type?: InputMaybe; + value?: InputMaybe; +}; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvFromIn = { refName: Scalars['String']['input']; @@ -519,44 +524,36 @@ export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ProbeIn = { type: Scalars['String']['input']; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HttpGetProbeIn = - { - httpHeaders?: InputMaybe; - path: Scalars['String']['input']; - port: Scalars['Int']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ShellProbeIn = - { - command?: InputMaybe>; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__TcpProbeIn = - { - port: Scalars['Int']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerResourceIn = - { - max?: InputMaybe; - min?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerVolumeIn = - { - items?: InputMaybe< - Array - >; - mountPath: Scalars['String']['input']; - refName: Scalars['String']['input']; - type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerVolumeItemIn = - { - fileName?: InputMaybe; - key: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HttpGetProbeIn = { + httpHeaders?: InputMaybe; + path: Scalars['String']['input']; + port: Scalars['Int']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ShellProbeIn = { + command?: InputMaybe>; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__TcpProbeIn = { + port: Scalars['Int']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerResourceIn = { + max?: InputMaybe; + min?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerVolumeIn = { + items?: InputMaybe>; + mountPath: Scalars['String']['input']; + refName: Scalars['String']['input']; + type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ContainerVolumeItemIn = { + fileName?: InputMaybe; + key: Scalars['String']['input']; +}; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HpaIn = { enabled: Scalars['Boolean']['input']; @@ -566,43 +563,35 @@ export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HpaIn = { thresholdMemory?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__InterceptIn = - { - enabled?: InputMaybe; - portMappings?: InputMaybe< - Array - >; - toDevice?: InputMaybe; - toIPAddr?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn = - { - appPort: Scalars['Int']['input']; - devicePort: Scalars['Int']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppRouterIn = - { - backendProtocol?: InputMaybe; - basicAuth?: InputMaybe; - cors?: InputMaybe; - domains: Array; - https?: InputMaybe; - ingressClass?: InputMaybe; - maxBodySizeInMB?: InputMaybe; - rateLimit?: InputMaybe; - routes?: InputMaybe< - Array - >; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__BasicAuthIn = - { - enabled: Scalars['Boolean']['input']; - secretName?: InputMaybe; - username?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__InterceptIn = { + enabled?: InputMaybe; + portMappings?: InputMaybe>; + toDevice?: InputMaybe; + toIPAddr?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn = { + appPort: Scalars['Int']['input']; + devicePort: Scalars['Int']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppRouterIn = { + backendProtocol?: InputMaybe; + basicAuth?: InputMaybe; + cors?: InputMaybe; + domains: Array; + https?: InputMaybe; + ingressClass?: InputMaybe; + maxBodySizeInMB?: InputMaybe; + rateLimit?: InputMaybe; + routes?: InputMaybe>; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__BasicAuthIn = { + enabled: Scalars['Boolean']['input']; + secretName?: InputMaybe; + username?: InputMaybe; +}; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__CorsIn = { allowCredentials?: InputMaybe; @@ -616,13 +605,12 @@ export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HttpsIn = { forceRedirect?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__RateLimitIn = - { - connections?: InputMaybe; - enabled?: InputMaybe; - rpm?: InputMaybe; - rps?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__RateLimitIn = { + connections?: InputMaybe; + enabled?: InputMaybe; + rpm?: InputMaybe; + rps?: InputMaybe; +}; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__RouteIn = { app: Scalars['String']['input']; @@ -656,18 +644,15 @@ export type K8s__Io___Api___Core___V1__TopologySpreadConstraintIn = { }; export type K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorIn = { - matchExpressions?: InputMaybe< - Array - >; + matchExpressions?: InputMaybe>; matchLabels?: InputMaybe; }; -export type K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorRequirementIn = - { - key: Scalars['String']['input']; - operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator; - values?: InputMaybe>; - }; +export type K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorRequirementIn = { + key: Scalars['String']['input']; + operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator; + values?: InputMaybe>; +}; export type ConfigIn = { apiVersion?: InputMaybe; @@ -688,17 +673,15 @@ export type EnvironmentIn = { spec?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentSpecIn = - { - routing?: InputMaybe; - suspend?: InputMaybe; - targetNamespace?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentSpecIn = { + routing?: InputMaybe; + suspend?: InputMaybe; + targetNamespace?: InputMaybe; +}; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingIn = - { - mode?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingIn = { + mode?: InputMaybe; +}; export type ExternalAppIn = { apiVersion?: InputMaybe; @@ -709,25 +692,20 @@ export type ExternalAppIn = { status?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppSpecIn = - { - intercept?: InputMaybe; - record: Scalars['String']['input']; - recordType: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppSpecIn = { + intercept?: InputMaybe; + record: Scalars['String']['input']; + recordType: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType; +}; export type Github__Com___Kloudlite___Operator___Pkg___Operator__StatusIn = { - checkList?: InputMaybe< - Array - >; + checkList?: InputMaybe>; checks?: InputMaybe; isReady: Scalars['Boolean']['input']; lastReadyGeneration?: InputMaybe; lastReconcileTime?: InputMaybe; message?: InputMaybe; - resources?: InputMaybe< - Array - >; + resources?: InputMaybe>; }; export type Github__Com___Kloudlite___Operator___Pkg___Operator__CheckMetaIn = { @@ -738,18 +716,16 @@ export type Github__Com___Kloudlite___Operator___Pkg___Operator__CheckMetaIn = { title: Scalars['String']['input']; }; -export type Github__Com___Kloudlite___Operator___Pkg___Raw____Json__RawJsonIn = - { - RawMessage?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Pkg___Raw____Json__RawJsonIn = { + RawMessage?: InputMaybe; +}; -export type Github__Com___Kloudlite___Operator___Pkg___Operator__ResourceRefIn = - { - apiVersion: Scalars['String']['input']; - kind: Scalars['String']['input']; - name: Scalars['String']['input']; - namespace: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Operator___Pkg___Operator__ResourceRefIn = { + apiVersion: Scalars['String']['input']; + kind: Scalars['String']['input']; + name: Scalars['String']['input']; + namespace: Scalars['String']['input']; +}; export type ImagePullSecretIn = { displayName: Scalars['String']['input']; @@ -771,27 +747,24 @@ export type ManagedResourceIn = { spec: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedResourceSpecIn; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedResourceSpecIn = - { - resourceNamePrefix?: InputMaybe; - resourceTemplate: Github__Com___Kloudlite___Operator___Apis___Crds___V1__MresResourceTemplateIn; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__MresResourceTemplateIn = - { - apiVersion: Scalars['String']['input']; - kind: Scalars['String']['input']; - msvcRef: Github__Com___Kloudlite___Operator___Apis___Common____Types__MsvcRefIn; - spec?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Common____Types__MsvcRefIn = - { - apiVersion?: InputMaybe; - kind?: InputMaybe; - name: Scalars['String']['input']; - namespace: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedResourceSpecIn = { + resourceNamePrefix?: InputMaybe; + resourceTemplate: Github__Com___Kloudlite___Operator___Apis___Crds___V1__MresResourceTemplateIn; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__MresResourceTemplateIn = { + apiVersion: Scalars['String']['input']; + kind: Scalars['String']['input']; + msvcRef: Github__Com___Kloudlite___Operator___Apis___Common____Types__MsvcRefIn; + spec?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Common____Types__MsvcRefIn = { + apiVersion?: InputMaybe; + kind?: InputMaybe; + name: Scalars['String']['input']; + namespace: Scalars['String']['input']; +}; export type RouterIn = { apiVersion?: InputMaybe; @@ -802,20 +775,17 @@ export type RouterIn = { spec: Github__Com___Kloudlite___Operator___Apis___Crds___V1__RouterSpecIn; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__RouterSpecIn = - { - backendProtocol?: InputMaybe; - basicAuth?: InputMaybe; - cors?: InputMaybe; - domains: Array; - https?: InputMaybe; - ingressClass?: InputMaybe; - maxBodySizeInMB?: InputMaybe; - rateLimit?: InputMaybe; - routes?: InputMaybe< - Array - >; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__RouterSpecIn = { + backendProtocol?: InputMaybe; + basicAuth?: InputMaybe; + cors?: InputMaybe; + domains: Array; + https?: InputMaybe; + ingressClass?: InputMaybe; + maxBodySizeInMB?: InputMaybe; + rateLimit?: InputMaybe; + routes?: InputMaybe>; +}; export type SecretIn = { apiVersion?: InputMaybe; @@ -835,55 +805,46 @@ export type BuildIn = { spec: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__BuildRunSpecIn; }; -export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitSourceIn = - { - branch: Scalars['String']['input']; - provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider; - repository: Scalars['String']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__BuildRunSpecIn = - { - buildOptions?: InputMaybe; - caches?: InputMaybe< - Array - >; - registry: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RegistryIn; - resource: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__ResourceIn; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__BuildOptionsIn = - { - buildArgs?: InputMaybe; - buildContexts?: InputMaybe; - contextDir?: InputMaybe; - dockerfileContent?: InputMaybe; - dockerfilePath?: InputMaybe; - targetPlatforms?: InputMaybe>; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__CacheIn = - { - name: Scalars['String']['input']; - path: Scalars['String']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RegistryIn = - { - repo: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RepoIn; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RepoIn = - { - name: Scalars['String']['input']; - tags: Array; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__ResourceIn = - { - cpu: Scalars['Int']['input']; - memoryInMb: Scalars['Int']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitSourceIn = { + branch: Scalars['String']['input']; + provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider; + repository: Scalars['String']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__BuildRunSpecIn = { + buildOptions?: InputMaybe; + caches?: InputMaybe>; + registry: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RegistryIn; + resource: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__ResourceIn; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__BuildOptionsIn = { + buildArgs?: InputMaybe; + buildContexts?: InputMaybe; + contextDir?: InputMaybe; + dockerfileContent?: InputMaybe; + dockerfilePath?: InputMaybe; + targetPlatforms?: InputMaybe>; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__CacheIn = { + name: Scalars['String']['input']; + path: Scalars['String']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RegistryIn = { + repo: Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RepoIn; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__RepoIn = { + name: Scalars['String']['input']; + tags: Array; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Distribution___V1__ResourceIn = { + cpu: Scalars['Int']['input']; + memoryInMb: Scalars['Int']['input']; +}; export type CredentialIn = { access: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__RepoAccess; @@ -892,11 +853,10 @@ export type CredentialIn = { username: Scalars['String']['input']; }; -export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationIn = - { - unit: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationUnit; - value: Scalars['Int']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationIn = { + unit: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationUnit; + value: Scalars['Int']['input']; +}; export type RepositoryIn = { name: Scalars['String']['input']; @@ -909,10 +869,9 @@ export type ByokClusterIn = { visibility: Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__ClusterVisbilityIn; }; -export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__ClusterVisbilityIn = - { - mode: Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__ClusterVisibilityMode; - }; +export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__ClusterVisbilityIn = { + mode: Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__ClusterVisibilityMode; +}; export type ClusterIn = { apiVersion?: InputMaybe; @@ -924,45 +883,39 @@ export type ClusterIn = { spec: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecIn; }; -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecIn = - { - availabilityMode: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode; - aws?: InputMaybe; - cloudflareEnabled?: InputMaybe; - cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - gcp?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsClusterConfigIn = - { - credentials: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsCredentialsIn; - k3sMasters?: InputMaybe; - region: Scalars['String']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsCredentialsIn = - { - authMechanism: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism; - secretRef: Github__Com___Kloudlite___Operator___Apis___Common____Types__SecretRefIn; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Common____Types__SecretRefIn = - { - name: Scalars['String']['input']; - namespace?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__Awsk3sMastersConfigIn = - { - instanceType: Scalars['String']['input']; - nvidiaGpuEnabled: Scalars['Boolean']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpClusterConfigIn = - { - credentialsRef: Github__Com___Kloudlite___Operator___Apis___Common____Types__SecretRefIn; - region: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecIn = { + availabilityMode: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode; + aws?: InputMaybe; + cloudflareEnabled?: InputMaybe; + cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; + gcp?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsClusterConfigIn = { + credentials: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsCredentialsIn; + k3sMasters?: InputMaybe; + region: Scalars['String']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsCredentialsIn = { + authMechanism: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism; + secretRef: Github__Com___Kloudlite___Operator___Apis___Common____Types__SecretRefIn; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Common____Types__SecretRefIn = { + name: Scalars['String']['input']; + namespace?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__Awsk3sMastersConfigIn = { + instanceType: Scalars['String']['input']; + nvidiaGpuEnabled: Scalars['Boolean']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpClusterConfigIn = { + credentialsRef: Github__Com___Kloudlite___Operator___Apis___Common____Types__SecretRefIn; + region: Scalars['String']['input']; +}; export type ClusterManagedServiceIn = { apiVersion?: InputMaybe; @@ -973,24 +926,21 @@ export type ClusterManagedServiceIn = { spec?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ClusterManagedServiceSpecIn = - { - msvcSpec: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedServiceSpecIn; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ClusterManagedServiceSpecIn = { + msvcSpec: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedServiceSpecIn; +}; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedServiceSpecIn = - { - nodeSelector?: InputMaybe; - serviceTemplate: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ServiceTemplateIn; - tolerations?: InputMaybe>; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ManagedServiceSpecIn = { + nodeSelector?: InputMaybe; + serviceTemplate: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ServiceTemplateIn; + tolerations?: InputMaybe>; +}; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ServiceTemplateIn = - { - apiVersion: Scalars['String']['input']; - kind: Scalars['String']['input']; - spec?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__ServiceTemplateIn = { + apiVersion: Scalars['String']['input']; + kind: Scalars['String']['input']; + spec?: InputMaybe; +}; export type DomainEntryIn = { clusterName: Scalars['String']['input']; @@ -1025,18 +975,17 @@ export type HelmReleaseIn = { spec?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HelmChartSpecIn = - { - chartName: Scalars['String']['input']; - chartRepoURL: Scalars['String']['input']; - chartVersion: Scalars['String']['input']; - jobVars?: InputMaybe; - postInstall?: InputMaybe; - postUninstall?: InputMaybe; - preInstall?: InputMaybe; - preUninstall?: InputMaybe; - values: Scalars['Map']['input']; - }; +export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__HelmChartSpecIn = { + chartName: Scalars['String']['input']; + chartRepoURL: Scalars['String']['input']; + chartVersion: Scalars['String']['input']; + jobVars?: InputMaybe; + postInstall?: InputMaybe; + postUninstall?: InputMaybe; + preInstall?: InputMaybe; + preUninstall?: InputMaybe; + values: Scalars['Map']['input']; +}; export type Github__Com___Kloudlite___Operator___Apis___Crds___V1__JobVarsIn = { affinity?: InputMaybe; @@ -1052,9 +1001,7 @@ export type K8s__Io___Api___Core___V1__AffinityIn = { }; export type K8s__Io___Api___Core___V1__NodeAffinityIn = { - preferredDuringSchedulingIgnoredDuringExecution?: InputMaybe< - Array - >; + preferredDuringSchedulingIgnoredDuringExecution?: InputMaybe>; requiredDuringSchedulingIgnoredDuringExecution?: InputMaybe; }; @@ -1064,12 +1011,8 @@ export type K8s__Io___Api___Core___V1__PreferredSchedulingTermIn = { }; export type K8s__Io___Api___Core___V1__NodeSelectorTermIn = { - matchExpressions?: InputMaybe< - Array - >; - matchFields?: InputMaybe< - Array - >; + matchExpressions?: InputMaybe>; + matchFields?: InputMaybe>; }; export type K8s__Io___Api___Core___V1__NodeSelectorRequirementIn = { @@ -1083,12 +1026,8 @@ export type K8s__Io___Api___Core___V1__NodeSelectorIn = { }; export type K8s__Io___Api___Core___V1__PodAffinityIn = { - preferredDuringSchedulingIgnoredDuringExecution?: InputMaybe< - Array - >; - requiredDuringSchedulingIgnoredDuringExecution?: InputMaybe< - Array - >; + preferredDuringSchedulingIgnoredDuringExecution?: InputMaybe>; + requiredDuringSchedulingIgnoredDuringExecution?: InputMaybe>; }; export type K8s__Io___Api___Core___V1__WeightedPodAffinityTermIn = { @@ -1106,12 +1045,8 @@ export type K8s__Io___Api___Core___V1__PodAffinityTermIn = { }; export type K8s__Io___Api___Core___V1__PodAntiAffinityIn = { - preferredDuringSchedulingIgnoredDuringExecution?: InputMaybe< - Array - >; - requiredDuringSchedulingIgnoredDuringExecution?: InputMaybe< - Array - >; + preferredDuringSchedulingIgnoredDuringExecution?: InputMaybe>; + requiredDuringSchedulingIgnoredDuringExecution?: InputMaybe>; }; export type NodePoolIn = { @@ -1122,62 +1057,54 @@ export type NodePoolIn = { spec: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodePoolSpecIn; }; -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodePoolSpecIn = - { - aws?: InputMaybe; - cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - gcp?: InputMaybe; - maxCount: Scalars['Int']['input']; - minCount: Scalars['Int']['input']; - nodeLabels?: InputMaybe; - nodeTaints?: InputMaybe>; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsNodePoolConfigIn = - { - availabilityZone: Scalars['String']['input']; - ec2Pool?: InputMaybe; - nvidiaGpuEnabled: Scalars['Boolean']['input']; - poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType; - spotPool?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsEc2PoolConfigIn = - { - instanceType: Scalars['String']['input']; - nodes?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsSpotPoolConfigIn = - { - cpuNode?: InputMaybe; - gpuNode?: InputMaybe; - nodes?: InputMaybe; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsSpotCpuNodeIn = - { - memoryPerVcpu?: InputMaybe; - vcpu: Github__Com___Kloudlite___Operator___Apis___Common____Types__MinMaxFloatIn; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Common____Types__MinMaxFloatIn = - { - max: Scalars['String']['input']; - min: Scalars['String']['input']; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsSpotGpuNodeIn = - { - instanceTypes: Array; - }; - -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpNodePoolConfigIn = - { - availabilityZone: Scalars['String']['input']; - machineType: Scalars['String']['input']; - poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType; - }; +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodePoolSpecIn = { + aws?: InputMaybe; + cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; + gcp?: InputMaybe; + maxCount: Scalars['Int']['input']; + minCount: Scalars['Int']['input']; + nodeLabels?: InputMaybe; + nodeTaints?: InputMaybe>; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsNodePoolConfigIn = { + availabilityZone: Scalars['String']['input']; + ec2Pool?: InputMaybe; + nvidiaGpuEnabled: Scalars['Boolean']['input']; + poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType; + spotPool?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsEc2PoolConfigIn = { + instanceType: Scalars['String']['input']; + nodes?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsSpotPoolConfigIn = { + cpuNode?: InputMaybe; + gpuNode?: InputMaybe; + nodes?: InputMaybe; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsSpotCpuNodeIn = { + memoryPerVcpu?: InputMaybe; + vcpu: Github__Com___Kloudlite___Operator___Apis___Common____Types__MinMaxFloatIn; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Common____Types__MinMaxFloatIn = { + max: Scalars['String']['input']; + min: Scalars['String']['input']; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsSpotGpuNodeIn = { + instanceTypes: Array; +}; + +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpNodePoolConfigIn = { + availabilityZone: Scalars['String']['input']; + machineType: Scalars['String']['input']; + poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType; +}; export type K8s__Io___Api___Core___V1__TaintIn = { effect: K8s__Io___Api___Core___V1__TaintEffect; @@ -1194,28 +1121,24 @@ export type CloudProviderSecretIn = { metadata: MetadataIn; }; -export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__AwsSecretCredentialsIn = - { - assumeRoleParams?: InputMaybe; - authMechanism: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism; - authSecretKeys?: InputMaybe; - }; +export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__AwsSecretCredentialsIn = { + assumeRoleParams?: InputMaybe; + authMechanism: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism; + authSecretKeys?: InputMaybe; +}; -export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__AwsAssumeRoleParamsIn = - { - awsAccountId: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__AwsAssumeRoleParamsIn = { + awsAccountId: Scalars['String']['input']; +}; -export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__AwsAuthSecretKeysIn = - { - accessKey: Scalars['String']['input']; - secretKey: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__AwsAuthSecretKeysIn = { + accessKey: Scalars['String']['input']; + secretKey: Scalars['String']['input']; +}; -export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__GcpSecretCredentialsIn = - { - serviceAccountJSON: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Infra___Internal___Entities__GcpSecretCredentialsIn = { + serviceAccountJSON: Scalars['String']['input']; +}; export type AccountMembershipIn = { accountName: Scalars['String']['input']; @@ -1249,21 +1172,19 @@ export type CoreSearchVpnDevices = { text?: InputMaybe; }; -export type Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__ManagedResourceRefIn = - { - id: Scalars['String']['input']; - name: Scalars['String']['input']; - namespace: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__ManagedResourceRefIn = { + id: Scalars['String']['input']; + name: Scalars['String']['input']; + namespace: Scalars['String']['input']; +}; -export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GithubUserAccountIn = - { - avatarUrl?: InputMaybe; - id?: InputMaybe; - login?: InputMaybe; - nodeId?: InputMaybe; - type?: InputMaybe; - }; +export type Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GithubUserAccountIn = { + avatarUrl?: InputMaybe; + id?: InputMaybe; + login?: InputMaybe; + nodeId?: InputMaybe; + type?: InputMaybe; +}; export type Github__Com___Kloudlite___Api___Pkg___Types__SyncStatusIn = { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; @@ -1274,15 +1195,13 @@ export type Github__Com___Kloudlite___Api___Pkg___Types__SyncStatusIn = { syncScheduledAt?: InputMaybe; }; -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodePropsIn = - { - lastRecreatedAt?: InputMaybe; - }; +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodePropsIn = { + lastRecreatedAt?: InputMaybe; +}; -export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodeSpecIn = - { - nodepoolName: Scalars['String']['input']; - }; +export type Github__Com___Kloudlite___Operator___Apis___Clusters___V1__NodeSpecIn = { + nodepoolName: Scalars['String']['input']; +}; export type Github__Com___Kloudlite___Operator___Pkg___Operator__State = | 'errored____during____reconcilation' @@ -1444,9 +1363,7 @@ export type K8s__Io___Api___Core___V1__NamespaceSpecIn = { }; export type K8s__Io___Api___Core___V1__NamespaceStatusIn = { - conditions?: InputMaybe< - Array - >; + conditions?: InputMaybe>; phase?: InputMaybe; }; @@ -1510,9 +1427,7 @@ export type K8s__Io___Api___Core___V1__PersistentVolumeClaimStatusIn = { allocatedResources?: InputMaybe; allocatedResourceStatuses?: InputMaybe; capacity?: InputMaybe; - conditions?: InputMaybe< - Array - >; + conditions?: InputMaybe>; currentVolumeAttributesClassName?: InputMaybe; modifyVolumeStatus?: InputMaybe; phase?: InputMaybe; @@ -1743,23 +1658,15 @@ export type ConsoleAccountCheckNameAvailabilityQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleAccountCheckNameAvailabilityQuery = { - accounts_checkNameAvailability: { - result: boolean; - suggestedNames?: Array; - }; -}; + +export type ConsoleAccountCheckNameAvailabilityQuery = { accounts_checkNameAvailability: { result: boolean, suggestedNames?: Array } }; export type ConsoleCrCheckNameAvailabilityQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleCrCheckNameAvailabilityQuery = { - cr_checkUserNameAvailability: { - result: boolean; - suggestedNames?: Array; - }; -}; + +export type ConsoleCrCheckNameAvailabilityQuery = { cr_checkUserNameAvailability: { result: boolean, suggestedNames?: Array } }; export type ConsoleInfraCheckNameAvailabilityQueryVariables = Exact<{ resType: ResType; @@ -1767,12 +1674,8 @@ export type ConsoleInfraCheckNameAvailabilityQueryVariables = Exact<{ clusterName?: InputMaybe; }>; -export type ConsoleInfraCheckNameAvailabilityQuery = { - infra_checkNameAvailability: { - suggestedNames: Array; - result: boolean; - }; -}; + +export type ConsoleInfraCheckNameAvailabilityQuery = { infra_checkNameAvailability: { suggestedNames: Array, result: boolean } }; export type ConsoleCoreCheckNameAvailabilityQueryVariables = Exact<{ resType: ConsoleResType; @@ -1781,562 +1684,194 @@ export type ConsoleCoreCheckNameAvailabilityQueryVariables = Exact<{ msvcName?: InputMaybe; }>; -export type ConsoleCoreCheckNameAvailabilityQuery = { - core_checkNameAvailability: { result: boolean }; -}; -export type ConsoleWhoAmIQueryVariables = Exact<{ [key: string]: never }>; +export type ConsoleCoreCheckNameAvailabilityQuery = { core_checkNameAvailability: { result: boolean } }; -export type ConsoleWhoAmIQuery = { - auth_me?: { - id: string; - email: string; - providerGitlab?: any; - providerGithub?: any; - providerGoogle?: any; - }; -}; +export type ConsoleWhoAmIQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleWhoAmIQuery = { auth_me?: { id: string, email: string, providerGitlab?: any, providerGithub?: any, providerGoogle?: any } }; export type ConsoleCreateAccountMutationVariables = Exact<{ account: AccountIn; }>; -export type ConsoleCreateAccountMutation = { - accounts_createAccount: { displayName: string }; -}; -export type ConsoleGetAvailableKloudliteRegionsQueryVariables = Exact<{ - [key: string]: never; -}>; +export type ConsoleCreateAccountMutation = { accounts_createAccount: { displayName: string } }; -export type ConsoleGetAvailableKloudliteRegionsQuery = { - accounts_availableKloudliteRegions?: Array<{ - displayName: string; - id: string; - }>; -}; +export type ConsoleGetAvailableKloudliteRegionsQueryVariables = Exact<{ [key: string]: never; }>; -export type ConsoleListAccountsQueryVariables = Exact<{ [key: string]: never }>; -export type ConsoleListAccountsQuery = { - accounts_listAccounts?: Array<{ - id: string; - updateTime: any; - displayName: string; - kloudliteGatewayRegion: string; - metadata?: { name: string; annotations?: any }; - }>; -}; +export type ConsoleGetAvailableKloudliteRegionsQuery = { accounts_availableKloudliteRegions?: Array<{ displayName: string, id: string }> }; + +export type ConsoleListAccountsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleListAccountsQuery = { accounts_listAccounts?: Array<{ id: string, updateTime: any, displayName: string, kloudliteGatewayRegion: string, metadata?: { name: string, annotations?: any } }> }; export type ConsoleUpdateAccountMutationVariables = Exact<{ account: AccountIn; }>; -export type ConsoleUpdateAccountMutation = { - accounts_updateAccount: { id: string }; -}; + +export type ConsoleUpdateAccountMutation = { accounts_updateAccount: { id: string } }; export type ConsoleGetAccountQueryVariables = Exact<{ accountName: Scalars['String']['input']; }>; -export type ConsoleGetAccountQuery = { - accounts_getAccount?: { - targetNamespace?: string; - updateTime: any; - contactEmail?: string; - displayName: string; - kloudliteGatewayRegion: string; - metadata?: { name: string; annotations?: any }; - }; -}; + +export type ConsoleGetAccountQuery = { accounts_getAccount?: { targetNamespace?: string, updateTime: any, contactEmail?: string, displayName: string, kloudliteGatewayRegion: string, metadata?: { name: string, annotations?: any } } }; export type ConsoleDeleteAccountMutationVariables = Exact<{ accountName: Scalars['String']['input']; }>; + export type ConsoleDeleteAccountMutation = { accounts_deleteAccount: boolean }; -export type ConsoleListDnsHostsQueryVariables = Exact<{ [key: string]: never }>; +export type ConsoleListDnsHostsQueryVariables = Exact<{ [key: string]: never; }>; -export type ConsoleListDnsHostsQuery = { - infra_listClusters?: { - edges: Array<{ - node: { - metadata: { name: string; namespace?: string }; - spec: { publicDNSHost: string }; - }; - }>; - }; -}; + +export type ConsoleListDnsHostsQuery = { infra_listClusters?: { edges: Array<{ node: { metadata: { name: string, namespace?: string }, spec: { publicDNSHost: string } } }> } }; export type ConsoleCreateClusterMutationVariables = Exact<{ cluster: ClusterIn; }>; -export type ConsoleCreateClusterMutation = { - infra_createCluster?: { id: string }; -}; + +export type ConsoleCreateClusterMutation = { infra_createCluster?: { id: string } }; export type ConsoleDeleteClusterMutationVariables = Exact<{ name: Scalars['String']['input']; }>; + export type ConsoleDeleteClusterMutation = { infra_deleteCluster: boolean }; -export type ConsoleClustersCountQueryVariables = Exact<{ - [key: string]: never; -}>; +export type ConsoleClustersCountQueryVariables = Exact<{ [key: string]: never; }>; -export type ConsoleClustersCountQuery = { - infra_listClusters?: { totalCount: number }; -}; + +export type ConsoleClustersCountQuery = { infra_listClusters?: { totalCount: number } }; export type ConsoleListAllClustersQueryVariables = Exact<{ search?: InputMaybe; pagination?: InputMaybe; }>; -export type ConsoleListAllClustersQuery = { - byok_clusters?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - ownedBy?: string; - clusterSvcCIDR: string; - lastOnlineAt?: any; - creationTime: any; - displayName: string; - globalVPN: string; - id: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListAllClustersQuery = { byok_clusters?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, ownedBy?: string, clusterSvcCIDR: string, lastOnlineAt?: any, creationTime: any, displayName: string, globalVPN: string, id: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleListClustersQueryVariables = Exact<{ search?: InputMaybe; pagination?: InputMaybe; }>; -export type ConsoleListClustersQuery = { - infra_listClusters?: { - totalCount: number; - pageInfo: { - startCursor?: string; - hasPrevPage?: boolean; - hasNextPage?: boolean; - endCursor?: string; - }; - edges: Array<{ - cursor: string; - node: { - id: string; - displayName: string; - markedForDeletion?: boolean; - lastOnlineAt?: any; - creationTime: any; - updateTime: any; - recordVersion: number; - metadata: { name: string; annotations?: any; generation: number }; - lastUpdatedBy: { userId: string; userName: string; userEmail: string }; - createdBy: { userEmail: string; userId: string; userName: string }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - spec: { - messageQueueTopicName: string; - kloudliteRelease: string; - accountId: string; - accountName: string; - availabilityMode: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode; - cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - backupToS3Enabled: boolean; - cloudflareEnabled?: boolean; - clusterInternalDnsHost?: string; - publicDNSHost: string; - taintMasterNodes: boolean; - clusterTokenRef?: { key: string; name: string; namespace?: string }; - aws?: { - nodePools?: any; - region: string; - spotNodePools?: any; - k3sMasters?: { - iamInstanceProfileRole?: string; - instanceType: string; - nodes?: any; - nvidiaGpuEnabled: boolean; - rootVolumeSize: number; - rootVolumeType: string; - }; - }; - gcp?: { - gcpProjectID: string; - region: string; - credentialsRef: { name: string; namespace?: string }; - }; - output?: { - keyK3sAgentJoinToken: string; - keyK3sServerJoinToken: string; - keyKubeconfig: string; - secretName: string; - }; - }; - }; - }>; - }; -}; + +export type ConsoleListClustersQuery = { infra_listClusters?: { totalCount: number, pageInfo: { startCursor?: string, hasPrevPage?: boolean, hasNextPage?: boolean, endCursor?: string }, edges: Array<{ cursor: string, node: { id: string, displayName: string, markedForDeletion?: boolean, lastOnlineAt?: any, creationTime: any, updateTime: any, recordVersion: number, metadata: { name: string, annotations?: any, generation: number }, lastUpdatedBy: { userId: string, userName: string, userEmail: string }, createdBy: { userEmail: string, userId: string, userName: string }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any }, spec: { messageQueueTopicName: string, kloudliteRelease: string, accountId: string, accountName: string, availabilityMode: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode, cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider, backupToS3Enabled: boolean, cloudflareEnabled?: boolean, clusterInternalDnsHost?: string, publicDNSHost: string, taintMasterNodes: boolean, clusterTokenRef?: { key: string, name: string, namespace?: string }, aws?: { nodePools?: any, region: string, spotNodePools?: any, k3sMasters?: { iamInstanceProfileRole?: string, instanceType: string, nodes?: any, nvidiaGpuEnabled: boolean, rootVolumeSize: number, rootVolumeType: string } }, gcp?: { gcpProjectID: string, region: string, credentialsRef: { name: string, namespace?: string } }, output?: { keyK3sAgentJoinToken: string, keyK3sServerJoinToken: string, keyKubeconfig: string, secretName: string } } } }> } }; export type ConsoleGetClusterQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetClusterQuery = { - infra_getCluster?: { - accountName: string; - apiVersion?: string; - lastOnlineAt?: any; - creationTime: any; - displayName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - accountId: string; - accountName: string; - availabilityMode: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode; - backupToS3Enabled: boolean; - cloudflareEnabled?: boolean; - cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - clusterInternalDnsHost?: string; - kloudliteRelease: string; - messageQueueTopicName: string; - publicDNSHost: string; - taintMasterNodes: boolean; - aws?: { - nodePools?: any; - region: string; - spotNodePools?: any; - k3sMasters?: { - iamInstanceProfileRole?: string; - instanceType: string; - nodes?: any; - nvidiaGpuEnabled: boolean; - rootVolumeSize: number; - rootVolumeType: string; - }; - }; - clusterTokenRef?: { key: string; name: string; namespace?: string }; - output?: { - keyK3sAgentJoinToken: string; - keyK3sServerJoinToken: string; - keyKubeconfig: string; - secretName: string; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - error?: string; - lastSyncedAt?: any; - recordVersion: number; - syncScheduledAt?: any; - }; - }; -}; + +export type ConsoleGetClusterQuery = { infra_getCluster?: { accountName: string, apiVersion?: string, lastOnlineAt?: any, creationTime: any, displayName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { accountId: string, accountName: string, availabilityMode: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__ClusterSpecAvailabilityMode, backupToS3Enabled: boolean, cloudflareEnabled?: boolean, cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider, clusterInternalDnsHost?: string, kloudliteRelease: string, messageQueueTopicName: string, publicDNSHost: string, taintMasterNodes: boolean, aws?: { nodePools?: any, region: string, spotNodePools?: any, k3sMasters?: { iamInstanceProfileRole?: string, instanceType: string, nodes?: any, nvidiaGpuEnabled: boolean, rootVolumeSize: number, rootVolumeType: string } }, clusterTokenRef?: { key: string, name: string, namespace?: string }, output?: { keyK3sAgentJoinToken: string, keyK3sServerJoinToken: string, keyKubeconfig: string, secretName: string } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { error?: string, lastSyncedAt?: any, recordVersion: number, syncScheduledAt?: any } } }; export type ConsoleGetClusterStatusQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetClusterStatusQuery = { - infra_getBYOKCluster?: { lastOnlineAt?: any }; -}; + +export type ConsoleGetClusterStatusQuery = { infra_getBYOKCluster?: { lastOnlineAt?: any } }; export type ConsoleListClusterStatusQueryVariables = Exact<{ search?: InputMaybe; pagination?: InputMaybe; }>; -export type ConsoleListClusterStatusQuery = { - infra_listBYOKClusters?: { - edges: Array<{ node: { lastOnlineAt?: any; metadata: { name: string } } }>; - }; -}; + +export type ConsoleListClusterStatusQuery = { infra_listBYOKClusters?: { edges: Array<{ node: { lastOnlineAt?: any, metadata: { name: string } } }> } }; export type ConsoleGetKubeConfigQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetKubeConfigQuery = { - infra_getCluster?: { adminKubeconfig?: { encoding: string; value: string } }; -}; + +export type ConsoleGetKubeConfigQuery = { infra_getCluster?: { adminKubeconfig?: { encoding: string, value: string } } }; export type ConsoleUpdateClusterMutationVariables = Exact<{ cluster: ClusterIn; }>; -export type ConsoleUpdateClusterMutation = { - infra_updateCluster?: { id: string }; -}; + +export type ConsoleUpdateClusterMutation = { infra_updateCluster?: { id: string } }; export type ConsoleCheckAwsAccessQueryVariables = Exact<{ cloudproviderName: Scalars['String']['input']; }>; -export type ConsoleCheckAwsAccessQuery = { - infra_checkAwsAccess: { result: boolean; installationUrl?: string }; -}; + +export type ConsoleCheckAwsAccessQuery = { infra_checkAwsAccess: { result: boolean, installationUrl?: string } }; export type ConsoleListProviderSecretsQueryVariables = Exact<{ search?: InputMaybe; pagination?: InputMaybe; }>; -export type ConsoleListProviderSecretsQuery = { - infra_listProviderSecrets?: { - totalCount: number; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - edges: Array<{ - cursor: string; - node: { - cloudProviderName: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - creationTime: any; - displayName: string; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - aws?: { - authMechanism: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism; - }; - gcp?: { serviceAccountJSON: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - namespace?: string; - name: string; - labels?: any; - annotations?: any; - }; - }; - }>; - }; -}; + +export type ConsoleListProviderSecretsQuery = { infra_listProviderSecrets?: { totalCount: number, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string }, edges: Array<{ cursor: string, node: { cloudProviderName: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider, creationTime: any, displayName: string, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, aws?: { authMechanism: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsAuthMechanism }, gcp?: { serviceAccountJSON: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { namespace?: string, name: string, labels?: any, annotations?: any } } }> } }; export type ConsoleCreateProviderSecretMutationVariables = Exact<{ secret: CloudProviderSecretIn; }>; -export type ConsoleCreateProviderSecretMutation = { - infra_createProviderSecret?: { metadata: { name: string } }; -}; + +export type ConsoleCreateProviderSecretMutation = { infra_createProviderSecret?: { metadata: { name: string } } }; export type ConsoleUpdateProviderSecretMutationVariables = Exact<{ secret: CloudProviderSecretIn; }>; -export type ConsoleUpdateProviderSecretMutation = { - infra_updateProviderSecret?: { id: string }; -}; + +export type ConsoleUpdateProviderSecretMutation = { infra_updateProviderSecret?: { id: string } }; export type ConsoleDeleteProviderSecretMutationVariables = Exact<{ secretName: Scalars['String']['input']; }>; -export type ConsoleDeleteProviderSecretMutation = { - infra_deleteProviderSecret: boolean; -}; + +export type ConsoleDeleteProviderSecretMutation = { infra_deleteProviderSecret: boolean }; export type ConsoleGetProviderSecretQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetProviderSecretQuery = { - infra_getProviderSecret?: { - cloudProviderName: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - creationTime: any; - displayName: string; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { namespace?: string; name: string; labels?: any }; - }; -}; + +export type ConsoleGetProviderSecretQuery = { infra_getProviderSecret?: { cloudProviderName: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider, creationTime: any, displayName: string, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { namespace?: string, name: string, labels?: any } } }; export type ConsoleGetNodePoolQueryVariables = Exact<{ clusterName: Scalars['String']['input']; poolName: Scalars['String']['input']; }>; -export type ConsoleGetNodePoolQuery = { - infra_getNodePool?: { - id: string; - clusterName: string; - creationTime: any; - displayName: string; - kind?: string; - markedForDeletion?: boolean; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - maxCount: number; - minCount: number; - nodeLabels?: any; - gcp?: { - availabilityZone: string; - machineType: string; - poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType; - }; - aws?: { - availabilityZone: string; - iamInstanceProfileRole?: string; - nvidiaGpuEnabled: boolean; - poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType; - rootVolumeSize: number; - rootVolumeType: string; - ec2Pool?: { instanceType: string; nodes?: any }; - spotPool?: { - nodes?: any; - spotFleetTaggingRoleName: string; - cpuNode?: { - memoryPerVcpu?: { max: string; min: string }; - vcpu: { max: string; min: string }; - }; - gpuNode?: { instanceTypes: Array }; - }; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - }; -}; + +export type ConsoleGetNodePoolQuery = { infra_getNodePool?: { id: string, clusterName: string, creationTime: any, displayName: string, kind?: string, markedForDeletion?: boolean, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider, maxCount: number, minCount: number, nodeLabels?: any, gcp?: { availabilityZone: string, machineType: string, poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType }, aws?: { availabilityZone: string, iamInstanceProfileRole?: string, nvidiaGpuEnabled: boolean, poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType, rootVolumeSize: number, rootVolumeType: string, ec2Pool?: { instanceType: string, nodes?: any }, spotPool?: { nodes?: any, spotFleetTaggingRoleName: string, cpuNode?: { memoryPerVcpu?: { max: string, min: string }, vcpu: { max: string, min: string } }, gpuNode?: { instanceTypes: Array } } } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> } } }; export type ConsoleCreateNodePoolMutationVariables = Exact<{ clusterName: Scalars['String']['input']; pool: NodePoolIn; }>; -export type ConsoleCreateNodePoolMutation = { - infra_createNodePool?: { id: string }; -}; + +export type ConsoleCreateNodePoolMutation = { infra_createNodePool?: { id: string } }; export type ConsoleUpdateNodePoolMutationVariables = Exact<{ clusterName: Scalars['String']['input']; pool: NodePoolIn; }>; -export type ConsoleUpdateNodePoolMutation = { - infra_updateNodePool?: { id: string }; -}; + +export type ConsoleUpdateNodePoolMutation = { infra_updateNodePool?: { id: string } }; export type ConsoleListNodePoolsQueryVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -2344,240 +1879,57 @@ export type ConsoleListNodePoolsQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListNodePoolsQuery = { - infra_listNodePools?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - id: string; - clusterName: string; - creationTime: any; - displayName: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { generation: number; name: string; namespace?: string }; - spec: { - cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider; - maxCount: number; - minCount: number; - nodeLabels?: any; - gcp?: { - availabilityZone: string; - machineType: string; - poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType; - }; - aws?: { - availabilityZone: string; - nvidiaGpuEnabled: boolean; - poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType; - ec2Pool?: { instanceType: string; nodes?: any }; - spotPool?: { - nodes?: any; - spotFleetTaggingRoleName: string; - cpuNode?: { - memoryPerVcpu?: { max: string; min: string }; - vcpu: { max: string; min: string }; - }; - gpuNode?: { instanceTypes: Array }; - }; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListNodePoolsQuery = { infra_listNodePools?: { totalCount: number, edges: Array<{ cursor: string, node: { id: string, clusterName: string, creationTime: any, displayName: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { generation: number, name: string, namespace?: string }, spec: { cloudProvider: Github__Com___Kloudlite___Operator___Apis___Common____Types__CloudProvider, maxCount: number, minCount: number, nodeLabels?: any, gcp?: { availabilityZone: string, machineType: string, poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__GcpPoolType }, aws?: { availabilityZone: string, nvidiaGpuEnabled: boolean, poolType: Github__Com___Kloudlite___Operator___Apis___Clusters___V1__AwsPoolType, ec2Pool?: { instanceType: string, nodes?: any }, spotPool?: { nodes?: any, spotFleetTaggingRoleName: string, cpuNode?: { memoryPerVcpu?: { max: string, min: string }, vcpu: { max: string, min: string } }, gpuNode?: { instanceTypes: Array } } } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleDeleteNodePoolMutationVariables = Exact<{ clusterName: Scalars['String']['input']; poolName: Scalars['String']['input']; }>; + export type ConsoleDeleteNodePoolMutation = { infra_deleteNodePool: boolean }; export type ConsoleGetEnvironmentQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetEnvironmentQuery = { - core_getEnvironment?: { - creationTime: any; - displayName: string; - clusterName: string; - isArchived?: boolean; - markedForDeletion?: boolean; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - suspend?: boolean; - targetNamespace?: string; - routing?: { - mode?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode; - privateIngressClass?: string; - publicIngressClass?: string; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - }; -}; + +export type ConsoleGetEnvironmentQuery = { core_getEnvironment?: { creationTime: any, displayName: string, clusterName: string, isArchived?: boolean, markedForDeletion?: boolean, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { suspend?: boolean, targetNamespace?: string, routing?: { mode?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode, privateIngressClass?: string, publicIngressClass?: string } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> } } }; export type ConsoleCreateEnvironmentMutationVariables = Exact<{ env: EnvironmentIn; }>; -export type ConsoleCreateEnvironmentMutation = { - core_createEnvironment?: { id: string }; -}; -export type ConsoleSetupDefaultEnvironmentMutationVariables = Exact<{ - [key: string]: never; -}>; +export type ConsoleCreateEnvironmentMutation = { core_createEnvironment?: { id: string } }; -export type ConsoleSetupDefaultEnvironmentMutation = { - core_setupDefaultEnvironment: boolean; -}; +export type ConsoleSetupDefaultEnvironmentMutationVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleSetupDefaultEnvironmentMutation = { core_setupDefaultEnvironment: boolean }; export type ConsoleUpdateEnvironmentMutationVariables = Exact<{ env: EnvironmentIn; }>; -export type ConsoleUpdateEnvironmentMutation = { - core_updateEnvironment?: { id: string }; -}; + +export type ConsoleUpdateEnvironmentMutation = { core_updateEnvironment?: { id: string } }; export type ConsoleDeleteEnvironmentMutationVariables = Exact<{ envName: Scalars['String']['input']; }>; -export type ConsoleDeleteEnvironmentMutation = { - core_deleteEnvironment: boolean; -}; + +export type ConsoleDeleteEnvironmentMutation = { core_deleteEnvironment: boolean }; export type ConsoleListEnvironmentsQueryVariables = Exact<{ search?: InputMaybe; pq?: InputMaybe; }>; -export type ConsoleListEnvironmentsQuery = { - core_listEnvironments?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - creationTime: any; - displayName: string; - clusterName: string; - isArchived?: boolean; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { generation: number; name: string; namespace?: string }; - spec?: { - suspend?: boolean; - targetNamespace?: string; - routing?: { - mode?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode; - privateIngressClass?: string; - publicIngressClass?: string; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListEnvironmentsQuery = { core_listEnvironments?: { totalCount: number, edges: Array<{ cursor: string, node: { creationTime: any, displayName: string, clusterName: string, isArchived?: boolean, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { generation: number, name: string, namespace?: string }, spec?: { suspend?: boolean, targetNamespace?: string, routing?: { mode?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode, privateIngressClass?: string, publicIngressClass?: string } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCloneEnvironmentMutationVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -2587,15 +1939,15 @@ export type ConsoleCloneEnvironmentMutationVariables = Exact<{ environmentRoutingMode: Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode; }>; -export type ConsoleCloneEnvironmentMutation = { - core_cloneEnvironment?: { id: string }; -}; + +export type ConsoleCloneEnvironmentMutation = { core_cloneEnvironment?: { id: string } }; export type ConsoleRestartAppQueryVariables = Exact<{ envName: Scalars['String']['input']; appName: Scalars['String']['input']; }>; + export type ConsoleRestartAppQuery = { core_restartApp: boolean }; export type ConsoleCreateAppMutationVariables = Exact<{ @@ -2603,6 +1955,7 @@ export type ConsoleCreateAppMutationVariables = Exact<{ app: AppIn; }>; + export type ConsoleCreateAppMutation = { core_createApp?: { id: string } }; export type ConsoleUpdateAppMutationVariables = Exact<{ @@ -2610,19 +1963,18 @@ export type ConsoleUpdateAppMutationVariables = Exact<{ app: AppIn; }>; + export type ConsoleUpdateAppMutation = { core_updateApp?: { id: string } }; export type ConsoleInterceptAppMutationVariables = Exact<{ - portMappings?: InputMaybe< - | Array - | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn - >; + portMappings?: InputMaybe | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn>; intercept: Scalars['Boolean']['input']; deviceName: Scalars['String']['input']; appname: Scalars['String']['input']; envName: Scalars['String']['input']; }>; + export type ConsoleInterceptAppMutation = { core_interceptApp: boolean }; export type ConsoleRemoveDeviceInterceptsMutationVariables = Exact<{ @@ -2630,15 +1982,15 @@ export type ConsoleRemoveDeviceInterceptsMutationVariables = Exact<{ deviceName: Scalars['String']['input']; }>; -export type ConsoleRemoveDeviceInterceptsMutation = { - core_removeDeviceIntercepts: boolean; -}; + +export type ConsoleRemoveDeviceInterceptsMutation = { core_removeDeviceIntercepts: boolean }; export type ConsoleDeleteAppMutationVariables = Exact<{ envName: Scalars['String']['input']; appName: Scalars['String']['input']; }>; + export type ConsoleDeleteAppMutation = { core_deleteApp: boolean }; export type ConsoleGetAppQueryVariables = Exact<{ @@ -2646,134 +1998,8 @@ export type ConsoleGetAppQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetAppQuery = { - core_getApp?: { - id: string; - recordVersion: number; - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - markedForDeletion?: boolean; - ciBuildId?: string; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { annotations?: any; name: string; namespace?: string }; - spec: { - displayName?: string; - freeze?: boolean; - nodeSelector?: any; - region?: string; - replicas?: number; - serviceAccount?: string; - router?: { domains: Array }; - containers: Array<{ - args?: Array; - command?: Array; - image: string; - imagePullPolicy?: string; - name: string; - env?: Array<{ - key: string; - optional?: boolean; - refKey?: string; - refName?: string; - type?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - value?: string; - }>; - envFrom?: Array<{ - refName: string; - type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - }>; - livenessProbe?: { - failureThreshold?: number; - initialDelay?: number; - interval?: number; - type: string; - httpGet?: { httpHeaders?: any; path: string; port: number }; - shell?: { command?: Array }; - tcp?: { port: number }; - }; - readinessProbe?: { - failureThreshold?: number; - initialDelay?: number; - interval?: number; - type: string; - }; - resourceCpu?: { max?: string; min?: string }; - resourceMemory?: { max?: string; min?: string }; - volumes?: Array<{ - mountPath: string; - refName: string; - type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - items?: Array<{ fileName?: string; key: string }>; - }>; - }>; - hpa?: { - enabled: boolean; - maxReplicas?: number; - minReplicas?: number; - thresholdCpu?: number; - thresholdMemory?: number; - }; - intercept?: { - enabled?: boolean; - toDevice?: string; - portMappings?: Array<{ devicePort: number; appPort: number }>; - }; - services?: Array<{ port: number }>; - tolerations?: Array<{ - effect?: K8s__Io___Api___Core___V1__TaintEffect; - key?: string; - operator?: K8s__Io___Api___Core___V1__TolerationOperator; - tolerationSeconds?: number; - value?: string; - }>; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - title: string; - name: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - build?: { - id: string; - buildClusterName: string; - name: string; - source: { - branch: string; - provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider; - repository: string; - }; - spec: { - buildOptions?: { - buildArgs?: any; - buildContexts?: any; - contextDir?: string; - dockerfileContent?: string; - dockerfilePath?: string; - targetPlatforms?: Array; - }; - registry: { repo: { name: string; tags: Array } }; - resource: { cpu: number; memoryInMb: number }; - }; - }; - }; -}; + +export type ConsoleGetAppQuery = { core_getApp?: { id: string, recordVersion: number, creationTime: any, displayName: string, enabled?: boolean, environmentName: string, markedForDeletion?: boolean, ciBuildId?: string, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, name: string, namespace?: string }, spec: { displayName?: string, freeze?: boolean, nodeSelector?: any, region?: string, replicas?: number, serviceAccount?: string, router?: { domains: Array }, containers: Array<{ args?: Array, command?: Array, image: string, imagePullPolicy?: string, name: string, env?: Array<{ key: string, optional?: boolean, refKey?: string, refName?: string, type?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret, value?: string }>, envFrom?: Array<{ refName: string, type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret }>, livenessProbe?: { failureThreshold?: number, initialDelay?: number, interval?: number, type: string, httpGet?: { httpHeaders?: any, path: string, port: number }, shell?: { command?: Array }, tcp?: { port: number } }, readinessProbe?: { failureThreshold?: number, initialDelay?: number, interval?: number, type: string }, resourceCpu?: { max?: string, min?: string }, resourceMemory?: { max?: string, min?: string }, volumes?: Array<{ mountPath: string, refName: string, type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret, items?: Array<{ fileName?: string, key: string }> }> }>, hpa?: { enabled: boolean, maxReplicas?: number, minReplicas?: number, thresholdCpu?: number, thresholdMemory?: number }, intercept?: { enabled?: boolean, toDevice?: string, portMappings?: Array<{ devicePort: number, appPort: number }> }, services?: Array<{ port: number }>, tolerations?: Array<{ effect?: K8s__Io___Api___Core___V1__TaintEffect, key?: string, operator?: K8s__Io___Api___Core___V1__TolerationOperator, tolerationSeconds?: number, value?: string }> }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, title: string, name: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, build?: { id: string, buildClusterName: string, name: string, source: { branch: string, provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider, repository: string }, spec: { buildOptions?: { buildArgs?: any, buildContexts?: any, contextDir?: string, dockerfileContent?: string, dockerfilePath?: string, targetPlatforms?: Array }, registry: { repo: { name: string, tags: Array } }, resource: { cpu: number, memoryInMb: number } } } } }; export type ConsoleListAppsQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -2781,349 +2007,51 @@ export type ConsoleListAppsQueryVariables = Exact<{ search?: InputMaybe; }>; -export type ConsoleListAppsQuery = { - core_listApps?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - apiVersion?: string; - ciBuildId?: string; - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - serviceHost?: string; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - displayName?: string; - freeze?: boolean; - nodeSelector?: any; - region?: string; - replicas?: number; - serviceAccount?: string; - containers: Array<{ - args?: Array; - command?: Array; - image: string; - imagePullPolicy?: string; - name: string; - env?: Array<{ - key: string; - optional?: boolean; - refKey?: string; - refName?: string; - type?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - value?: string; - }>; - envFrom?: Array<{ - refName: string; - type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - }>; - livenessProbe?: { - failureThreshold?: number; - initialDelay?: number; - interval?: number; - type: string; - httpGet?: { httpHeaders?: any; path: string; port: number }; - shell?: { command?: Array }; - tcp?: { port: number }; - }; - readinessProbe?: { - failureThreshold?: number; - initialDelay?: number; - interval?: number; - type: string; - }; - resourceCpu?: { max?: string; min?: string }; - resourceMemory?: { max?: string; min?: string }; - volumes?: Array<{ - mountPath: string; - refName: string; - type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret; - items?: Array<{ fileName?: string; key: string }>; - }>; - }>; - hpa?: { - enabled: boolean; - maxReplicas?: number; - minReplicas?: number; - thresholdCpu?: number; - thresholdMemory?: number; - }; - intercept?: { - enabled?: boolean; - toDevice?: string; - portMappings?: Array<{ appPort: number; devicePort: number }>; - }; - router?: { - backendProtocol?: string; - domains: Array; - ingressClass?: string; - maxBodySizeInMB?: number; - basicAuth?: { - enabled: boolean; - secretName?: string; - username?: string; - }; - cors?: { - allowCredentials?: boolean; - enabled?: boolean; - origins?: Array; - }; - https?: { - clusterIssuer?: string; - enabled: boolean; - forceRedirect?: boolean; - }; - rateLimit?: { - connections?: number; - enabled?: boolean; - rpm?: number; - rps?: number; - }; - routes?: Array<{ - app: string; - path: string; - port: number; - rewrite?: boolean; - }>; - }; - services?: Array<{ port: number; protocol?: string }>; - tolerations?: Array<{ - effect?: K8s__Io___Api___Core___V1__TaintEffect; - key?: string; - operator?: K8s__Io___Api___Core___V1__TolerationOperator; - tolerationSeconds?: number; - value?: string; - }>; - topologySpreadConstraints?: Array<{ - matchLabelKeys?: Array; - maxSkew: number; - minDomains?: number; - nodeAffinityPolicy?: string; - nodeTaintsPolicy?: string; - topologyKey: string; - whenUnsatisfiable: K8s__Io___Api___Core___V1__UnsatisfiableConstraintAction; - labelSelector?: { - matchLabels?: any; - matchExpressions?: Array<{ - key: string; - operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator; - values?: Array; - }>; - }; - }>; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - build?: { - id: string; - buildClusterName: string; - creationTime: any; - errorMessages: any; - markedForDeletion?: boolean; - name: string; - recordVersion: number; - status: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__BuildStatus; - updateTime: any; - credUser: { userEmail: string; userId: string; userName: string }; - source: { - branch: string; - provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider; - repository: string; - webhookId?: number; - }; - spec: { - accountName: string; - buildOptions?: { - buildArgs?: any; - buildContexts?: any; - contextDir?: string; - dockerfileContent?: string; - dockerfilePath?: string; - targetPlatforms?: Array; - }; - caches?: Array<{ name: string; path: string }>; - registry: { repo: { name: string; tags: Array } }; - resource: { cpu: number; memoryInMb: number }; - }; - latestBuildRun?: { - accountName: string; - apiVersion?: string; - buildId: string; - clusterName: string; - creationTime: any; - displayName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - }; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListAppsQuery = { core_listApps?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, apiVersion?: string, ciBuildId?: string, creationTime: any, displayName: string, enabled?: boolean, environmentName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, serviceHost?: string, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { displayName?: string, freeze?: boolean, nodeSelector?: any, region?: string, replicas?: number, serviceAccount?: string, containers: Array<{ args?: Array, command?: Array, image: string, imagePullPolicy?: string, name: string, env?: Array<{ key: string, optional?: boolean, refKey?: string, refName?: string, type?: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret, value?: string }>, envFrom?: Array<{ refName: string, type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret }>, livenessProbe?: { failureThreshold?: number, initialDelay?: number, interval?: number, type: string, httpGet?: { httpHeaders?: any, path: string, port: number }, shell?: { command?: Array }, tcp?: { port: number } }, readinessProbe?: { failureThreshold?: number, initialDelay?: number, interval?: number, type: string }, resourceCpu?: { max?: string, min?: string }, resourceMemory?: { max?: string, min?: string }, volumes?: Array<{ mountPath: string, refName: string, type: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ConfigOrSecret, items?: Array<{ fileName?: string, key: string }> }> }>, hpa?: { enabled: boolean, maxReplicas?: number, minReplicas?: number, thresholdCpu?: number, thresholdMemory?: number }, intercept?: { enabled?: boolean, toDevice?: string, portMappings?: Array<{ appPort: number, devicePort: number }> }, router?: { backendProtocol?: string, domains: Array, ingressClass?: string, maxBodySizeInMB?: number, basicAuth?: { enabled: boolean, secretName?: string, username?: string }, cors?: { allowCredentials?: boolean, enabled?: boolean, origins?: Array }, https?: { clusterIssuer?: string, enabled: boolean, forceRedirect?: boolean }, rateLimit?: { connections?: number, enabled?: boolean, rpm?: number, rps?: number }, routes?: Array<{ app: string, path: string, port: number, rewrite?: boolean }> }, services?: Array<{ port: number, protocol?: string }>, tolerations?: Array<{ effect?: K8s__Io___Api___Core___V1__TaintEffect, key?: string, operator?: K8s__Io___Api___Core___V1__TolerationOperator, tolerationSeconds?: number, value?: string }>, topologySpreadConstraints?: Array<{ matchLabelKeys?: Array, maxSkew: number, minDomains?: number, nodeAffinityPolicy?: string, nodeTaintsPolicy?: string, topologyKey: string, whenUnsatisfiable: K8s__Io___Api___Core___V1__UnsatisfiableConstraintAction, labelSelector?: { matchLabels?: any, matchExpressions?: Array<{ key: string, operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator, values?: Array }> } }> }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any }, build?: { id: string, buildClusterName: string, creationTime: any, errorMessages: any, markedForDeletion?: boolean, name: string, recordVersion: number, status: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__BuildStatus, updateTime: any, credUser: { userEmail: string, userId: string, userName: string }, source: { branch: string, provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider, repository: string, webhookId?: number }, spec: { accountName: string, buildOptions?: { buildArgs?: any, buildContexts?: any, contextDir?: string, dockerfileContent?: string, dockerfilePath?: string, targetPlatforms?: Array }, caches?: Array<{ name: string, path: string }>, registry: { repo: { name: string, tags: Array } }, resource: { cpu: number, memoryInMb: number } }, latestBuildRun?: { accountName: string, apiVersion?: string, buildId: string, clusterName: string, creationTime: any, displayName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any } } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateExternalAppMutationVariables = Exact<{ envName: Scalars['String']['input']; externalApp: ExternalAppIn; }>; -export type ConsoleCreateExternalAppMutation = { - core_createExternalApp?: { id: string }; -}; + +export type ConsoleCreateExternalAppMutation = { core_createExternalApp?: { id: string } }; export type ConsoleUpdateExternalAppMutationVariables = Exact<{ envName: Scalars['String']['input']; externalApp: ExternalAppIn; }>; -export type ConsoleUpdateExternalAppMutation = { - core_updateExternalApp?: { id: string }; -}; + +export type ConsoleUpdateExternalAppMutation = { core_updateExternalApp?: { id: string } }; export type ConsoleInterceptExternalAppMutationVariables = Exact<{ envName: Scalars['String']['input']; externalAppName: Scalars['String']['input']; deviceName: Scalars['String']['input']; intercept: Scalars['Boolean']['input']; - portMappings?: InputMaybe< - | Array - | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn - >; + portMappings?: InputMaybe | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn>; }>; -export type ConsoleInterceptExternalAppMutation = { - core_interceptExternalApp: boolean; -}; + +export type ConsoleInterceptExternalAppMutation = { core_interceptExternalApp: boolean }; export type ConsoleDeleteExternalAppMutationVariables = Exact<{ envName: Scalars['String']['input']; externalAppName: Scalars['String']['input']; }>; -export type ConsoleDeleteExternalAppMutation = { - core_deleteExternalApp: boolean; -}; + +export type ConsoleDeleteExternalAppMutation = { core_deleteExternalApp: boolean }; export type ConsoleGetExternalAppQueryVariables = Exact<{ envName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type ConsoleGetExternalAppQuery = { - core_getExternalApp?: { - accountName: string; - apiVersion?: string; - creationTime: any; - displayName: string; - environmentName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - record: string; - recordType: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType; - intercept?: { - enabled?: boolean; - toDevice?: string; - portMappings?: Array<{ appPort: number; devicePort: number }>; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; -}; + +export type ConsoleGetExternalAppQuery = { core_getExternalApp?: { accountName: string, apiVersion?: string, creationTime: any, displayName: string, environmentName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { record: string, recordType: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType, intercept?: { enabled?: boolean, toDevice?: string, portMappings?: Array<{ appPort: number, devicePort: number }> } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }; export type ConsoleListExternalAppsQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -3131,104 +2059,31 @@ export type ConsoleListExternalAppsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListExternalAppsQuery = { - core_listExternalApps?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - apiVersion?: string; - creationTime: any; - displayName: string; - environmentName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - record: string; - recordType: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType; - intercept?: { - enabled?: boolean; - toDevice?: string; - portMappings?: Array<{ appPort: number; devicePort: number }>; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListExternalAppsQuery = { core_listExternalApps?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, apiVersion?: string, creationTime: any, displayName: string, environmentName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { record: string, recordType: Github__Com___Kloudlite___Operator___Apis___Crds___V1__ExternalAppRecordType, intercept?: { enabled?: boolean, toDevice?: string, portMappings?: Array<{ appPort: number, devicePort: number }> } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateRouterMutationVariables = Exact<{ envName: Scalars['String']['input']; router: RouterIn; }>; -export type ConsoleCreateRouterMutation = { - core_createRouter?: { id: string }; -}; + +export type ConsoleCreateRouterMutation = { core_createRouter?: { id: string } }; export type ConsoleUpdateRouterMutationVariables = Exact<{ envName: Scalars['String']['input']; router: RouterIn; }>; -export type ConsoleUpdateRouterMutation = { - core_updateRouter?: { id: string }; -}; + +export type ConsoleUpdateRouterMutation = { core_updateRouter?: { id: string } }; export type ConsoleDeleteRouterMutationVariables = Exact<{ envName: Scalars['String']['input']; routerName: Scalars['String']['input']; }>; + export type ConsoleDeleteRouterMutation = { core_deleteRouter: boolean }; export type ConsoleListRoutersQueryVariables = Exact<{ @@ -3237,165 +2092,31 @@ export type ConsoleListRoutersQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListRoutersQuery = { - core_listRouters?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { generation: number; name: string; namespace?: string }; - spec: { - backendProtocol?: string; - domains: Array; - ingressClass?: string; - maxBodySizeInMB?: number; - basicAuth?: { - enabled: boolean; - secretName?: string; - username?: string; - }; - cors?: { - allowCredentials?: boolean; - enabled?: boolean; - origins?: Array; - }; - https?: { - clusterIssuer?: string; - enabled: boolean; - forceRedirect?: boolean; - }; - rateLimit?: { - connections?: number; - enabled?: boolean; - rpm?: number; - rps?: number; - }; - routes?: Array<{ - app: string; - path: string; - port: number; - rewrite?: boolean; - }>; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListRoutersQuery = { core_listRouters?: { totalCount: number, edges: Array<{ cursor: string, node: { creationTime: any, displayName: string, enabled?: boolean, environmentName: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { generation: number, name: string, namespace?: string }, spec: { backendProtocol?: string, domains: Array, ingressClass?: string, maxBodySizeInMB?: number, basicAuth?: { enabled: boolean, secretName?: string, username?: string }, cors?: { allowCredentials?: boolean, enabled?: boolean, origins?: Array }, https?: { clusterIssuer?: string, enabled: boolean, forceRedirect?: boolean }, rateLimit?: { connections?: number, enabled?: boolean, rpm?: number, rps?: number }, routes?: Array<{ app: string, path: string, port: number, rewrite?: boolean }> }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleGetRouterQueryVariables = Exact<{ envName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type ConsoleGetRouterQuery = { - core_getRouter?: { - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - markedForDeletion?: boolean; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { name: string; namespace?: string }; - spec: { - backendProtocol?: string; - domains: Array; - ingressClass?: string; - maxBodySizeInMB?: number; - basicAuth?: { enabled: boolean; secretName?: string; username?: string }; - cors?: { - allowCredentials?: boolean; - enabled?: boolean; - origins?: Array; - }; - https?: { - clusterIssuer?: string; - enabled: boolean; - forceRedirect?: boolean; - }; - rateLimit?: { - connections?: number; - enabled?: boolean; - rpm?: number; - rps?: number; - }; - routes?: Array<{ - app: string; - path: string; - port: number; - rewrite?: boolean; - }>; - }; - status?: { - checks?: any; - isReady: boolean; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - }; - }; -}; + +export type ConsoleGetRouterQuery = { core_getRouter?: { creationTime: any, displayName: string, enabled?: boolean, environmentName: string, markedForDeletion?: boolean, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { name: string, namespace?: string }, spec: { backendProtocol?: string, domains: Array, ingressClass?: string, maxBodySizeInMB?: number, basicAuth?: { enabled: boolean, secretName?: string, username?: string }, cors?: { allowCredentials?: boolean, enabled?: boolean, origins?: Array }, https?: { clusterIssuer?: string, enabled: boolean, forceRedirect?: boolean }, rateLimit?: { connections?: number, enabled?: boolean, rpm?: number, rps?: number }, routes?: Array<{ app: string, path: string, port: number, rewrite?: boolean }> }, status?: { checks?: any, isReady: boolean, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }> } } }; export type ConsoleUpdateConfigMutationVariables = Exact<{ envName: Scalars['String']['input']; config: ConfigIn; }>; -export type ConsoleUpdateConfigMutation = { - core_updateConfig?: { id: string }; -}; + +export type ConsoleUpdateConfigMutation = { core_updateConfig?: { id: string } }; export type ConsoleDeleteConfigMutationVariables = Exact<{ envName: Scalars['String']['input']; configName: Scalars['String']['input']; }>; + export type ConsoleDeleteConfigMutation = { core_deleteConfig: boolean }; export type ConsoleGetConfigQueryVariables = Exact<{ @@ -3403,24 +2124,8 @@ export type ConsoleGetConfigQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetConfigQuery = { - core_getConfig?: { - binaryData?: any; - data?: any; - displayName: string; - environmentName: string; - immutable?: boolean; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - }; -}; + +export type ConsoleGetConfigQuery = { core_getConfig?: { binaryData?: any, data?: any, displayName: string, environmentName: string, immutable?: boolean, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string } } }; export type ConsoleListConfigsQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -3428,49 +2133,16 @@ export type ConsoleListConfigsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListConfigsQuery = { - core_listConfigs?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - creationTime: any; - displayName: string; - data?: any; - environmentName: string; - immutable?: boolean; - markedForDeletion?: boolean; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListConfigsQuery = { core_listConfigs?: { totalCount: number, edges: Array<{ cursor: string, node: { creationTime: any, displayName: string, data?: any, environmentName: string, immutable?: boolean, markedForDeletion?: boolean, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateConfigMutationVariables = Exact<{ envName: Scalars['String']['input']; config: ConfigIn; }>; -export type ConsoleCreateConfigMutation = { - core_createConfig?: { id: string }; -}; + +export type ConsoleCreateConfigMutation = { core_createConfig?: { id: string } }; export type ConsoleListSecretsQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -3478,181 +2150,93 @@ export type ConsoleListSecretsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListSecretsQuery = { - core_listSecrets?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - creationTime: any; - displayName: string; - stringData?: any; - environmentName: string; - isReadyOnly: boolean; - immutable?: boolean; - markedForDeletion?: boolean; - type?: K8s__Io___Api___Core___V1__SecretType; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListSecretsQuery = { core_listSecrets?: { totalCount: number, edges: Array<{ cursor: string, node: { creationTime: any, displayName: string, stringData?: any, environmentName: string, isReadyOnly: boolean, immutable?: boolean, markedForDeletion?: boolean, type?: K8s__Io___Api___Core___V1__SecretType, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateSecretMutationVariables = Exact<{ envName: Scalars['String']['input']; secret: SecretIn; }>; -export type ConsoleCreateSecretMutation = { - core_createSecret?: { id: string }; -}; + +export type ConsoleCreateSecretMutation = { core_createSecret?: { id: string } }; export type ConsoleGetSecretQueryVariables = Exact<{ envName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type ConsoleGetSecretQuery = { - core_getSecret?: { - data?: any; - displayName: string; - environmentName: string; - immutable?: boolean; - markedForDeletion?: boolean; - stringData?: any; - type?: K8s__Io___Api___Core___V1__SecretType; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - }; -}; + +export type ConsoleGetSecretQuery = { core_getSecret?: { data?: any, displayName: string, environmentName: string, immutable?: boolean, markedForDeletion?: boolean, stringData?: any, type?: K8s__Io___Api___Core___V1__SecretType, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string } } }; export type ConsoleUpdateSecretMutationVariables = Exact<{ envName: Scalars['String']['input']; secret: SecretIn; }>; -export type ConsoleUpdateSecretMutation = { - core_updateSecret?: { id: string }; -}; + +export type ConsoleUpdateSecretMutation = { core_updateSecret?: { id: string } }; export type ConsoleDeleteSecretMutationVariables = Exact<{ envName: Scalars['String']['input']; secretName: Scalars['String']['input']; }>; + export type ConsoleDeleteSecretMutation = { core_deleteSecret: boolean }; export type ConsoleListInvitationsForAccountQueryVariables = Exact<{ accountName: Scalars['String']['input']; }>; -export type ConsoleListInvitationsForAccountQuery = { - accounts_listInvitations?: Array<{ - accepted?: boolean; - accountName: string; - creationTime: any; - id: string; - inviteToken: string; - invitedBy: string; - markedForDeletion?: boolean; - recordVersion: number; - rejected?: boolean; - updateTime: any; - userEmail?: string; - userName?: string; - userRole: Github__Com___Kloudlite___Api___Apps___Iam___Types__Role; - }>; -}; + +export type ConsoleListInvitationsForAccountQuery = { accounts_listInvitations?: Array<{ accepted?: boolean, accountName: string, creationTime: any, id: string, inviteToken: string, invitedBy: string, markedForDeletion?: boolean, recordVersion: number, rejected?: boolean, updateTime: any, userEmail?: string, userName?: string, userRole: Github__Com___Kloudlite___Api___Apps___Iam___Types__Role }> }; export type ConsoleListMembershipsForAccountQueryVariables = Exact<{ accountName: Scalars['String']['input']; }>; -export type ConsoleListMembershipsForAccountQuery = { - accounts_listMembershipsForAccount?: Array<{ - role: Github__Com___Kloudlite___Api___Apps___Iam___Types__Role; - user: { - verified: boolean; - name: string; - joined: any; - email: string; - id: string; - }; - }>; -}; + +export type ConsoleListMembershipsForAccountQuery = { accounts_listMembershipsForAccount?: Array<{ role: Github__Com___Kloudlite___Api___Apps___Iam___Types__Role, user: { verified: boolean, name: string, joined: any, email: string, id: string } }> }; export type ConsoleDeleteAccountInvitationMutationVariables = Exact<{ accountName: Scalars['String']['input']; invitationId: Scalars['String']['input']; }>; -export type ConsoleDeleteAccountInvitationMutation = { - accounts_deleteInvitation: boolean; -}; + +export type ConsoleDeleteAccountInvitationMutation = { accounts_deleteInvitation: boolean }; export type ConsoleInviteMembersForAccountMutationVariables = Exact<{ accountName: Scalars['String']['input']; invitations: Array | InvitationIn; }>; -export type ConsoleInviteMembersForAccountMutation = { - accounts_inviteMembers?: Array<{ id: string }>; -}; + +export type ConsoleInviteMembersForAccountMutation = { accounts_inviteMembers?: Array<{ id: string }> }; export type ConsoleListInvitationsForUserQueryVariables = Exact<{ onlyPending: Scalars['Boolean']['input']; }>; -export type ConsoleListInvitationsForUserQuery = { - accounts_listInvitationsForUser?: Array<{ - accountName: string; - id: string; - updateTime: any; - inviteToken: string; - }>; -}; + +export type ConsoleListInvitationsForUserQuery = { accounts_listInvitationsForUser?: Array<{ accountName: string, id: string, updateTime: any, inviteToken: string }> }; export type ConsoleAcceptInvitationMutationVariables = Exact<{ accountName: Scalars['String']['input']; inviteToken: Scalars['String']['input']; }>; -export type ConsoleAcceptInvitationMutation = { - accounts_acceptInvitation: boolean; -}; + +export type ConsoleAcceptInvitationMutation = { accounts_acceptInvitation: boolean }; export type ConsoleRejectInvitationMutationVariables = Exact<{ accountName: Scalars['String']['input']; inviteToken: Scalars['String']['input']; }>; -export type ConsoleRejectInvitationMutation = { - accounts_rejectInvitation: boolean; -}; + +export type ConsoleRejectInvitationMutation = { accounts_rejectInvitation: boolean }; export type ConsoleUpdateAccountMembershipMutationVariables = Exact<{ accountName: Scalars['String']['input']; @@ -3660,23 +2244,22 @@ export type ConsoleUpdateAccountMembershipMutationVariables = Exact<{ role: Github__Com___Kloudlite___Api___Apps___Iam___Types__Role; }>; -export type ConsoleUpdateAccountMembershipMutation = { - accounts_updateAccountMembership: boolean; -}; + +export type ConsoleUpdateAccountMembershipMutation = { accounts_updateAccountMembership: boolean }; export type ConsoleDeleteAccountMembershipMutationVariables = Exact<{ accountName: Scalars['String']['input']; memberId: Scalars['ID']['input']; }>; -export type ConsoleDeleteAccountMembershipMutation = { - accounts_removeAccountMembership: boolean; -}; + +export type ConsoleDeleteAccountMembershipMutation = { accounts_removeAccountMembership: boolean }; export type ConsoleGetCredTokenQueryVariables = Exact<{ username: Scalars['String']['input']; }>; + export type ConsoleGetCredTokenQuery = { cr_getCredToken: string }; export type ConsoleListCredQueryVariables = Exact<{ @@ -3684,48 +2267,21 @@ export type ConsoleListCredQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListCredQuery = { - cr_listCreds?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - access: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__RepoAccess; - accountName: string; - creationTime: any; - id: string; - markedForDeletion?: boolean; - name: string; - recordVersion: number; - updateTime: any; - username: string; - createdBy: { userEmail: string; userId: string; userName: string }; - expiration: { - unit: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationUnit; - value: number; - }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListCredQuery = { cr_listCreds?: { totalCount: number, edges: Array<{ cursor: string, node: { access: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__RepoAccess, accountName: string, creationTime: any, id: string, markedForDeletion?: boolean, name: string, recordVersion: number, updateTime: any, username: string, createdBy: { userEmail: string, userId: string, userName: string }, expiration: { unit: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__ExpirationUnit, value: number }, lastUpdatedBy: { userEmail: string, userId: string, userName: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateCredMutationVariables = Exact<{ credential: CredentialIn; }>; + export type ConsoleCreateCredMutation = { cr_createCred?: { id: string } }; export type ConsoleDeleteCredMutationVariables = Exact<{ username: Scalars['String']['input']; }>; + export type ConsoleDeleteCredMutation = { cr_deleteCred: boolean }; export type ConsoleListRepoQueryVariables = Exact<{ @@ -3733,42 +2289,21 @@ export type ConsoleListRepoQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListRepoQuery = { - cr_listRepos?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationTime: any; - id: string; - markedForDeletion?: boolean; - name: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListRepoQuery = { cr_listRepos?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationTime: any, id: string, markedForDeletion?: boolean, name: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateRepoMutationVariables = Exact<{ repository: RepositoryIn; }>; + export type ConsoleCreateRepoMutation = { cr_createRepo?: { id: string } }; export type ConsoleDeleteRepoMutationVariables = Exact<{ name: Scalars['String']['input']; }>; + export type ConsoleDeleteRepoMutation = { cr_deleteRepo: boolean }; export type ConsoleListDigestQueryVariables = Exact<{ @@ -3777,112 +2312,56 @@ export type ConsoleListDigestQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListDigestQuery = { - cr_listDigests?: { - totalCount: number; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - edges: Array<{ - cursor: string; - node: { - url: string; - updateTime: any; - tags: Array; - size: number; - repository: string; - digest: string; - creationTime: any; - }; - }>; - }; -}; + +export type ConsoleListDigestQuery = { cr_listDigests?: { totalCount: number, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string }, edges: Array<{ cursor: string, node: { url: string, updateTime: any, tags: Array, size: number, repository: string, digest: string, creationTime: any } }> } }; export type ConsoleDeleteDigestMutationVariables = Exact<{ repoName: Scalars['String']['input']; digest: Scalars['String']['input']; }>; + export type ConsoleDeleteDigestMutation = { cr_deleteDigest: boolean }; export type ConsoleGetGitConnectionsQueryVariables = Exact<{ state?: InputMaybe; }>; -export type ConsoleGetGitConnectionsQuery = { - githubLoginUrl: any; - gitlabLoginUrl: any; - auth_me?: { - providerGitlab?: any; - providerGithub?: any; - providerGoogle?: any; - }; -}; -export type ConsoleGetLoginsQueryVariables = Exact<{ [key: string]: never }>; +export type ConsoleGetGitConnectionsQuery = { githubLoginUrl: any, gitlabLoginUrl: any, auth_me?: { providerGitlab?: any, providerGithub?: any, providerGoogle?: any } }; -export type ConsoleGetLoginsQuery = { - auth_me?: { providerGithub?: any; providerGitlab?: any }; -}; +export type ConsoleGetLoginsQueryVariables = Exact<{ [key: string]: never; }>; -export type ConsoleLoginUrlsQueryVariables = Exact<{ [key: string]: never }>; -export type ConsoleLoginUrlsQuery = { - githubLoginUrl: any; - gitlabLoginUrl: any; -}; +export type ConsoleGetLoginsQuery = { auth_me?: { providerGithub?: any, providerGitlab?: any } }; + +export type ConsoleLoginUrlsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleLoginUrlsQuery = { githubLoginUrl: any, gitlabLoginUrl: any }; export type ConsoleListGithubReposQueryVariables = Exact<{ installationId: Scalars['Int']['input']; pagination?: InputMaybe; }>; -export type ConsoleListGithubReposQuery = { - cr_listGithubRepos?: { - totalCount?: number; - repositories: Array<{ - cloneUrl?: string; - defaultBranch?: string; - fullName?: string; - private?: boolean; - updatedAt?: any; - }>; - }; -}; + +export type ConsoleListGithubReposQuery = { cr_listGithubRepos?: { totalCount?: number, repositories: Array<{ cloneUrl?: string, defaultBranch?: string, fullName?: string, private?: boolean, updatedAt?: any }> } }; export type ConsoleListGithubInstalltionsQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListGithubInstalltionsQuery = { - cr_listGithubInstallations?: Array<{ - appId?: number; - id?: number; - nodeId?: string; - repositoriesUrl?: string; - targetId?: number; - targetType?: string; - account?: { - avatarUrl?: string; - id?: number; - login?: string; - nodeId?: string; - type?: string; - }; - }>; -}; + +export type ConsoleListGithubInstalltionsQuery = { cr_listGithubInstallations?: Array<{ appId?: number, id?: number, nodeId?: string, repositoriesUrl?: string, targetId?: number, targetType?: string, account?: { avatarUrl?: string, id?: number, login?: string, nodeId?: string, type?: string } }> }; export type ConsoleListGithubBranchesQueryVariables = Exact<{ repoUrl: Scalars['String']['input']; pagination?: InputMaybe; }>; -export type ConsoleListGithubBranchesQuery = { - cr_listGithubBranches?: Array<{ name?: string }>; -}; + +export type ConsoleListGithubBranchesQuery = { cr_listGithubBranches?: Array<{ name?: string }> }; export type ConsoleSearchGithubReposQueryVariables = Exact<{ organization: Scalars['String']['input']; @@ -3890,26 +2369,16 @@ export type ConsoleSearchGithubReposQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleSearchGithubReposQuery = { - cr_searchGithubRepos?: { - repositories: Array<{ - cloneUrl?: string; - defaultBranch?: string; - fullName?: string; - private?: boolean; - updatedAt?: any; - }>; - }; -}; + +export type ConsoleSearchGithubReposQuery = { cr_searchGithubRepos?: { repositories: Array<{ cloneUrl?: string, defaultBranch?: string, fullName?: string, private?: boolean, updatedAt?: any }> } }; export type ConsoleListGitlabGroupsQueryVariables = Exact<{ query?: InputMaybe; pagination?: InputMaybe; }>; -export type ConsoleListGitlabGroupsQuery = { - cr_listGitlabGroups?: Array<{ fullName: string; id: string }>; -}; + +export type ConsoleListGitlabGroupsQuery = { cr_listGitlabGroups?: Array<{ fullName: string, id: string }> }; export type ConsoleListGitlabReposQueryVariables = Exact<{ query?: InputMaybe; @@ -3917,15 +2386,8 @@ export type ConsoleListGitlabReposQueryVariables = Exact<{ groupId: Scalars['String']['input']; }>; -export type ConsoleListGitlabReposQuery = { - cr_listGitlabRepositories?: Array<{ - createdAt?: any; - name: string; - id: number; - public: boolean; - httpUrlToRepo: string; - }>; -}; + +export type ConsoleListGitlabReposQuery = { cr_listGitlabRepositories?: Array<{ createdAt?: any, name: string, id: number, public: boolean, httpUrlToRepo: string }> }; export type ConsoleListGitlabBranchesQueryVariables = Exact<{ repoId: Scalars['String']['input']; @@ -3933,47 +2395,35 @@ export type ConsoleListGitlabBranchesQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListGitlabBranchesQuery = { - cr_listGitlabBranches?: Array<{ name?: string; protected?: boolean }>; -}; + +export type ConsoleListGitlabBranchesQuery = { cr_listGitlabBranches?: Array<{ name?: string, protected?: boolean }> }; export type ConsoleGetDomainQueryVariables = Exact<{ domainName: Scalars['String']['input']; }>; -export type ConsoleGetDomainQuery = { - infra_getDomainEntry?: { - updateTime: any; - id: string; - domainName: string; - displayName: string; - creationTime: any; - clusterName: string; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - createdBy: { userEmail: string; userId: string; userName: string }; - }; -}; + +export type ConsoleGetDomainQuery = { infra_getDomainEntry?: { updateTime: any, id: string, domainName: string, displayName: string, creationTime: any, clusterName: string, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, createdBy: { userEmail: string, userId: string, userName: string } } }; export type ConsoleCreateDomainMutationVariables = Exact<{ domainEntry: DomainEntryIn; }>; -export type ConsoleCreateDomainMutation = { - infra_createDomainEntry?: { id: string }; -}; + +export type ConsoleCreateDomainMutation = { infra_createDomainEntry?: { id: string } }; export type ConsoleUpdateDomainMutationVariables = Exact<{ domainEntry: DomainEntryIn; }>; -export type ConsoleUpdateDomainMutation = { - infra_updateDomainEntry?: { id: string }; -}; + +export type ConsoleUpdateDomainMutation = { infra_updateDomainEntry?: { id: string } }; export type ConsoleDeleteDomainMutationVariables = Exact<{ domainName: Scalars['String']['input']; }>; + export type ConsoleDeleteDomainMutation = { infra_deleteDomainEntry: boolean }; export type ConsoleListDomainsQueryVariables = Exact<{ @@ -3981,29 +2431,8 @@ export type ConsoleListDomainsQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListDomainsQuery = { - infra_listDomainEntries?: { - totalCount: number; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - edges: Array<{ - cursor: string; - node: { - updateTime: any; - id: string; - domainName: string; - displayName: string; - creationTime: any; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - createdBy: { userEmail: string; userId: string; userName: string }; - }; - }>; - }; -}; + +export type ConsoleListDomainsQuery = { infra_listDomainEntries?: { totalCount: number, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string }, edges: Array<{ cursor: string, node: { updateTime: any, id: string, domainName: string, displayName: string, creationTime: any, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, createdBy: { userEmail: string, userId: string, userName: string } } }> } }; export type ConsoleListBuildsQueryVariables = Exact<{ repoName: Scalars['String']['input']; @@ -4011,88 +2440,14 @@ export type ConsoleListBuildsQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListBuildsQuery = { - cr_listBuilds?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - creationTime: any; - buildClusterName: string; - errorMessages: any; - id: string; - markedForDeletion?: boolean; - name: string; - status: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__BuildStatus; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - credUser: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - source: { - branch: string; - provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider; - repository: string; - webhookId?: number; - }; - spec: { - buildOptions?: { - buildArgs?: any; - buildContexts?: any; - contextDir?: string; - dockerfileContent?: string; - dockerfilePath?: string; - targetPlatforms?: Array; - }; - registry: { repo: { name: string; tags: Array } }; - resource: { cpu: number; memoryInMb: number }; - caches?: Array<{ name: string; path: string }>; - }; - latestBuildRun?: { - recordVersion: number; - markedForDeletion?: boolean; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListBuildsQuery = { cr_listBuilds?: { totalCount: number, edges: Array<{ cursor: string, node: { creationTime: any, buildClusterName: string, errorMessages: any, id: string, markedForDeletion?: boolean, name: string, status: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__BuildStatus, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, credUser: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, source: { branch: string, provider: Github__Com___Kloudlite___Api___Apps___Container____Registry___Internal___Domain___Entities__GitProvider, repository: string, webhookId?: number }, spec: { buildOptions?: { buildArgs?: any, buildContexts?: any, contextDir?: string, dockerfileContent?: string, dockerfilePath?: string, targetPlatforms?: Array }, registry: { repo: { name: string, tags: Array } }, resource: { cpu: number, memoryInMb: number }, caches?: Array<{ name: string, path: string }> }, latestBuildRun?: { recordVersion: number, markedForDeletion?: boolean, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateBuildMutationVariables = Exact<{ build: BuildIn; }>; + export type ConsoleCreateBuildMutation = { cr_addBuild?: { id: string } }; export type ConsoleUpdateBuildMutationVariables = Exact<{ @@ -4100,18 +2455,21 @@ export type ConsoleUpdateBuildMutationVariables = Exact<{ build: BuildIn; }>; + export type ConsoleUpdateBuildMutation = { cr_updateBuild?: { id: string } }; export type ConsoleDeleteBuildMutationVariables = Exact<{ crDeleteBuildId: Scalars['ID']['input']; }>; + export type ConsoleDeleteBuildMutation = { cr_deleteBuild: boolean }; export type ConsoleTriggerBuildMutationVariables = Exact<{ crTriggerBuildId: Scalars['ID']['input']; }>; + export type ConsoleTriggerBuildMutation = { cr_triggerBuild: boolean }; export type ConsoleGetPvcQueryVariables = Exact<{ @@ -4119,59 +2477,8 @@ export type ConsoleGetPvcQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetPvcQuery = { - infra_getPVC?: { - clusterName: string; - creationTime: any; - markedForDeletion?: boolean; - updateTime: any; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - accessModes?: Array; - storageClassName?: string; - volumeMode?: string; - volumeName?: string; - dataSource?: { apiGroup?: string; kind: string; name: string }; - dataSourceRef?: { - apiGroup?: string; - kind: string; - name: string; - namespace?: string; - }; - resources?: { limits?: any; requests?: any }; - selector?: { - matchLabels?: any; - matchExpressions?: Array<{ - key: string; - operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator; - values?: Array; - }>; - }; - }; - status?: { - accessModes?: Array; - allocatedResources?: any; - capacity?: any; - phase?: K8s__Io___Api___Core___V1__PersistentVolumeClaimPhase; - conditions?: Array<{ - lastProbeTime?: any; - lastTransitionTime?: any; - message?: string; - reason?: string; - status: K8s__Io___Api___Core___V1__ConditionStatus; - type: K8s__Io___Api___Core___V1__PersistentVolumeClaimConditionType; - }>; - }; - }; -}; + +export type ConsoleGetPvcQuery = { infra_getPVC?: { clusterName: string, creationTime: any, markedForDeletion?: boolean, updateTime: any, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { accessModes?: Array, storageClassName?: string, volumeMode?: string, volumeName?: string, dataSource?: { apiGroup?: string, kind: string, name: string }, dataSourceRef?: { apiGroup?: string, kind: string, name: string, namespace?: string }, resources?: { limits?: any, requests?: any }, selector?: { matchLabels?: any, matchExpressions?: Array<{ key: string, operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator, values?: Array }> } }, status?: { accessModes?: Array, allocatedResources?: any, capacity?: any, phase?: K8s__Io___Api___Core___V1__PersistentVolumeClaimPhase, conditions?: Array<{ lastProbeTime?: any, lastTransitionTime?: any, message?: string, reason?: string, status: K8s__Io___Api___Core___V1__ConditionStatus, type: K8s__Io___Api___Core___V1__PersistentVolumeClaimConditionType }> } } }; export type ConsoleListPvcsQueryVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -4179,274 +2486,16 @@ export type ConsoleListPvcsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListPvcsQuery = { - infra_listPVCs?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - creationTime: any; - id: string; - markedForDeletion?: boolean; - updateTime: any; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - accessModes?: Array; - storageClassName?: string; - volumeMode?: string; - volumeName?: string; - dataSource?: { apiGroup?: string; kind: string; name: string }; - dataSourceRef?: { - apiGroup?: string; - kind: string; - name: string; - namespace?: string; - }; - resources?: { limits?: any; requests?: any }; - selector?: { - matchLabels?: any; - matchExpressions?: Array<{ - key: string; - operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator; - values?: Array; - }>; - }; - }; - status?: { - accessModes?: Array; - allocatedResources?: any; - capacity?: any; - phase?: K8s__Io___Api___Core___V1__PersistentVolumeClaimPhase; - conditions?: Array<{ - lastProbeTime?: any; - lastTransitionTime?: any; - message?: string; - reason?: string; - status: K8s__Io___Api___Core___V1__ConditionStatus; - type: K8s__Io___Api___Core___V1__PersistentVolumeClaimConditionType; - }>; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListPvcsQuery = { infra_listPVCs?: { totalCount: number, edges: Array<{ cursor: string, node: { creationTime: any, id: string, markedForDeletion?: boolean, updateTime: any, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { accessModes?: Array, storageClassName?: string, volumeMode?: string, volumeName?: string, dataSource?: { apiGroup?: string, kind: string, name: string }, dataSourceRef?: { apiGroup?: string, kind: string, name: string, namespace?: string }, resources?: { limits?: any, requests?: any }, selector?: { matchLabels?: any, matchExpressions?: Array<{ key: string, operator: K8s__Io___Apimachinery___Pkg___Apis___Meta___V1__LabelSelectorOperator, values?: Array }> } }, status?: { accessModes?: Array, allocatedResources?: any, capacity?: any, phase?: K8s__Io___Api___Core___V1__PersistentVolumeClaimPhase, conditions?: Array<{ lastProbeTime?: any, lastTransitionTime?: any, message?: string, reason?: string, status: K8s__Io___Api___Core___V1__ConditionStatus, type: K8s__Io___Api___Core___V1__PersistentVolumeClaimConditionType }> } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleGetPvQueryVariables = Exact<{ clusterName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type ConsoleGetPvQuery = { - infra_getPV?: { - clusterName: string; - creationTime: any; - displayName: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - accessModes?: Array; - capacity?: any; - mountOptions?: Array; - persistentVolumeReclaimPolicy?: K8s__Io___Api___Core___V1__PersistentVolumeReclaimPolicy; - storageClassName?: string; - volumeMode?: string; - awsElasticBlockStore?: { - fsType?: string; - partition?: number; - readOnly?: boolean; - volumeID: string; - }; - azureDisk?: { - cachingMode?: string; - diskName: string; - diskURI: string; - fsType?: string; - kind?: string; - readOnly?: boolean; - }; - azureFile?: { - readOnly?: boolean; - secretName: string; - secretNamespace?: string; - shareName: string; - }; - cephfs?: { - monitors: Array; - path?: string; - readOnly?: boolean; - secretFile?: string; - user?: string; - secretRef?: { name?: string; namespace?: string }; - }; - cinder?: { fsType?: string; readOnly?: boolean; volumeID: string }; - claimRef?: { - apiVersion?: string; - fieldPath?: string; - kind?: string; - name?: string; - namespace?: string; - resourceVersion?: string; - uid?: string; - }; - csi?: { - driver: string; - fsType?: string; - readOnly?: boolean; - volumeAttributes?: any; - volumeHandle: string; - controllerExpandSecretRef?: { name?: string; namespace?: string }; - controllerPublishSecretRef?: { name?: string; namespace?: string }; - nodeExpandSecretRef?: { name?: string; namespace?: string }; - nodePublishSecretRef?: { name?: string; namespace?: string }; - nodeStageSecretRef?: { name?: string; namespace?: string }; - }; - fc?: { - fsType?: string; - lun?: number; - readOnly?: boolean; - targetWWNs?: Array; - wwids?: Array; - }; - flexVolume?: { - driver: string; - fsType?: string; - options?: any; - readOnly?: boolean; - }; - flocker?: { datasetName?: string; datasetUUID?: string }; - gcePersistentDisk?: { - fsType?: string; - partition?: number; - pdName: string; - readOnly?: boolean; - }; - glusterfs?: { - endpoints: string; - endpointsNamespace?: string; - path: string; - readOnly?: boolean; - }; - hostPath?: { path: string; type?: string }; - iscsi?: { - chapAuthDiscovery?: boolean; - chapAuthSession?: boolean; - fsType?: string; - initiatorName?: string; - iqn: string; - iscsiInterface?: string; - lun: number; - portals?: Array; - readOnly?: boolean; - targetPortal: string; - }; - local?: { fsType?: string; path: string }; - nfs?: { path: string; readOnly?: boolean; server: string }; - nodeAffinity?: { - required?: { - nodeSelectorTerms: Array<{ - matchExpressions?: Array<{ - key: string; - operator: K8s__Io___Api___Core___V1__NodeSelectorOperator; - values?: Array; - }>; - matchFields?: Array<{ - key: string; - operator: K8s__Io___Api___Core___V1__NodeSelectorOperator; - values?: Array; - }>; - }>; - }; - }; - photonPersistentDisk?: { fsType?: string; pdID: string }; - portworxVolume?: { - fsType?: string; - readOnly?: boolean; - volumeID: string; - }; - quobyte?: { - group?: string; - readOnly?: boolean; - registry: string; - tenant?: string; - user?: string; - volume: string; - }; - rbd?: { - fsType?: string; - image: string; - keyring?: string; - monitors: Array; - pool?: string; - readOnly?: boolean; - user?: string; - }; - scaleIO?: { - fsType?: string; - gateway: string; - protectionDomain?: string; - readOnly?: boolean; - sslEnabled?: boolean; - storageMode?: string; - storagePool?: string; - system: string; - volumeName?: string; - }; - storageos?: { - fsType?: string; - readOnly?: boolean; - volumeName?: string; - volumeNamespace?: string; - secretRef?: { - apiVersion?: string; - fieldPath?: string; - kind?: string; - name?: string; - namespace?: string; - resourceVersion?: string; - uid?: string; - }; - }; - vsphereVolume?: { - fsType?: string; - storagePolicyID?: string; - storagePolicyName?: string; - volumePath: string; - }; - }; - status?: { - lastPhaseTransitionTime?: any; - message?: string; - phase?: K8s__Io___Api___Core___V1__PersistentVolumePhase; - reason?: string; - }; - }; -}; + +export type ConsoleGetPvQuery = { infra_getPV?: { clusterName: string, creationTime: any, displayName: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { accessModes?: Array, capacity?: any, mountOptions?: Array, persistentVolumeReclaimPolicy?: K8s__Io___Api___Core___V1__PersistentVolumeReclaimPolicy, storageClassName?: string, volumeMode?: string, awsElasticBlockStore?: { fsType?: string, partition?: number, readOnly?: boolean, volumeID: string }, azureDisk?: { cachingMode?: string, diskName: string, diskURI: string, fsType?: string, kind?: string, readOnly?: boolean }, azureFile?: { readOnly?: boolean, secretName: string, secretNamespace?: string, shareName: string }, cephfs?: { monitors: Array, path?: string, readOnly?: boolean, secretFile?: string, user?: string, secretRef?: { name?: string, namespace?: string } }, cinder?: { fsType?: string, readOnly?: boolean, volumeID: string }, claimRef?: { apiVersion?: string, fieldPath?: string, kind?: string, name?: string, namespace?: string, resourceVersion?: string, uid?: string }, csi?: { driver: string, fsType?: string, readOnly?: boolean, volumeAttributes?: any, volumeHandle: string, controllerExpandSecretRef?: { name?: string, namespace?: string }, controllerPublishSecretRef?: { name?: string, namespace?: string }, nodeExpandSecretRef?: { name?: string, namespace?: string }, nodePublishSecretRef?: { name?: string, namespace?: string }, nodeStageSecretRef?: { name?: string, namespace?: string } }, fc?: { fsType?: string, lun?: number, readOnly?: boolean, targetWWNs?: Array, wwids?: Array }, flexVolume?: { driver: string, fsType?: string, options?: any, readOnly?: boolean }, flocker?: { datasetName?: string, datasetUUID?: string }, gcePersistentDisk?: { fsType?: string, partition?: number, pdName: string, readOnly?: boolean }, glusterfs?: { endpoints: string, endpointsNamespace?: string, path: string, readOnly?: boolean }, hostPath?: { path: string, type?: string }, iscsi?: { chapAuthDiscovery?: boolean, chapAuthSession?: boolean, fsType?: string, initiatorName?: string, iqn: string, iscsiInterface?: string, lun: number, portals?: Array, readOnly?: boolean, targetPortal: string }, local?: { fsType?: string, path: string }, nfs?: { path: string, readOnly?: boolean, server: string }, nodeAffinity?: { required?: { nodeSelectorTerms: Array<{ matchExpressions?: Array<{ key: string, operator: K8s__Io___Api___Core___V1__NodeSelectorOperator, values?: Array }>, matchFields?: Array<{ key: string, operator: K8s__Io___Api___Core___V1__NodeSelectorOperator, values?: Array }> }> } }, photonPersistentDisk?: { fsType?: string, pdID: string }, portworxVolume?: { fsType?: string, readOnly?: boolean, volumeID: string }, quobyte?: { group?: string, readOnly?: boolean, registry: string, tenant?: string, user?: string, volume: string }, rbd?: { fsType?: string, image: string, keyring?: string, monitors: Array, pool?: string, readOnly?: boolean, user?: string }, scaleIO?: { fsType?: string, gateway: string, protectionDomain?: string, readOnly?: boolean, sslEnabled?: boolean, storageMode?: string, storagePool?: string, system: string, volumeName?: string }, storageos?: { fsType?: string, readOnly?: boolean, volumeName?: string, volumeNamespace?: string, secretRef?: { apiVersion?: string, fieldPath?: string, kind?: string, name?: string, namespace?: string, resourceVersion?: string, uid?: string } }, vsphereVolume?: { fsType?: string, storagePolicyID?: string, storagePolicyName?: string, volumePath: string } }, status?: { lastPhaseTransitionTime?: any, message?: string, phase?: K8s__Io___Api___Core___V1__PersistentVolumePhase, reason?: string } } }; export type ConsoleListPvsQueryVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -4454,205 +2503,15 @@ export type ConsoleListPvsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListPvsQuery = { - infra_listPVs?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - clusterName: string; - creationTime: any; - displayName: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - accessModes?: Array; - capacity?: any; - mountOptions?: Array; - persistentVolumeReclaimPolicy?: K8s__Io___Api___Core___V1__PersistentVolumeReclaimPolicy; - storageClassName?: string; - volumeMode?: string; - awsElasticBlockStore?: { - fsType?: string; - partition?: number; - readOnly?: boolean; - volumeID: string; - }; - azureDisk?: { - cachingMode?: string; - diskName: string; - diskURI: string; - fsType?: string; - kind?: string; - readOnly?: boolean; - }; - azureFile?: { - readOnly?: boolean; - secretName: string; - secretNamespace?: string; - shareName: string; - }; - cephfs?: { - monitors: Array; - path?: string; - readOnly?: boolean; - secretFile?: string; - user?: string; - secretRef?: { name?: string; namespace?: string }; - }; - cinder?: { fsType?: string; readOnly?: boolean; volumeID: string }; - claimRef?: { - apiVersion?: string; - fieldPath?: string; - kind?: string; - name?: string; - namespace?: string; - resourceVersion?: string; - uid?: string; - }; - csi?: { - driver: string; - fsType?: string; - readOnly?: boolean; - volumeAttributes?: any; - volumeHandle: string; - controllerExpandSecretRef?: { name?: string; namespace?: string }; - controllerPublishSecretRef?: { name?: string; namespace?: string }; - nodeExpandSecretRef?: { name?: string; namespace?: string }; - nodePublishSecretRef?: { name?: string; namespace?: string }; - nodeStageSecretRef?: { name?: string; namespace?: string }; - }; - fc?: { - fsType?: string; - lun?: number; - readOnly?: boolean; - targetWWNs?: Array; - wwids?: Array; - }; - flexVolume?: { - driver: string; - fsType?: string; - options?: any; - readOnly?: boolean; - }; - flocker?: { datasetName?: string; datasetUUID?: string }; - gcePersistentDisk?: { - fsType?: string; - partition?: number; - pdName: string; - readOnly?: boolean; - }; - glusterfs?: { - endpoints: string; - endpointsNamespace?: string; - path: string; - readOnly?: boolean; - }; - hostPath?: { path: string; type?: string }; - iscsi?: { - chapAuthDiscovery?: boolean; - chapAuthSession?: boolean; - fsType?: string; - initiatorName?: string; - iqn: string; - iscsiInterface?: string; - lun: number; - portals?: Array; - readOnly?: boolean; - targetPortal: string; - }; - local?: { fsType?: string; path: string }; - nfs?: { path: string; readOnly?: boolean; server: string }; - photonPersistentDisk?: { fsType?: string; pdID: string }; - portworxVolume?: { - fsType?: string; - readOnly?: boolean; - volumeID: string; - }; - quobyte?: { - group?: string; - readOnly?: boolean; - registry: string; - tenant?: string; - user?: string; - volume: string; - }; - rbd?: { - fsType?: string; - image: string; - keyring?: string; - monitors: Array; - pool?: string; - readOnly?: boolean; - user?: string; - }; - scaleIO?: { - fsType?: string; - gateway: string; - protectionDomain?: string; - readOnly?: boolean; - sslEnabled?: boolean; - storageMode?: string; - storagePool?: string; - system: string; - volumeName?: string; - }; - storageos?: { - fsType?: string; - readOnly?: boolean; - volumeName?: string; - volumeNamespace?: string; - secretRef?: { - apiVersion?: string; - fieldPath?: string; - kind?: string; - name?: string; - namespace?: string; - resourceVersion?: string; - uid?: string; - }; - }; - vsphereVolume?: { - fsType?: string; - storagePolicyID?: string; - storagePolicyName?: string; - volumePath: string; - }; - }; - status?: { - lastPhaseTransitionTime?: any; - message?: string; - phase?: K8s__Io___Api___Core___V1__PersistentVolumePhase; - reason?: string; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListPvsQuery = { infra_listPVs?: { totalCount: number, edges: Array<{ cursor: string, node: { clusterName: string, creationTime: any, displayName: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { accessModes?: Array, capacity?: any, mountOptions?: Array, persistentVolumeReclaimPolicy?: K8s__Io___Api___Core___V1__PersistentVolumeReclaimPolicy, storageClassName?: string, volumeMode?: string, awsElasticBlockStore?: { fsType?: string, partition?: number, readOnly?: boolean, volumeID: string }, azureDisk?: { cachingMode?: string, diskName: string, diskURI: string, fsType?: string, kind?: string, readOnly?: boolean }, azureFile?: { readOnly?: boolean, secretName: string, secretNamespace?: string, shareName: string }, cephfs?: { monitors: Array, path?: string, readOnly?: boolean, secretFile?: string, user?: string, secretRef?: { name?: string, namespace?: string } }, cinder?: { fsType?: string, readOnly?: boolean, volumeID: string }, claimRef?: { apiVersion?: string, fieldPath?: string, kind?: string, name?: string, namespace?: string, resourceVersion?: string, uid?: string }, csi?: { driver: string, fsType?: string, readOnly?: boolean, volumeAttributes?: any, volumeHandle: string, controllerExpandSecretRef?: { name?: string, namespace?: string }, controllerPublishSecretRef?: { name?: string, namespace?: string }, nodeExpandSecretRef?: { name?: string, namespace?: string }, nodePublishSecretRef?: { name?: string, namespace?: string }, nodeStageSecretRef?: { name?: string, namespace?: string } }, fc?: { fsType?: string, lun?: number, readOnly?: boolean, targetWWNs?: Array, wwids?: Array }, flexVolume?: { driver: string, fsType?: string, options?: any, readOnly?: boolean }, flocker?: { datasetName?: string, datasetUUID?: string }, gcePersistentDisk?: { fsType?: string, partition?: number, pdName: string, readOnly?: boolean }, glusterfs?: { endpoints: string, endpointsNamespace?: string, path: string, readOnly?: boolean }, hostPath?: { path: string, type?: string }, iscsi?: { chapAuthDiscovery?: boolean, chapAuthSession?: boolean, fsType?: string, initiatorName?: string, iqn: string, iscsiInterface?: string, lun: number, portals?: Array, readOnly?: boolean, targetPortal: string }, local?: { fsType?: string, path: string }, nfs?: { path: string, readOnly?: boolean, server: string }, photonPersistentDisk?: { fsType?: string, pdID: string }, portworxVolume?: { fsType?: string, readOnly?: boolean, volumeID: string }, quobyte?: { group?: string, readOnly?: boolean, registry: string, tenant?: string, user?: string, volume: string }, rbd?: { fsType?: string, image: string, keyring?: string, monitors: Array, pool?: string, readOnly?: boolean, user?: string }, scaleIO?: { fsType?: string, gateway: string, protectionDomain?: string, readOnly?: boolean, sslEnabled?: boolean, storageMode?: string, storagePool?: string, system: string, volumeName?: string }, storageos?: { fsType?: string, readOnly?: boolean, volumeName?: string, volumeNamespace?: string, secretRef?: { apiVersion?: string, fieldPath?: string, kind?: string, name?: string, namespace?: string, resourceVersion?: string, uid?: string } }, vsphereVolume?: { fsType?: string, storagePolicyID?: string, storagePolicyName?: string, volumePath: string } }, status?: { lastPhaseTransitionTime?: any, message?: string, phase?: K8s__Io___Api___Core___V1__PersistentVolumePhase, reason?: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleDeletePvMutationVariables = Exact<{ clusterName: Scalars['String']['input']; pvName: Scalars['String']['input']; }>; + export type ConsoleDeletePvMutation = { infra_deletePV: boolean }; export type ConsoleListBuildRunsQueryVariables = Exact<{ @@ -4660,191 +2519,30 @@ export type ConsoleListBuildRunsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListBuildRunsQuery = { - cr_listBuildRuns?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - id: string; - clusterName: string; - creationTime: any; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - accountName: string; - buildOptions?: { - buildArgs?: any; - buildContexts?: any; - contextDir?: string; - dockerfileContent?: string; - dockerfilePath?: string; - targetPlatforms?: Array; - }; - registry: { repo: { name: string; tags: Array } }; - resource: { cpu: number; memoryInMb: number }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListBuildRunsQuery = { cr_listBuildRuns?: { totalCount: number, edges: Array<{ cursor: string, node: { id: string, clusterName: string, creationTime: any, markedForDeletion?: boolean, recordVersion: number, updateTime: any, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { accountName: string, buildOptions?: { buildArgs?: any, buildContexts?: any, contextDir?: string, dockerfileContent?: string, dockerfilePath?: string, targetPlatforms?: Array }, registry: { repo: { name: string, tags: Array } }, resource: { cpu: number, memoryInMb: number } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleGetBuildRunQueryVariables = Exact<{ buildId: Scalars['ID']['input']; buildRunName: Scalars['String']['input']; }>; -export type ConsoleGetBuildRunQuery = { - cr_getBuildRun?: { - clusterName: string; - creationTime: any; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - accountName: string; - buildOptions?: { - buildArgs?: any; - buildContexts?: any; - contextDir?: string; - dockerfileContent?: string; - dockerfilePath?: string; - targetPlatforms?: Array; - }; - registry: { repo: { name: string; tags: Array } }; - resource: { cpu: number; memoryInMb: number }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - description?: string; - debug?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; -}; + +export type ConsoleGetBuildRunQuery = { cr_getBuildRun?: { clusterName: string, creationTime: any, markedForDeletion?: boolean, recordVersion: number, updateTime: any, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { accountName: string, buildOptions?: { buildArgs?: any, buildContexts?: any, contextDir?: string, dockerfileContent?: string, dockerfilePath?: string, targetPlatforms?: Array }, registry: { repo: { name: string, tags: Array } }, resource: { cpu: number, memoryInMb: number } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ description?: string, debug?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }; export type ConsoleGetClusterMSvQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetClusterMSvQuery = { - infra_getClusterManagedService?: { - clusterName: string; - creationTime: any; - displayName: string; - isArchived?: boolean; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - targetNamespace: string; - msvcSpec: { - nodeSelector?: any; - serviceTemplate: { apiVersion: string; kind: string; spec?: any }; - tolerations?: Array<{ - effect?: K8s__Io___Api___Core___V1__TaintEffect; - key?: string; - operator?: K8s__Io___Api___Core___V1__TolerationOperator; - tolerationSeconds?: number; - value?: string; - }>; - }; - }; - }; -}; + +export type ConsoleGetClusterMSvQuery = { infra_getClusterManagedService?: { clusterName: string, creationTime: any, displayName: string, isArchived?: boolean, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { targetNamespace: string, msvcSpec: { nodeSelector?: any, serviceTemplate: { apiVersion: string, kind: string, spec?: any }, tolerations?: Array<{ effect?: K8s__Io___Api___Core___V1__TaintEffect, key?: string, operator?: K8s__Io___Api___Core___V1__TolerationOperator, tolerationSeconds?: number, value?: string }> } } } }; export type ConsoleCreateClusterMSvMutationVariables = Exact<{ service: ClusterManagedServiceIn; }>; -export type ConsoleCreateClusterMSvMutation = { - infra_createClusterManagedService?: { id: string }; -}; + +export type ConsoleCreateClusterMSvMutation = { infra_createClusterManagedService?: { id: string } }; export type ConsoleCloneClusterMSvMutationVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -4853,339 +2551,88 @@ export type ConsoleCloneClusterMSvMutationVariables = Exact<{ displayName: Scalars['String']['input']; }>; -export type ConsoleCloneClusterMSvMutation = { - infra_cloneClusterManagedService?: { id: string }; -}; + +export type ConsoleCloneClusterMSvMutation = { infra_cloneClusterManagedService?: { id: string } }; export type ConsoleUpdateClusterMSvMutationVariables = Exact<{ service: ClusterManagedServiceIn; }>; -export type ConsoleUpdateClusterMSvMutation = { - infra_updateClusterManagedService?: { id: string }; -}; + +export type ConsoleUpdateClusterMSvMutation = { infra_updateClusterManagedService?: { id: string } }; export type ConsoleListClusterMSvsQueryVariables = Exact<{ pagination?: InputMaybe; search?: InputMaybe; }>; -export type ConsoleListClusterMSvsQuery = { - infra_listClusterManagedServices?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - apiVersion?: string; - clusterName: string; - isArchived?: boolean; - creationTime: any; - displayName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { - targetNamespace: string; - msvcSpec: { - nodeSelector?: any; - serviceTemplate: { apiVersion: string; kind: string; spec?: any }; - tolerations?: Array<{ - effect?: K8s__Io___Api___Core___V1__TaintEffect; - key?: string; - operator?: K8s__Io___Api___Core___V1__TolerationOperator; - tolerationSeconds?: number; - value?: string; - }>; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListClusterMSvsQuery = { infra_listClusterManagedServices?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, apiVersion?: string, clusterName: string, isArchived?: boolean, creationTime: any, displayName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { targetNamespace: string, msvcSpec: { nodeSelector?: any, serviceTemplate: { apiVersion: string, kind: string, spec?: any }, tolerations?: Array<{ effect?: K8s__Io___Api___Core___V1__TaintEffect, key?: string, operator?: K8s__Io___Api___Core___V1__TolerationOperator, tolerationSeconds?: number, value?: string }> } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleDeleteClusterMSvMutationVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleDeleteClusterMSvMutation = { - infra_deleteClusterManagedService: boolean; -}; + +export type ConsoleDeleteClusterMSvMutation = { infra_deleteClusterManagedService: boolean }; export type ConsoleDeleteByokClusterMutationVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleDeleteByokClusterMutation = { - infra_deleteBYOKCluster: boolean; -}; + +export type ConsoleDeleteByokClusterMutation = { infra_deleteBYOKCluster: boolean }; export type ConsoleCreateByokClusterMutationVariables = Exact<{ cluster: ByokClusterIn; }>; -export type ConsoleCreateByokClusterMutation = { - infra_createBYOKCluster?: { id: string }; -}; + +export type ConsoleCreateByokClusterMutation = { infra_createBYOKCluster?: { id: string } }; export type ConsoleUpdateByokClusterMutationVariables = Exact<{ clusterName: Scalars['String']['input']; displayName: Scalars['String']['input']; }>; -export type ConsoleUpdateByokClusterMutation = { - infra_updateBYOKCluster?: { id: string }; -}; + +export type ConsoleUpdateByokClusterMutation = { infra_updateBYOKCluster?: { id: string } }; export type ConsoleGetByokClusterInstructionsQueryVariables = Exact<{ name: Scalars['String']['input']; onlyHelmValues?: InputMaybe; }>; -export type ConsoleGetByokClusterInstructionsQuery = { - infrat_getBYOKClusterSetupInstructions?: Array<{ - command: string; - title: string; - }>; -}; + +export type ConsoleGetByokClusterInstructionsQuery = { infrat_getBYOKClusterSetupInstructions?: Array<{ command: string, title: string }> }; export type ConsoleGetByokClusterQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetByokClusterQuery = { - infra_getBYOKCluster?: { - accountName: string; - ownedBy?: string; - creationTime: any; - displayName: string; - id: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - clusterSvcCIDR: string; - globalVPN: string; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; -}; + +export type ConsoleGetByokClusterQuery = { infra_getBYOKCluster?: { accountName: string, ownedBy?: string, creationTime: any, displayName: string, id: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, clusterSvcCIDR: string, globalVPN: string, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }; export type ConsoleListByokClustersQueryVariables = Exact<{ search?: InputMaybe; pagination?: InputMaybe; }>; -export type ConsoleListByokClustersQuery = { - infra_listBYOKClusters?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - ownedBy?: string; - clusterSvcCIDR: string; - lastOnlineAt?: any; - creationTime: any; - displayName: string; - globalVPN: string; - id: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListByokClustersQuery = { infra_listBYOKClusters?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, ownedBy?: string, clusterSvcCIDR: string, lastOnlineAt?: any, creationTime: any, displayName: string, globalVPN: string, id: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleGetMSvTemplateQueryVariables = Exact<{ category: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type ConsoleGetMSvTemplateQuery = { - infra_getManagedServiceTemplate?: { - active: boolean; - apiVersion?: string; - description: string; - displayName: string; - kind?: string; - logoUrl: string; - name: string; - fields: Array<{ - defaultValue?: any; - inputType: string; - label: string; - max?: number; - min?: number; - name: string; - required?: boolean; - unit?: string; - displayUnit?: string; - multiplier?: number; - }>; - outputs: Array<{ description: string; label: string; name: string }>; - resources: Array<{ - apiVersion?: string; - description: string; - displayName: string; - kind?: string; - name: string; - fields: Array<{ - defaultValue?: any; - displayUnit?: string; - inputType: string; - label: string; - max?: number; - min?: number; - multiplier?: number; - name: string; - required?: boolean; - unit?: string; - }>; - }>; - }; -}; - -export type ConsoleListMSvTemplatesQueryVariables = Exact<{ - [key: string]: never; -}>; - -export type ConsoleListMSvTemplatesQuery = { - infra_listManagedServiceTemplates?: Array<{ - category: string; - displayName: string; - items: Array<{ - active: boolean; - apiVersion?: string; - description: string; - displayName: string; - kind?: string; - logoUrl: string; - name: string; - fields: Array<{ - defaultValue?: any; - inputType: string; - label: string; - max?: number; - min?: number; - name: string; - required?: boolean; - unit?: string; - displayUnit?: string; - multiplier?: number; - }>; - outputs: Array<{ description: string; label: string; name: string }>; - resources: Array<{ - apiVersion?: string; - description: string; - displayName: string; - kind?: string; - name: string; - fields: Array<{ - defaultValue?: any; - displayUnit?: string; - inputType: string; - label: string; - max?: number; - min?: number; - multiplier?: number; - name: string; - required?: boolean; - unit?: string; - }>; - }>; - }>; - }>; -}; + +export type ConsoleGetMSvTemplateQuery = { infra_getManagedServiceTemplate?: { active: boolean, apiVersion?: string, description: string, displayName: string, kind?: string, logoUrl: string, name: string, fields: Array<{ defaultValue?: any, inputType: string, label: string, max?: number, min?: number, name: string, required?: boolean, unit?: string, displayUnit?: string, multiplier?: number }>, outputs: Array<{ description: string, label: string, name: string }>, resources: Array<{ apiVersion?: string, description: string, displayName: string, kind?: string, name: string, fields: Array<{ defaultValue?: any, displayUnit?: string, inputType: string, label: string, max?: number, min?: number, multiplier?: number, name: string, required?: boolean, unit?: string }> }> } }; + +export type ConsoleListMSvTemplatesQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleListMSvTemplatesQuery = { infra_listManagedServiceTemplates?: Array<{ category: string, displayName: string, items: Array<{ active: boolean, apiVersion?: string, description: string, displayName: string, kind?: string, logoUrl: string, name: string, fields: Array<{ defaultValue?: any, inputType: string, label: string, max?: number, min?: number, name: string, required?: boolean, unit?: string, displayUnit?: string, multiplier?: number }>, outputs: Array<{ description: string, label: string, name: string }>, resources: Array<{ apiVersion?: string, description: string, displayName: string, kind?: string, name: string, fields: Array<{ defaultValue?: any, displayUnit?: string, inputType: string, label: string, max?: number, min?: number, multiplier?: number, name: string, required?: boolean, unit?: string }> }> }> }> }; export type ConsoleGetManagedResourceQueryVariables = Exact<{ name: Scalars['String']['input']; @@ -5193,255 +2640,48 @@ export type ConsoleGetManagedResourceQueryVariables = Exact<{ envName?: InputMaybe; }>; -export type ConsoleGetManagedResourceQuery = { - core_getManagedResource?: { - accountName: string; - apiVersion?: string; - clusterName: string; - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - id: string; - isImported: boolean; - kind?: string; - managedServiceName: string; - markedForDeletion?: boolean; - mresRef: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - resourceNamePrefix?: string; - resourceTemplate: { - apiVersion: string; - kind: string; - msvcRef: { - apiVersion?: string; - kind?: string; - name: string; - namespace: string; - }; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncedOutputSecretRef?: { - apiVersion?: string; - data?: any; - immutable?: boolean; - kind?: string; - stringData?: any; - type?: K8s__Io___Api___Core___V1__SecretType; - metadata?: { name: string }; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; -}; + +export type ConsoleGetManagedResourceQuery = { core_getManagedResource?: { accountName: string, apiVersion?: string, clusterName: string, creationTime: any, displayName: string, enabled?: boolean, environmentName: string, id: string, isImported: boolean, kind?: string, managedServiceName: string, markedForDeletion?: boolean, mresRef: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { resourceNamePrefix?: string, resourceTemplate: { apiVersion: string, kind: string, msvcRef: { apiVersion?: string, kind?: string, name: string, namespace: string } } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncedOutputSecretRef?: { apiVersion?: string, data?: any, immutable?: boolean, kind?: string, stringData?: any, type?: K8s__Io___Api___Core___V1__SecretType, metadata?: { name: string } }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }; export type ConsoleCreateManagedResourceMutationVariables = Exact<{ msvcName: Scalars['String']['input']; mres: ManagedResourceIn; }>; -export type ConsoleCreateManagedResourceMutation = { - core_createManagedResource?: { id: string }; -}; + +export type ConsoleCreateManagedResourceMutation = { core_createManagedResource?: { id: string } }; export type ConsoleUpdateManagedResourceMutationVariables = Exact<{ msvcName: Scalars['String']['input']; mres: ManagedResourceIn; }>; -export type ConsoleUpdateManagedResourceMutation = { - core_updateManagedResource?: { id: string }; -}; + +export type ConsoleUpdateManagedResourceMutation = { core_updateManagedResource?: { id: string } }; export type ConsoleListManagedResourcesQueryVariables = Exact<{ search?: InputMaybe; pq?: InputMaybe; }>; -export type ConsoleListManagedResourcesQuery = { - core_listManagedResources?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - apiVersion?: string; - clusterName: string; - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - id: string; - isImported: boolean; - kind?: string; - managedServiceName: string; - markedForDeletion?: boolean; - mresRef: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - resourceNamePrefix?: string; - resourceTemplate: { - apiVersion: string; - kind: string; - msvcRef: { - apiVersion?: string; - kind?: string; - name: string; - namespace: string; - }; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncedOutputSecretRef?: { - apiVersion?: string; - data?: any; - immutable?: boolean; - kind?: string; - stringData?: any; - type?: K8s__Io___Api___Core___V1__SecretType; - metadata?: { name: string }; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasPrevPage?: boolean; - hasNextPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListManagedResourcesQuery = { core_listManagedResources?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, apiVersion?: string, clusterName: string, creationTime: any, displayName: string, enabled?: boolean, environmentName: string, id: string, isImported: boolean, kind?: string, managedServiceName: string, markedForDeletion?: boolean, mresRef: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { resourceNamePrefix?: string, resourceTemplate: { apiVersion: string, kind: string, msvcRef: { apiVersion?: string, kind?: string, name: string, namespace: string } } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncedOutputSecretRef?: { apiVersion?: string, data?: any, immutable?: boolean, kind?: string, stringData?: any, type?: K8s__Io___Api___Core___V1__SecretType, metadata?: { name: string } }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasPrevPage?: boolean, hasNextPage?: boolean, startCursor?: string } } }; export type ConsoleDeleteManagedResourceMutationVariables = Exact<{ msvcName: Scalars['String']['input']; mresName: Scalars['String']['input']; }>; -export type ConsoleDeleteManagedResourceMutation = { - core_deleteManagedResource: boolean; -}; + +export type ConsoleDeleteManagedResourceMutation = { core_deleteManagedResource: boolean }; export type ConsoleGetHelmChartQueryVariables = Exact<{ clusterName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type ConsoleGetHelmChartQuery = { - infra_getHelmRelease?: { - creationTime: any; - displayName: string; - markedForDeletion?: boolean; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { name: string; namespace?: string }; - spec?: { - chartName: string; - chartRepoURL: string; - chartVersion: string; - values: any; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - releaseNotes: string; - releaseStatus: string; - checkList?: Array<{ - description?: string; - debug?: boolean; - title: string; - name: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - }; -}; + +export type ConsoleGetHelmChartQuery = { infra_getHelmRelease?: { creationTime: any, displayName: string, markedForDeletion?: boolean, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { name: string, namespace?: string }, spec?: { chartName: string, chartRepoURL: string, chartVersion: string, values: any }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, releaseNotes: string, releaseStatus: string, checkList?: Array<{ description?: string, debug?: boolean, title: string, name: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> } } }; export type ConsoleListHelmChartQueryVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -5449,317 +2689,105 @@ export type ConsoleListHelmChartQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListHelmChartQuery = { - infra_listHelmReleases?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - clusterName: string; - creationTime: any; - displayName: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - generation: number; - name: string; - namespace?: string; - annotations?: any; - }; - spec?: { - chartName: string; - chartRepoURL: string; - chartVersion: string; - values: any; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - releaseNotes: string; - releaseStatus: string; - checkList?: Array<{ - description?: string; - debug?: boolean; - title: string; - name: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListHelmChartQuery = { infra_listHelmReleases?: { totalCount: number, edges: Array<{ cursor: string, node: { clusterName: string, creationTime: any, displayName: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { generation: number, name: string, namespace?: string, annotations?: any }, spec?: { chartName: string, chartRepoURL: string, chartVersion: string, values: any }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, releaseNotes: string, releaseStatus: string, checkList?: Array<{ description?: string, debug?: boolean, title: string, name: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateHelmChartMutationVariables = Exact<{ clusterName: Scalars['String']['input']; release: HelmReleaseIn; }>; -export type ConsoleCreateHelmChartMutation = { - infra_createHelmRelease?: { id: string }; -}; + +export type ConsoleCreateHelmChartMutation = { infra_createHelmRelease?: { id: string } }; export type ConsoleUpdateHelmChartMutationVariables = Exact<{ clusterName: Scalars['String']['input']; release: HelmReleaseIn; }>; -export type ConsoleUpdateHelmChartMutation = { - infra_updateHelmRelease?: { id: string }; -}; + +export type ConsoleUpdateHelmChartMutation = { infra_updateHelmRelease?: { id: string } }; export type ConsoleDeleteHelmChartMutationVariables = Exact<{ clusterName: Scalars['String']['input']; releaseName: Scalars['String']['input']; }>; -export type ConsoleDeleteHelmChartMutation = { - infra_deleteHelmRelease: boolean; -}; + +export type ConsoleDeleteHelmChartMutation = { infra_deleteHelmRelease: boolean }; export type ConsoleListNamespacesQueryVariables = Exact<{ clusterName: Scalars['String']['input']; }>; -export type ConsoleListNamespacesQuery = { - infra_listNamespaces?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - apiVersion?: string; - clusterName: string; - creationTime: any; - displayName: string; - id: string; - kind?: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec?: { finalizers?: Array }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListNamespacesQuery = { infra_listNamespaces?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, apiVersion?: string, clusterName: string, creationTime: any, displayName: string, id: string, kind?: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec?: { finalizers?: Array } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleCreateImagePullSecretMutationVariables = Exact<{ pullSecret: ImagePullSecretIn; }>; -export type ConsoleCreateImagePullSecretMutation = { - core_createImagePullSecret?: { id: string }; -}; + +export type ConsoleCreateImagePullSecretMutation = { core_createImagePullSecret?: { id: string } }; export type ConsoleUpdateImagePullSecretMutationVariables = Exact<{ pullSecret: ImagePullSecretIn; }>; -export type ConsoleUpdateImagePullSecretMutation = { - core_updateImagePullSecret?: { id: string }; -}; + +export type ConsoleUpdateImagePullSecretMutation = { core_updateImagePullSecret?: { id: string } }; export type ConsoleDeleteImagePullSecretsMutationVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleDeleteImagePullSecretsMutation = { - core_deleteImagePullSecret: boolean; -}; + +export type ConsoleDeleteImagePullSecretsMutation = { core_deleteImagePullSecret: boolean }; export type ConsoleGetImagePullSecretQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type ConsoleGetImagePullSecretQuery = { - core_getImagePullSecret?: { - accountName: string; - creationTime: any; - displayName: string; - dockerConfigJson?: string; - environments?: Array; - format: Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__PullSecretFormat; - id: string; - markedForDeletion?: boolean; - recordVersion: number; - registryPassword?: string; - registryURL?: string; - registryUsername?: string; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; -}; + +export type ConsoleGetImagePullSecretQuery = { core_getImagePullSecret?: { accountName: string, creationTime: any, displayName: string, dockerConfigJson?: string, environments?: Array, format: Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__PullSecretFormat, id: string, markedForDeletion?: boolean, recordVersion: number, registryPassword?: string, registryURL?: string, registryUsername?: string, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }; export type ConsoleListImagePullSecretsQueryVariables = Exact<{ search?: InputMaybe; pq?: InputMaybe; }>; -export type ConsoleListImagePullSecretsQuery = { - core_listImagePullSecrets?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationTime: any; - displayName: string; - dockerConfigJson?: string; - format: Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__PullSecretFormat; - id: string; - markedForDeletion?: boolean; - recordVersion: number; - registryPassword?: string; - registryURL?: string; - registryUsername?: string; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListImagePullSecretsQuery = { core_listImagePullSecrets?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationTime: any, displayName: string, dockerConfigJson?: string, format: Github__Com___Kloudlite___Api___Apps___Console___Internal___Entities__PullSecretFormat, id: string, markedForDeletion?: boolean, recordVersion: number, registryPassword?: string, registryURL?: string, registryUsername?: string, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleDeleteGlobalVpnDeviceMutationVariables = Exact<{ gvpn: Scalars['String']['input']; deviceName: Scalars['String']['input']; }>; -export type ConsoleDeleteGlobalVpnDeviceMutation = { - infra_deleteGlobalVPNDevice: boolean; -}; + +export type ConsoleDeleteGlobalVpnDeviceMutation = { infra_deleteGlobalVPNDevice: boolean }; export type ConsoleCreateGlobalVpnDeviceMutationVariables = Exact<{ gvpnDevice: GlobalVpnDeviceIn; }>; -export type ConsoleCreateGlobalVpnDeviceMutation = { - infra_createGlobalVPNDevice?: { id: string }; -}; + +export type ConsoleCreateGlobalVpnDeviceMutation = { infra_createGlobalVPNDevice?: { id: string } }; export type ConsoleUpdateGlobalVpnDeviceMutationVariables = Exact<{ gvpnDevice: GlobalVpnDeviceIn; }>; -export type ConsoleUpdateGlobalVpnDeviceMutation = { - infra_updateGlobalVPNDevice?: { id: string }; -}; + +export type ConsoleUpdateGlobalVpnDeviceMutation = { infra_updateGlobalVPNDevice?: { id: string } }; export type ConsoleGetGlobalVpnDeviceQueryVariables = Exact<{ gvpn: Scalars['String']['input']; deviceName: Scalars['String']['input']; }>; -export type ConsoleGetGlobalVpnDeviceQuery = { - infra_getGlobalVPNDevice?: { - accountName: string; - creationTime: any; - displayName: string; - globalVPNName: string; - id: string; - ipAddr: string; - markedForDeletion?: boolean; - privateKey: string; - publicKey: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - wireguardConfig?: { value: string; encoding: string }; - }; -}; + +export type ConsoleGetGlobalVpnDeviceQuery = { infra_getGlobalVPNDevice?: { accountName: string, creationTime: any, displayName: string, globalVPNName: string, id: string, ipAddr: string, markedForDeletion?: boolean, privateKey: string, publicKey: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, wireguardConfig?: { value: string, encoding: string } } }; export type ConsoleListGlobalVpnDevicesQueryVariables = Exact<{ gvpn: Scalars['String']['input']; @@ -5767,147 +2795,47 @@ export type ConsoleListGlobalVpnDevicesQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListGlobalVpnDevicesQuery = { - infra_listGlobalVPNDevices?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationMethod?: string; - creationTime: any; - displayName: string; - globalVPNName: string; - id: string; - ipAddr: string; - markedForDeletion?: boolean; - privateKey: string; - publicKey: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListGlobalVpnDevicesQuery = { infra_listGlobalVPNDevices?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationMethod?: string, creationTime: any, displayName: string, globalVPNName: string, id: string, ipAddr: string, markedForDeletion?: boolean, privateKey: string, publicKey: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleUpdateNotificationConfigMutationVariables = Exact<{ config: NotificationConfIn; }>; -export type ConsoleUpdateNotificationConfigMutation = { - comms_updateNotificationConfig?: { id: string }; -}; + +export type ConsoleUpdateNotificationConfigMutation = { comms_updateNotificationConfig?: { id: string } }; export type ConsoleUpdateSubscriptionConfigMutationVariables = Exact<{ config: SubscriptionIn; commsUpdateSubscriptionConfigId: Scalars['ID']['input']; }>; -export type ConsoleUpdateSubscriptionConfigMutation = { - comms_updateSubscriptionConfig?: { id: string }; -}; -export type ConsoleMarkAllNotificationAsReadMutationVariables = Exact<{ - [key: string]: never; -}>; +export type ConsoleUpdateSubscriptionConfigMutation = { comms_updateSubscriptionConfig?: { id: string } }; -export type ConsoleMarkAllNotificationAsReadMutation = { - comms_markAllNotificationAsRead: boolean; -}; +export type ConsoleMarkAllNotificationAsReadMutationVariables = Exact<{ [key: string]: never; }>; -export type ConsoleGetNotificationConfigQueryVariables = Exact<{ - [key: string]: never; -}>; -export type ConsoleGetNotificationConfigQuery = { - comms_getNotificationConfig?: { - accountName: string; - creationTime: any; - id: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - email?: { enabled: boolean; mailAddress: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - slack?: { enabled: boolean; url: string }; - telegram?: { chatId: string; enabled: boolean; token: string }; - webhook?: { enabled: boolean; url: string }; - }; -}; +export type ConsoleMarkAllNotificationAsReadMutation = { comms_markAllNotificationAsRead: boolean }; + +export type ConsoleGetNotificationConfigQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleGetNotificationConfigQuery = { comms_getNotificationConfig?: { accountName: string, creationTime: any, id: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, email?: { enabled: boolean, mailAddress: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, slack?: { enabled: boolean, url: string }, telegram?: { chatId: string, enabled: boolean, token: string }, webhook?: { enabled: boolean, url: string } } }; export type ConsoleGetSubscriptionConfigQueryVariables = Exact<{ commsGetSubscriptionConfigId: Scalars['ID']['input']; }>; -export type ConsoleGetSubscriptionConfigQuery = { - comms_getSubscriptionConfig?: { - accountName: string; - creationTime: any; - enabled: boolean; - id: string; - mailAddress: string; - markedForDeletion?: boolean; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - }; -}; + +export type ConsoleGetSubscriptionConfigQuery = { comms_getSubscriptionConfig?: { accountName: string, creationTime: any, enabled: boolean, id: string, mailAddress: string, markedForDeletion?: boolean, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string } } }; export type ConsoleListNotificationsQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type ConsoleListNotificationsQuery = { - comms_listNotifications?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationTime: any; - id: string; - markedForDeletion?: boolean; - notificationType: Github__Com___Kloudlite___Api___Apps___Comms___Types__NotificationType; - priority: number; - read: boolean; - recordVersion: number; - updateTime: any; - content: { - body: string; - image: string; - link: string; - subject: string; - title: string; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListNotificationsQuery = { comms_listNotifications?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationTime: any, id: string, markedForDeletion?: boolean, notificationType: Github__Com___Kloudlite___Api___Apps___Comms___Types__NotificationType, priority: number, read: boolean, recordVersion: number, updateTime: any, content: { body: string, image: string, link: string, subject: string, title: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleImportManagedResourceMutationVariables = Exact<{ envName: Scalars['String']['input']; @@ -5916,18 +2844,16 @@ export type ConsoleImportManagedResourceMutationVariables = Exact<{ importName: Scalars['String']['input']; }>; -export type ConsoleImportManagedResourceMutation = { - core_importManagedResource?: { id: string }; -}; + +export type ConsoleImportManagedResourceMutation = { core_importManagedResource?: { id: string } }; export type ConsoleDeleteImportedManagedResourceMutationVariables = Exact<{ envName: Scalars['String']['input']; importName: Scalars['String']['input']; }>; -export type ConsoleDeleteImportedManagedResourceMutation = { - core_deleteImportedManagedResource: boolean; -}; + +export type ConsoleDeleteImportedManagedResourceMutation = { core_deleteImportedManagedResource: boolean }; export type ConsoleListImportedManagedResourcesQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -5935,339 +2861,101 @@ export type ConsoleListImportedManagedResourcesQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListImportedManagedResourcesQuery = { - core_listImportedManagedResources?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationTime: any; - displayName: string; - environmentName: string; - id: string; - markedForDeletion?: boolean; - name: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - managedResourceRef: { id: string; name: string; namespace: string }; - secretRef: { name: string; namespace?: string }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - managedResource?: { - accountName: string; - apiVersion?: string; - clusterName: string; - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - id: string; - isImported: boolean; - kind?: string; - managedServiceName: string; - markedForDeletion?: boolean; - mresRef: string; - recordVersion: number; - updateTime: any; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - resourceNamePrefix?: string; - resourceTemplate: { - apiVersion: string; - kind: string; - spec?: any; - msvcRef: { - apiVersion?: string; - kind?: string; - name: string; - namespace: string; - }; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncedOutputSecretRef?: { - apiVersion?: string; - data?: any; - immutable?: boolean; - kind?: string; - stringData?: any; - type?: K8s__Io___Api___Core___V1__SecretType; - }; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListImportedManagedResourcesQuery = { core_listImportedManagedResources?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationTime: any, displayName: string, environmentName: string, id: string, markedForDeletion?: boolean, name: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, managedResourceRef: { id: string, name: string, namespace: string }, secretRef: { name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any }, managedResource?: { accountName: string, apiVersion?: string, clusterName: string, creationTime: any, displayName: string, enabled?: boolean, environmentName: string, id: string, isImported: boolean, kind?: string, managedServiceName: string, markedForDeletion?: boolean, mresRef: string, recordVersion: number, updateTime: any, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { resourceNamePrefix?: string, resourceTemplate: { apiVersion: string, kind: string, spec?: any, msvcRef: { apiVersion?: string, kind?: string, name: string, namespace: string } } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncedOutputSecretRef?: { apiVersion?: string, data?: any, immutable?: boolean, kind?: string, stringData?: any, type?: K8s__Io___Api___Core___V1__SecretType } } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type ConsoleDeleteRegistryImageMutationVariables = Exact<{ image: Scalars['String']['input']; }>; -export type ConsoleDeleteRegistryImageMutation = { - core_deleteRegistryImage: boolean; -}; + +export type ConsoleDeleteRegistryImageMutation = { core_deleteRegistryImage: boolean }; export type ConsoleGetRegistryImageQueryVariables = Exact<{ image: Scalars['String']['input']; }>; -export type ConsoleGetRegistryImageQuery = { - core_getRegistryImage?: { - accountName: string; - creationTime: any; - id: string; - imageName: string; - imageTag: string; - markedForDeletion?: boolean; - meta: any; - recordVersion: number; - updateTime: any; - }; -}; -export type ConsoleGetRegistryImageUrlQueryVariables = Exact<{ - [key: string]: never; -}>; +export type ConsoleGetRegistryImageQuery = { core_getRegistryImage?: { accountName: string, creationTime: any, id: string, imageName: string, imageTag: string, markedForDeletion?: boolean, meta: any, recordVersion: number, updateTime: any } }; -export type ConsoleGetRegistryImageUrlQuery = { - core_getRegistryImageURL: { - scriptUrl: Array; - url: Array; - urlExample: Array; - scriptUrlExample: Array; - klWebhookAuthToken: string; - }; -}; +export type ConsoleGetRegistryImageUrlQueryVariables = Exact<{ [key: string]: never; }>; + + +export type ConsoleGetRegistryImageUrlQuery = { core_getRegistryImageURL: { scriptUrl: Array, url: Array, urlExample: Array, scriptUrlExample: Array, klWebhookAuthToken: string } }; export type ConsoleSearchRegistryImagesQueryVariables = Exact<{ query: Scalars['String']['input']; }>; -export type ConsoleSearchRegistryImagesQuery = { - core_searchRegistryImages: Array<{ - accountName: string; - creationTime: any; - id: string; - imageName: string; - imageTag: string; - markedForDeletion?: boolean; - meta: any; - recordVersion: number; - updateTime: any; - }>; -}; + +export type ConsoleSearchRegistryImagesQuery = { core_searchRegistryImages: Array<{ accountName: string, creationTime: any, id: string, imageName: string, imageTag: string, markedForDeletion?: boolean, meta: any, recordVersion: number, updateTime: any }> }; export type ConsoleListRegistryImagesQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type ConsoleListRegistryImagesQuery = { - core_listRegistryImages?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationTime: any; - id: string; - imageName: string; - imageTag: string; - markedForDeletion?: boolean; - meta: any; - recordVersion: number; - updateTime: any; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type ConsoleListRegistryImagesQuery = { core_listRegistryImages?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationTime: any, id: string, imageName: string, imageTag: string, markedForDeletion?: boolean, meta: any, recordVersion: number, updateTime: any } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type AuthCli_CreateGlobalVpnDeviceMutationVariables = Exact<{ gvpnDevice: GlobalVpnDeviceIn; }>; -export type AuthCli_CreateGlobalVpnDeviceMutation = { - infra_createGlobalVPNDevice?: { - accountName: string; - creationTime: any; - displayName: string; - globalVPNName: string; - id: string; - ipAddr: string; - markedForDeletion?: boolean; - privateKey: string; - publicKey: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userName: string; userId: string; userEmail: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - wireguardConfig?: { value: string; encoding: string }; - }; -}; - -export type AuthCli_GetDnsHostSuffixQueryVariables = Exact<{ - [key: string]: never; -}>; + +export type AuthCli_CreateGlobalVpnDeviceMutation = { infra_createGlobalVPNDevice?: { accountName: string, creationTime: any, displayName: string, globalVPNName: string, id: string, ipAddr: string, markedForDeletion?: boolean, privateKey: string, publicKey: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userName: string, userId: string, userEmail: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, wireguardConfig?: { value: string, encoding: string } } }; + +export type AuthCli_GetDnsHostSuffixQueryVariables = Exact<{ [key: string]: never; }>; + export type AuthCli_GetDnsHostSuffixQuery = { core_getDNSHostSuffix: string }; export type AuthCli_GetMresOutputKeyValuesQueryVariables = Exact<{ msvcName: Scalars['String']['input']; - keyrefs?: InputMaybe< - | Array> - | InputMaybe - >; + keyrefs?: InputMaybe> | InputMaybe>; }>; -export type AuthCli_GetMresOutputKeyValuesQuery = { - core_getManagedResouceOutputKeyValues: Array<{ - key: string; - mresName: string; - value: string; - }>; -}; + +export type AuthCli_GetMresOutputKeyValuesQuery = { core_getManagedResouceOutputKeyValues: Array<{ key: string, mresName: string, value: string }> }; export type AuthCli_GetGlobalVpnDeviceQueryVariables = Exact<{ gvpn: Scalars['String']['input']; deviceName: Scalars['String']['input']; }>; -export type AuthCli_GetGlobalVpnDeviceQuery = { - infra_getGlobalVPNDevice?: { - accountName: string; - creationTime: any; - displayName: string; - globalVPNName: string; - id: string; - ipAddr: string; - markedForDeletion?: boolean; - privateKey: string; - publicKey: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userName: string; userId: string; userEmail: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - wireguardConfig?: { value: string; encoding: string }; - }; -}; + +export type AuthCli_GetGlobalVpnDeviceQuery = { infra_getGlobalVPNDevice?: { accountName: string, creationTime: any, displayName: string, globalVPNName: string, id: string, ipAddr: string, markedForDeletion?: boolean, privateKey: string, publicKey: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userName: string, userId: string, userEmail: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, wireguardConfig?: { value: string, encoding: string } } }; export type AuthCli_CoreCheckNameAvailabilityQueryVariables = Exact<{ resType: ConsoleResType; name: Scalars['String']['input']; }>; -export type AuthCli_CoreCheckNameAvailabilityQuery = { - core_checkNameAvailability: { - result: boolean; - suggestedNames?: Array; - }; -}; + +export type AuthCli_CoreCheckNameAvailabilityQuery = { core_checkNameAvailability: { result: boolean, suggestedNames?: Array } }; export type AuthCli_GetMresKeysQueryVariables = Exact<{ name: Scalars['String']['input']; envName?: InputMaybe; }>; -export type AuthCli_GetMresKeysQuery = { - core_getManagedResouceOutputKeys: Array; -}; + +export type AuthCli_GetMresKeysQuery = { core_getManagedResouceOutputKeys: Array }; export type AuthCli_ListMresesQueryVariables = Exact<{ pq?: InputMaybe; search?: InputMaybe; }>; -export type AuthCli_ListMresesQuery = { - core_listManagedResources?: { - edges: Array<{ - node: { - displayName: string; - metadata?: { name: string; namespace?: string }; - }; - }>; - }; -}; + +export type AuthCli_ListMresesQuery = { core_listManagedResources?: { edges: Array<{ node: { displayName: string, metadata?: { name: string, namespace?: string } } }> } }; export type AuthCli_GetMresConfigsValuesQueryVariables = Exact<{ - keyrefs?: InputMaybe< - | Array> - | InputMaybe - >; + keyrefs?: InputMaybe> | InputMaybe>; envName?: InputMaybe; }>; -export type AuthCli_GetMresConfigsValuesQuery = { - core_getManagedResouceOutputKeyValues: Array<{ - key: string; - mresName: string; - value: string; - }>; -}; + +export type AuthCli_GetMresConfigsValuesQuery = { core_getManagedResouceOutputKeyValues: Array<{ key: string, mresName: string, value: string }> }; export type AuthCli_InfraCheckNameAvailabilityQueryVariables = Exact<{ resType: ResType; @@ -6275,12 +2963,8 @@ export type AuthCli_InfraCheckNameAvailabilityQueryVariables = Exact<{ clusterName?: InputMaybe; }>; -export type AuthCli_InfraCheckNameAvailabilityQuery = { - infra_checkNameAvailability: { - result: boolean; - suggestedNames: Array; - }; -}; + +export type AuthCli_InfraCheckNameAvailabilityQuery = { infra_checkNameAvailability: { result: boolean, suggestedNames: Array } }; export type AuthCli_GetConfigSecretMapQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -6289,38 +2973,29 @@ export type AuthCli_GetConfigSecretMapQueryVariables = Exact<{ mresQueries?: InputMaybe | SecretKeyRefIn>; }>; -export type AuthCli_GetConfigSecretMapQuery = { - configs?: Array<{ configName: string; key: string; value: string }>; - secrets?: Array<{ key: string; secretName: string; value: string }>; - mreses?: Array<{ key: string; secretName: string; value: string }>; -}; + +export type AuthCli_GetConfigSecretMapQuery = { configs?: Array<{ configName: string, key: string, value: string }>, secrets?: Array<{ key: string, secretName: string, value: string }>, mreses?: Array<{ key: string, secretName: string, value: string }> }; export type AuthCli_IntercepExternalAppMutationVariables = Exact<{ envName: Scalars['String']['input']; appName: Scalars['String']['input']; deviceName: Scalars['String']['input']; intercept: Scalars['Boolean']['input']; - portMappings?: InputMaybe< - | Array - | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn - >; + portMappings?: InputMaybe | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn>; }>; -export type AuthCli_IntercepExternalAppMutation = { - core_interceptExternalApp: boolean; -}; + +export type AuthCli_IntercepExternalAppMutation = { core_interceptExternalApp: boolean }; export type AuthCli_InterceptAppMutationVariables = Exact<{ - portMappings?: InputMaybe< - | Array - | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn - >; + portMappings?: InputMaybe | Github__Com___Kloudlite___Operator___Apis___Crds___V1__AppInterceptPortMappingsIn>; intercept: Scalars['Boolean']['input']; deviceName: Scalars['String']['input']; appName: Scalars['String']['input']; envName: Scalars['String']['input']; }>; + export type AuthCli_InterceptAppMutation = { core_interceptApp: boolean }; export type AuthCli_RemoveDeviceInterceptsMutationVariables = Exact<{ @@ -6328,23 +3003,15 @@ export type AuthCli_RemoveDeviceInterceptsMutationVariables = Exact<{ deviceName: Scalars['String']['input']; }>; -export type AuthCli_RemoveDeviceInterceptsMutation = { - core_removeDeviceIntercepts: boolean; -}; + +export type AuthCli_RemoveDeviceInterceptsMutation = { core_removeDeviceIntercepts: boolean }; export type AuthCli_GetEnvironmentQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type AuthCli_GetEnvironmentQuery = { - core_getEnvironment?: { - displayName: string; - clusterName: string; - status?: { isReady: boolean; message?: { RawMessage?: any } }; - metadata?: { name: string }; - spec?: { targetNamespace?: string }; - }; -}; + +export type AuthCli_GetEnvironmentQuery = { core_getEnvironment?: { displayName: string, clusterName: string, status?: { isReady: boolean, message?: { RawMessage?: any } }, metadata?: { name: string }, spec?: { targetNamespace?: string } } }; export type AuthCli_CloneEnvironmentMutationVariables = Exact<{ clusterName: Scalars['String']['input']; @@ -6354,321 +3021,130 @@ export type AuthCli_CloneEnvironmentMutationVariables = Exact<{ environmentRoutingMode: Github__Com___Kloudlite___Operator___Apis___Crds___V1__EnvironmentRoutingMode; }>; -export type AuthCli_CloneEnvironmentMutation = { - core_cloneEnvironment?: { - id: string; - displayName: string; - clusterName: string; - metadata?: { name: string; namespace?: string }; - status?: { isReady: boolean; message?: { RawMessage?: any } }; - spec?: { targetNamespace?: string }; - }; -}; + +export type AuthCli_CloneEnvironmentMutation = { core_cloneEnvironment?: { id: string, displayName: string, clusterName: string, metadata?: { name: string, namespace?: string }, status?: { isReady: boolean, message?: { RawMessage?: any } }, spec?: { targetNamespace?: string } } }; export type AuthCli_GetSecretQueryVariables = Exact<{ envName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type AuthCli_GetSecretQuery = { - core_getSecret?: { - displayName: string; - stringData?: any; - metadata?: { name: string; namespace?: string }; - }; -}; + +export type AuthCli_GetSecretQuery = { core_getSecret?: { displayName: string, stringData?: any, metadata?: { name: string, namespace?: string } } }; export type AuthCli_GetConfigQueryVariables = Exact<{ envName: Scalars['String']['input']; name: Scalars['String']['input']; }>; -export type AuthCli_GetConfigQuery = { - core_getConfig?: { - data?: any; - displayName: string; - metadata?: { name: string; namespace?: string }; - }; -}; + +export type AuthCli_GetConfigQuery = { core_getConfig?: { data?: any, displayName: string, metadata?: { name: string, namespace?: string } } }; export type AuthCli_ListAppsQueryVariables = Exact<{ pq?: InputMaybe; envName: Scalars['String']['input']; }>; -export type AuthCli_ListAppsQuery = { - apps?: { - edges: Array<{ - node: { - displayName: string; - environmentName: string; - markedForDeletion?: boolean; - spec?: { - intercept?: { - enabled?: boolean; - toDevice?: string; - portMappings?: Array<{ devicePort: number; appPort: number }>; - }; - }; - metadata?: { name: string; annotations?: any; namespace?: string }; - status?: { - checks?: any; - isReady: boolean; - message?: { RawMessage?: any }; - }; - }; - }>; - }; - mapps?: { - edges: Array<{ - node: { - displayName: string; - environmentName: string; - markedForDeletion?: boolean; - metadata?: { annotations?: any; name: string; namespace?: string }; - spec: { - displayName?: string; - intercept?: { - enabled?: boolean; - toDevice?: string; - portMappings?: Array<{ devicePort: number; appPort: number }>; - }; - services?: Array<{ port: number }>; - }; - status?: { - checks?: any; - isReady: boolean; - message?: { RawMessage?: any }; - }; - }; - }>; - }; -}; + +export type AuthCli_ListAppsQuery = { apps?: { edges: Array<{ node: { displayName: string, environmentName: string, markedForDeletion?: boolean, spec?: { intercept?: { enabled?: boolean, toDevice?: string, portMappings?: Array<{ devicePort: number, appPort: number }> } }, metadata?: { name: string, annotations?: any, namespace?: string }, status?: { checks?: any, isReady: boolean, message?: { RawMessage?: any } } } }> }, mapps?: { edges: Array<{ node: { displayName: string, environmentName: string, markedForDeletion?: boolean, metadata?: { annotations?: any, name: string, namespace?: string }, spec: { displayName?: string, intercept?: { enabled?: boolean, toDevice?: string, portMappings?: Array<{ devicePort: number, appPort: number }> }, services?: Array<{ port: number }> }, status?: { checks?: any, isReady: boolean, message?: { RawMessage?: any } } } }> } }; export type AuthCli_ListConfigsQueryVariables = Exact<{ pq?: InputMaybe; envName: Scalars['String']['input']; }>; -export type AuthCli_ListConfigsQuery = { - core_listConfigs?: { - totalCount: number; - edges: Array<{ - node: { - data?: any; - displayName: string; - metadata?: { name: string; namespace?: string }; - }; - }>; - }; -}; + +export type AuthCli_ListConfigsQuery = { core_listConfigs?: { totalCount: number, edges: Array<{ node: { data?: any, displayName: string, metadata?: { name: string, namespace?: string } } }> } }; export type AuthCli_ListSecretsQueryVariables = Exact<{ envName: Scalars['String']['input']; pq?: InputMaybe; }>; -export type AuthCli_ListSecretsQuery = { - core_listSecrets?: { - edges: Array<{ - cursor: string; - node: { - displayName: string; - markedForDeletion?: boolean; - isReadyOnly: boolean; - stringData?: any; - metadata?: { name: string; namespace?: string }; - }; - }>; - }; -}; + +export type AuthCli_ListSecretsQuery = { core_listSecrets?: { edges: Array<{ cursor: string, node: { displayName: string, markedForDeletion?: boolean, isReadyOnly: boolean, stringData?: any, metadata?: { name: string, namespace?: string } } }> } }; export type AuthCli_ListEnvironmentsQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type AuthCli_ListEnvironmentsQuery = { - core_listEnvironments?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - displayName: string; - markedForDeletion?: boolean; - clusterName: string; - metadata?: { name: string; namespace?: string }; - spec?: { targetNamespace?: string }; - status?: { isReady: boolean; message?: { RawMessage?: any } }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type AuthCli_ListEnvironmentsQuery = { core_listEnvironments?: { totalCount: number, edges: Array<{ cursor: string, node: { displayName: string, markedForDeletion?: boolean, clusterName: string, metadata?: { name: string, namespace?: string }, spec?: { targetNamespace?: string }, status?: { isReady: boolean, message?: { RawMessage?: any } } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type AuthCli_GetKubeConfigQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type AuthCli_GetKubeConfigQuery = { - infra_getCluster?: { - adminKubeconfig?: { encoding: string; value: string }; - status?: { isReady: boolean }; - }; -}; + +export type AuthCli_GetKubeConfigQuery = { infra_getCluster?: { adminKubeconfig?: { encoding: string, value: string }, status?: { isReady: boolean } } }; export type AuthCli_ListClustersQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type AuthCli_ListClustersQuery = { - infra_listClusters?: { - edges: Array<{ - node: { - displayName: string; - metadata: { name: string }; - status?: { isReady: boolean }; - }; - }>; - }; -}; + +export type AuthCli_ListClustersQuery = { infra_listClusters?: { edges: Array<{ node: { displayName: string, metadata: { name: string }, status?: { isReady: boolean } } }> } }; export type AuthCli_ListVpnDevicesQueryVariables = Exact<{ gvpn: Scalars['String']['input']; pagination?: InputMaybe; }>; -export type AuthCli_ListVpnDevicesQuery = { - infra_listGlobalVPNDevices?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationMethod?: string; - creationTime: any; - displayName: string; - globalVPNName: string; - id: string; - ipAddr: string; - markedForDeletion?: boolean; - privateKey: string; - publicEndpoint?: string; - publicKey: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - metadata: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - wireguardConfig?: { value: string; encoding: string }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; - -export type AuthCli_ListAccountsQueryVariables = Exact<{ - [key: string]: never; -}>; - -export type AuthCli_ListAccountsQuery = { - accounts_listAccounts?: Array<{ - displayName: string; - metadata?: { name: string }; - }>; -}; - -export type AuthCli_GetCurrentUserQueryVariables = Exact<{ - [key: string]: never; -}>; - -export type AuthCli_GetCurrentUserQuery = { - auth_me?: { id: string; email: string; name: string }; -}; + +export type AuthCli_ListVpnDevicesQuery = { infra_listGlobalVPNDevices?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationMethod?: string, creationTime: any, displayName: string, globalVPNName: string, id: string, ipAddr: string, markedForDeletion?: boolean, privateKey: string, publicEndpoint?: string, publicKey: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, metadata: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, wireguardConfig?: { value: string, encoding: string } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; + +export type AuthCli_ListAccountsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type AuthCli_ListAccountsQuery = { accounts_listAccounts?: Array<{ displayName: string, metadata?: { name: string } }> }; + +export type AuthCli_GetCurrentUserQueryVariables = Exact<{ [key: string]: never; }>; + + +export type AuthCli_GetCurrentUserQuery = { auth_me?: { id: string, email: string, name: string } }; export type AuthCli_CreateRemoteLoginMutationVariables = Exact<{ secret?: InputMaybe; }>; -export type AuthCli_CreateRemoteLoginMutation = { - auth_createRemoteLogin: string; -}; + +export type AuthCli_CreateRemoteLoginMutation = { auth_createRemoteLogin: string }; export type AuthCli_GetRemoteLoginQueryVariables = Exact<{ loginId: Scalars['String']['input']; secret: Scalars['String']['input']; }>; -export type AuthCli_GetRemoteLoginQuery = { - auth_getRemoteLogin?: { authHeader?: string; status: string }; -}; + +export type AuthCli_GetRemoteLoginQuery = { auth_getRemoteLogin?: { authHeader?: string, status: string } }; export type AuthCli_ListAccountClustersQueryVariables = Exact<{ pagination?: InputMaybe; }>; -export type AuthCli_ListAccountClustersQuery = { - infra_listBYOKClusters?: { - edges: Array<{ - node: { - clusterToken: string; - displayName: string; - lastOnlineAt?: any; - id: string; - metadata: { name: string; labels?: any }; - }; - }>; - }; -}; + +export type AuthCli_ListAccountClustersQuery = { infra_listBYOKClusters?: { edges: Array<{ node: { clusterToken: string, displayName: string, lastOnlineAt?: any, id: string, metadata: { name: string, labels?: any } } }> } }; export type AuthCli_CreateClusterReferenceMutationVariables = Exact<{ cluster: ByokClusterIn; }>; -export type AuthCli_CreateClusterReferenceMutation = { - infra_createBYOKCluster?: { - id: string; - clusterToken: string; - displayName: string; - metadata: { name: string }; - }; -}; + +export type AuthCli_CreateClusterReferenceMutation = { infra_createBYOKCluster?: { id: string, clusterToken: string, displayName: string, metadata: { name: string } } }; export type AuthCli_DeleteClusterReferenceMutationVariables = Exact<{ name: Scalars['String']['input']; }>; -export type AuthCli_DeleteClusterReferenceMutation = { - infra_deleteBYOKCluster: boolean; -}; + +export type AuthCli_DeleteClusterReferenceMutation = { infra_deleteBYOKCluster: boolean }; export type AuthCli_ClusterReferenceInstructionsQueryVariables = Exact<{ name: Scalars['String']['input']; }>; -export type AuthCli_ClusterReferenceInstructionsQuery = { - infrat_getBYOKClusterSetupInstructions?: Array<{ - command: string; - title: string; - }>; -}; + +export type AuthCli_ClusterReferenceInstructionsQuery = { infrat_getBYOKClusterSetupInstructions?: Array<{ command: string, title: string }> }; export type AuthCli_ListImportedManagedResourcesQueryVariables = Exact<{ envName: Scalars['String']['input']; @@ -6676,127 +3152,21 @@ export type AuthCli_ListImportedManagedResourcesQueryVariables = Exact<{ pq?: InputMaybe; }>; -export type AuthCli_ListImportedManagedResourcesQuery = { - core_listImportedManagedResources?: { - totalCount: number; - edges: Array<{ - cursor: string; - node: { - accountName: string; - creationTime: any; - displayName: string; - environmentName: string; - id: string; - markedForDeletion?: boolean; - name: string; - recordVersion: number; - updateTime: any; - createdBy: { userEmail: string; userId: string; userName: string }; - lastUpdatedBy: { userEmail: string; userId: string; userName: string }; - managedResourceRef: { id: string; name: string; namespace: string }; - secretRef: { name: string; namespace?: string }; - syncStatus: { - action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction; - error?: string; - lastSyncedAt?: any; - recordVersion: number; - state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState; - syncScheduledAt?: any; - }; - managedResource?: { - accountName: string; - apiVersion?: string; - creationTime: any; - displayName: string; - enabled?: boolean; - environmentName: string; - id: string; - isImported: boolean; - kind?: string; - managedServiceName: string; - markedForDeletion?: boolean; - mresRef: string; - recordVersion: number; - updateTime: any; - metadata?: { - annotations?: any; - creationTimestamp: any; - deletionTimestamp?: any; - generation: number; - labels?: any; - name: string; - namespace?: string; - }; - spec: { - resourceNamePrefix?: string; - resourceTemplate: { - apiVersion: string; - kind: string; - spec?: any; - msvcRef: { - apiVersion?: string; - kind?: string; - name: string; - namespace: string; - }; - }; - }; - status?: { - checks?: any; - isReady: boolean; - lastReadyGeneration?: number; - lastReconcileTime?: any; - checkList?: Array<{ - debug?: boolean; - description?: string; - hide?: boolean; - name: string; - title: string; - }>; - message?: { RawMessage?: any }; - resources?: Array<{ - apiVersion: string; - kind: string; - name: string; - namespace: string; - }>; - }; - syncedOutputSecretRef?: { - apiVersion?: string; - data?: any; - immutable?: boolean; - kind?: string; - stringData?: any; - type?: K8s__Io___Api___Core___V1__SecretType; - }; - }; - }; - }>; - pageInfo: { - endCursor?: string; - hasNextPage?: boolean; - hasPrevPage?: boolean; - startCursor?: string; - }; - }; -}; + +export type AuthCli_ListImportedManagedResourcesQuery = { core_listImportedManagedResources?: { totalCount: number, edges: Array<{ cursor: string, node: { accountName: string, creationTime: any, displayName: string, environmentName: string, id: string, markedForDeletion?: boolean, name: string, recordVersion: number, updateTime: any, createdBy: { userEmail: string, userId: string, userName: string }, lastUpdatedBy: { userEmail: string, userId: string, userName: string }, managedResourceRef: { id: string, name: string, namespace: string }, secretRef: { name: string, namespace?: string }, syncStatus: { action: Github__Com___Kloudlite___Api___Pkg___Types__SyncAction, error?: string, lastSyncedAt?: any, recordVersion: number, state: Github__Com___Kloudlite___Api___Pkg___Types__SyncState, syncScheduledAt?: any }, managedResource?: { accountName: string, apiVersion?: string, creationTime: any, displayName: string, enabled?: boolean, environmentName: string, id: string, isImported: boolean, kind?: string, managedServiceName: string, markedForDeletion?: boolean, mresRef: string, recordVersion: number, updateTime: any, metadata?: { annotations?: any, creationTimestamp: any, deletionTimestamp?: any, generation: number, labels?: any, name: string, namespace?: string }, spec: { resourceNamePrefix?: string, resourceTemplate: { apiVersion: string, kind: string, spec?: any, msvcRef: { apiVersion?: string, kind?: string, name: string, namespace: string } } }, status?: { checks?: any, isReady: boolean, lastReadyGeneration?: number, lastReconcileTime?: any, checkList?: Array<{ debug?: boolean, description?: string, hide?: boolean, name: string, title: string }>, message?: { RawMessage?: any }, resources?: Array<{ apiVersion: string, kind: string, name: string, namespace: string }> }, syncedOutputSecretRef?: { apiVersion?: string, data?: any, immutable?: boolean, kind?: string, stringData?: any, type?: K8s__Io___Api___Core___V1__SecretType } } } }>, pageInfo: { endCursor?: string, hasNextPage?: boolean, hasPrevPage?: boolean, startCursor?: string } } }; export type AuthSetRemoteAuthHeaderMutationVariables = Exact<{ loginId: Scalars['String']['input']; authHeader?: InputMaybe; }>; -export type AuthSetRemoteAuthHeaderMutation = { - auth_setRemoteAuthHeader: boolean; -}; -export type AuthCheckOauthEnabledQueryVariables = Exact<{ - [key: string]: never; -}>; +export type AuthSetRemoteAuthHeaderMutation = { auth_setRemoteAuthHeader: boolean }; + +export type AuthCheckOauthEnabledQueryVariables = Exact<{ [key: string]: never; }>; -export type AuthCheckOauthEnabledQuery = { - auth_listOAuthProviders?: Array<{ enabled: boolean; provider: string }>; -}; + +export type AuthCheckOauthEnabledQuery = { auth_listOAuthProviders?: Array<{ enabled: boolean, provider: string }> }; export type AuthAddOauthCredientialsMutationVariables = Exact<{ provider: Scalars['String']['input']; @@ -6804,6 +3174,7 @@ export type AuthAddOauthCredientialsMutationVariables = Exact<{ code: Scalars['String']['input']; }>; + export type AuthAddOauthCredientialsMutation = { oAuth_addLogin: boolean }; export type AuthRequestResetPasswordMutationVariables = Exact<{ @@ -6811,15 +3182,15 @@ export type AuthRequestResetPasswordMutationVariables = Exact<{ captchaToken: Scalars['String']['input']; }>; -export type AuthRequestResetPasswordMutation = { - auth_requestResetPassword: boolean; -}; + +export type AuthRequestResetPasswordMutation = { auth_requestResetPassword: boolean }; export type AuthResetPasswordMutationVariables = Exact<{ token: Scalars['String']['input']; password: Scalars['String']['input']; }>; + export type AuthResetPasswordMutation = { auth_resetPassword: boolean }; export type AuthOauthLoginMutationVariables = Exact<{ @@ -6828,40 +3199,36 @@ export type AuthOauthLoginMutationVariables = Exact<{ state?: InputMaybe; }>; + export type AuthOauthLoginMutation = { oAuth_login: { id: string } }; export type AuthVerifyEmailMutationVariables = Exact<{ token: Scalars['String']['input']; }>; + export type AuthVerifyEmailMutation = { auth_verifyEmail: { id: string } }; -export type AuthResendVerificationEmailMutationVariables = Exact<{ - [key: string]: never; -}>; +export type AuthResendVerificationEmailMutationVariables = Exact<{ [key: string]: never; }>; -export type AuthResendVerificationEmailMutation = { - auth_resendVerificationEmail: boolean; -}; -export type AuthLoginPageInitUrlsQueryVariables = Exact<{ - [key: string]: never; -}>; +export type AuthResendVerificationEmailMutation = { auth_resendVerificationEmail: boolean }; -export type AuthLoginPageInitUrlsQuery = { - githubLoginUrl: any; - gitlabLoginUrl: any; - googleLoginUrl: any; -}; +export type AuthLoginPageInitUrlsQueryVariables = Exact<{ [key: string]: never; }>; + + +export type AuthLoginPageInitUrlsQuery = { githubLoginUrl: any, gitlabLoginUrl: any, googleLoginUrl: any }; export type AuthLoginMutationVariables = Exact<{ email: Scalars['String']['input']; password: Scalars['String']['input']; }>; + export type AuthLoginMutation = { auth_login?: { id: string } }; -export type AuthLogoutMutationVariables = Exact<{ [key: string]: never }>; +export type AuthLogoutMutationVariables = Exact<{ [key: string]: never; }>; + export type AuthLogoutMutation = { auth_logout: boolean }; @@ -6872,31 +3239,15 @@ export type AuthSignUpWithEmailMutationVariables = Exact<{ captchaToken: Scalars['String']['input']; }>; + export type AuthSignUpWithEmailMutation = { auth_signup: { id: string } }; -export type AuthWhoAmIQueryVariables = Exact<{ [key: string]: never }>; +export type AuthWhoAmIQueryVariables = Exact<{ [key: string]: never; }>; -export type AuthWhoAmIQuery = { - auth_me?: { - id: string; - email: string; - verified: boolean; - name: string; - approved: boolean; - }; -}; -export type LibWhoAmIQueryVariables = Exact<{ [key: string]: never }>; +export type AuthWhoAmIQuery = { auth_me?: { id: string, email: string, verified: boolean, name: string, approved: boolean } }; -export type LibWhoAmIQuery = { - auth_me?: { - verified: boolean; - name: string; - id: string; - email: string; - approved: boolean; - providerGitlab?: any; - providerGithub?: any; - providerGoogle?: any; - }; -}; +export type LibWhoAmIQueryVariables = Exact<{ [key: string]: never; }>; + + +export type LibWhoAmIQuery = { auth_me?: { verified: boolean, name: string, id: string, email: string, approved: boolean, providerGitlab?: any, providerGithub?: any, providerGoogle?: any } }; diff --git a/src/generated/pnpm-lock.yaml b/src/generated/pnpm-lock.yaml index 0f27b8eba..d6427bea5 100644 --- a/src/generated/pnpm-lock.yaml +++ b/src/generated/pnpm-lock.yaml @@ -1,3164 +1,921 @@ -lockfileVersion: '9.0' +lockfileVersion: '6.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false -importers: - - .: - dependencies: - '@graphql-codegen/near-operation-file-preset': - specifier: ^3.0.0 - version: 3.0.0(graphql@14.7.0) - '@graphql-codegen/plugin-helpers': - specifier: ^5.0.4 - version: 5.0.4(graphql@14.7.0) - '@graphql-codegen/schema-ast': - specifier: ^4.1.0 - version: 4.1.0(graphql@14.7.0) - '@graphql-codegen/typescript-operations': - specifier: ^4.2.3 - version: 4.2.3(graphql@14.7.0) - '@graphql-codegen/typescript-react-apollo': - specifier: ^4.3.0 - version: 4.3.0(graphql-tag@2.12.6)(graphql@14.7.0) - '@graphql-tools/graphql-file-loader': - specifier: ^8.0.1 - version: 8.0.1(graphql@14.7.0) - '@graphql-tools/load': - specifier: ^8.0.2 - version: 8.0.2(graphql@14.7.0) - '@types/node': - specifier: ^20.6.0 - version: 20.6.0 - esbuild: - specifier: ^0.19.2 - version: 0.19.2 - fs: - specifier: 0.0.1-security - version: 0.0.1-security - graphql-2-json-schema: - specifier: ^0.10.0 - version: 0.10.0 - typescript: - specifier: ^5.2.2 - version: 5.2.2 - devDependencies: - '@graphql-codegen/cli': - specifier: ^5.0.2 - version: 5.0.2(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-codegen/typescript': - specifier: ^4.0.9 - version: 4.0.9(graphql@14.7.0) - '@graphql-codegen/typescript-type-graphql': - specifier: ^3.0.0 - version: 3.0.0(graphql@14.7.0) - eslint: - specifier: ^8.47.0 - version: 8.47.0 - graphql-codegen-typescript-common: - specifier: 0.18.2 - version: 0.18.2(graphql@14.7.0) - nodemon: - specifier: ^3.0.1 - version: 3.0.1 +dependencies: + '@graphql-codegen/near-operation-file-preset': + specifier: ^3.0.0 + version: 3.0.0(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': + specifier: ^5.0.4 + version: 5.1.0(graphql@14.7.0) + '@graphql-codegen/schema-ast': + specifier: ^4.1.0 + version: 4.1.0(graphql@14.7.0) + '@graphql-codegen/typescript-operations': + specifier: ^4.2.3 + version: 4.3.1(graphql@14.7.0) + '@graphql-codegen/typescript-react-apollo': + specifier: ^4.3.0 + version: 4.3.2(graphql@14.7.0) + '@graphql-tools/graphql-file-loader': + specifier: ^8.0.1 + version: 8.0.2(graphql@14.7.0) + '@graphql-tools/load': + specifier: ^8.0.2 + version: 8.0.3(graphql@14.7.0) + '@types/node': + specifier: ^20.6.0 + version: 20.17.5 + esbuild: + specifier: ^0.19.2 + version: 0.19.12 + fs: + specifier: 0.0.1-security + version: 0.0.1-security + graphql-2-json-schema: + specifier: ^0.10.0 + version: 0.10.0 + typescript: + specifier: ^5.2.2 + version: 5.6.3 + +devDependencies: + '@graphql-codegen/cli': + specifier: ^5.0.2 + version: 5.0.3(@types/node@20.17.5)(graphql@14.7.0)(typescript@5.6.3) + '@graphql-codegen/typescript': + specifier: ^4.0.9 + version: 4.1.1(graphql@14.7.0) + '@graphql-codegen/typescript-type-graphql': + specifier: ^3.0.0 + version: 3.0.0(graphql@14.7.0) + eslint: + specifier: ^8.47.0 + version: 8.57.1 + graphql-codegen-typescript-common: + specifier: 0.18.2 + version: 0.18.2(graphql@14.7.0) + nodemon: + specifier: ^3.0.1 + version: 3.1.7 packages: - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - - '@ampproject/remapping@2.2.1': - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + /@ampproject/remapping@2.3.0: + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - '@ardatan/relay-compiler@12.0.0': + /@ardatan/relay-compiler@12.0.0(graphql@14.7.0): resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: graphql: '*' + dependencies: + '@babel/core': 7.26.0 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/runtime': 7.26.0 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + babel-preset-fbjs: 3.4.0(@babel/core@7.26.0) + chalk: 4.1.2 + fb-watchman: 2.0.2 + fbjs: 3.0.5 + glob: 7.2.3 + graphql: 14.7.0 + immutable: 3.7.6 + invariant: 2.2.4 + nullthrows: 1.1.1 + relay-runtime: 12.0.0 + signedsource: 1.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - encoding + - supports-color - '@ardatan/sync-fetch@0.0.1': + /@ardatan/sync-fetch@0.0.1: resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} engines: {node: '>=14'} + dependencies: + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + dev: true - '@babel/code-frame@7.22.13': - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.22.9': - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} + /@babel/code-frame@7.26.2: + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 - '@babel/core@7.22.11': - resolution: {integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==} + /@babel/compat-data@7.26.2: + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.22.10': - resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} + /@babel/core@7.26.0: + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.26.0 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + convert-source-map: 2.0.0 + debug: 4.3.7(supports-color@5.5.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/generator@7.23.0': - resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} + /@babel/generator@7.26.2: + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 - '@babel/helper-annotate-as-pure@7.22.5': - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + /@babel/helper-annotate-as-pure@7.25.9: + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.26.0 - '@babel/helper-compilation-targets@7.22.10': - resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} + /@babel/helper-compilation-targets@7.25.9: + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.26.2 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.2 + lru-cache: 5.1.1 + semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.22.11': - resolution: {integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==} + /@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/traverse': 7.25.9 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/helper-environment-visitor@7.22.20': - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-environment-visitor@7.22.5': - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.22.5': - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.23.0': - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@7.22.5': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@7.22.5': - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} + /@babel/helper-member-expression-to-functions@7.25.9: + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-imports@7.22.5': - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + /@babel/helper-module-imports@7.25.9: + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-transforms@7.22.9': - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/helper-optimise-call-expression@7.22.5': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + /@babel/helper-optimise-call-expression@7.25.9: + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.26.0 - '@babel/helper-plugin-utils@7.22.5': - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + /@babel/helper-plugin-utils@7.25.9: + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} - '@babel/helper-replace-supers@7.22.9': - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/helper-simple-access@7.22.5': - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@7.22.6': - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.22.5': - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + /@babel/helper-simple-access@7.25.9: + resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@babel/helper-validator-identifier@7.22.20': - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + /@babel/helper-skip-transparent-expression-wrappers@7.25.9: + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@babel/helper-validator-identifier@7.22.5': - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + /@babel/helper-string-parser@7.25.9: + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.22.5': - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + /@babel/helper-validator-identifier@7.25.9: + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.22.11': - resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==} + /@babel/helper-validator-option@7.25.9: + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.22.13': - resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} + /@babel/helpers@7.26.0: + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 - '@babel/parser@7.22.14': - resolution: {integrity: sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/parser@7.23.0': - resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} + /@babel/parser@7.26.2: + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} engines: {node: '>=6.0.0'} hasBin: true + dependencies: + '@babel/types': 7.26.0 - '@babel/plugin-proposal-class-properties@7.18.6': + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-object-rest-spread@7.20.7': + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.0): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.26.2 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-syntax-class-properties@7.12.13': + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-flow@7.22.5': - resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + /@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-import-assertions@7.22.5': - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + /@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + dev: true - '@babel/plugin-syntax-jsx@7.22.5': - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + /@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-object-rest-spread@7.8.3': + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-arrow-functions@7.22.5': - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} + /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-block-scoped-functions@7.22.5': - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} + /@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-block-scoping@7.22.10': - resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==} + /@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-classes@7.22.6': - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + '@babel/traverse': 7.25.9 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-computed-properties@7.22.5': - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} + /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/template': 7.25.9 - '@babel/plugin-transform-destructuring@7.22.10': - resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==} + /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-flow-strip-types@7.22.5': - resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} + /@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) - '@babel/plugin-transform-for-of@7.22.5': - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-function-name@7.22.5': - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} + /@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-literals@7.22.5': - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} + /@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-member-expression-literals@7.22.5': - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} + /@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-modules-commonjs@7.22.11': - resolution: {integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==} + /@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-simple-access': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-object-super@7.22.5': - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} + /@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-parameters@7.22.5': - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-property-literals@7.22.5': - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + /@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-display-name@7.22.5': - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + /@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-jsx@7.22.5': - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-shorthand-properties@7.22.5': - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} + /@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-spread@7.22.5': - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} + /@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-template-literals@7.22.5': - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} + /@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/runtime@7.22.11': - resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.22.15': - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.22.5': - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + /@babel/runtime@7.26.0: + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.1 - '@babel/traverse@7.23.2': - resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} + /@babel/template@7.25.9: + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 - '@babel/types@7.22.11': - resolution: {integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==} + /@babel/traverse@7.25.9: + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + debug: 4.3.7(supports-color@5.5.0) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color - '@babel/types@7.23.0': - resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} + /@babel/types@7.26.0: + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} - - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - - '@esbuild/android-arm64@0.19.2': - resolution: {integrity: sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@0.19.2': - resolution: {integrity: sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@0.19.2': - resolution: {integrity: sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@0.19.2': - resolution: {integrity: sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@0.19.2': - resolution: {integrity: sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@0.19.2': - resolution: {integrity: sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.19.2': - resolution: {integrity: sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@0.19.2': - resolution: {integrity: sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@0.19.2': - resolution: {integrity: sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@0.19.2': - resolution: {integrity: sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@0.19.2': - resolution: {integrity: sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@0.19.2': - resolution: {integrity: sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@0.19.2': - resolution: {integrity: sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@0.19.2': - resolution: {integrity: sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@0.19.2': - resolution: {integrity: sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@0.19.2': - resolution: {integrity: sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-x64@0.19.2': - resolution: {integrity: sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-x64@0.19.2': - resolution: {integrity: sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@0.19.2': - resolution: {integrity: sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@0.19.2': - resolution: {integrity: sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@0.19.2': - resolution: {integrity: sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@0.19.2': - resolution: {integrity: sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@eslint-community/eslint-utils@4.4.0': - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - - '@eslint-community/regexpp@4.8.0': - resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/eslintrc@2.1.2': - resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/js@8.48.0': - resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@graphql-codegen/add@3.2.3': - resolution: {integrity: sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/add@5.0.3': - resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/cli@5.0.2': - resolution: {integrity: sha512-MBIaFqDiLKuO4ojN6xxG9/xL9wmfD3ZjZ7RsPjwQnSHBCUXnEkdKvX+JVpx87Pq29Ycn8wTJUguXnTZ7Di0Mlw==} - hasBin: true - peerDependencies: - '@parcel/watcher': ^2.1.0 - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - peerDependenciesMeta: - '@parcel/watcher': - optional: true - - '@graphql-codegen/client-preset@4.3.3': - resolution: {integrity: sha512-IrDsSVe8bkKtxgVfKPHzjL9tYlv7KEpA59R4gZLqx/t2WIJncW1i0OMvoz9tgoZsFEs8OKKgXZbnwPZ/Qf1kEw==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/core@4.0.2': - resolution: {integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/gql-tag-operations@4.0.9': - resolution: {integrity: sha512-lVgu1HClel896HqZAEjynatlU6eJrYOw+rh05DPgM150xvmb7Gz5TnRHA2vfwlDNIXDaToAIpz5RFfkjjnYM1Q==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/near-operation-file-preset@3.0.0': - resolution: {integrity: sha512-HRPaa7OsIAHQBFeGiTUVdjFcxzgvAs7uxSqcLEJgDpCr9cffpwnlgWP3gK79KnTiHsRkyb55U1K4YyrL00g1Cw==} - engines: {node: '>= 16.0.0'} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/plugin-helpers@2.7.2': - resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/plugin-helpers@3.1.2': - resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/plugin-helpers@5.0.4': - resolution: {integrity: sha512-MOIuHFNWUnFnqVmiXtrI+4UziMTYrcquljaI5f/T/Bc7oO7sXcfkAvgkNWEEi9xWreYwvuer3VHCuPI/lAFWbw==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/schema-ast@2.6.1': - resolution: {integrity: sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/schema-ast@4.1.0': - resolution: {integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/typed-document-node@5.0.9': - resolution: {integrity: sha512-Wx6fyA4vpfIbfNTMiWUECGnjqzKkJdEbZHxVMIegiCBPzBYPAJV4mZZcildLAfm2FtZcgW4YKtFoTbnbXqPB3w==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/typescript-operations@4.2.3': - resolution: {integrity: sha512-6z7avSSOr03l5SyKbeDs7MzRyGwnQFSCqQm8Om5wIuoIgXVu2gXRmcJAY/I7SLdAy9xbF4Sho7XNqieFM2CAFQ==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/typescript-react-apollo@4.3.0': - resolution: {integrity: sha512-h+IxCGrOTDD60/6ztYDQs81yKDZZq/8aHqM9HHrZ9FiZn145O48VnQNCmGm88I619G9rEET8cCOrtYkCt+ZSzA==} - engines: {node: '>= 16.0.0'} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql-tag: ^2.0.0 - - '@graphql-codegen/typescript-type-graphql@3.0.0': - resolution: {integrity: sha512-uA+VtEG91pmURadZKJrstaMM0WJ5sNg540NWWdz35XFF51Bhvut+33PU8V1h4hKtG2Rxvtt2T02/KkhjzSmWLA==} - engines: {node: '>= 16.0.0'} - peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/typescript@2.8.8': - resolution: {integrity: sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==} - peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/typescript@4.0.9': - resolution: {integrity: sha512-0O35DMR4d/ctuHL1Zo6mRUUzp0BoszKfeWsa6sCm/g70+S98+hEfTwZNDkQHylLxapiyjssF9uw/F+sXqejqLw==} - peerDependencies: - graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/visitor-plugin-common@2.13.1': - resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/visitor-plugin-common@2.13.8': - resolution: {integrity: sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-codegen/visitor-plugin-common@5.3.1': - resolution: {integrity: sha512-MktoBdNZhSmugiDjmFl1z6rEUUaqyxtFJYWnDilE7onkPgyw//O0M+TuPBJPBWdyV6J2ond0Hdqtq+rkghgSIQ==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - '@graphql-tools/apollo-engine-loader@8.0.0': - resolution: {integrity: sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/batch-execute@9.0.2': - resolution: {integrity: sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/code-file-loader@8.0.2': - resolution: {integrity: sha512-AKNpkElUL2cWocYpC4DzNEpo6qJw8Lp+L3bKQ/mIfmbsQxgLz5uve6zHBMhDaFPdlwfIox41N3iUSvi77t9e8A==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/delegate@10.0.2': - resolution: {integrity: sha512-ZU7VnR2xFgHrGnsuw6+nRJkcvSucn7w5ooxb/lTKlVfrNJfTwJevNcNKMnbtPUSajG3+CaFym/nU6v44GXCmNw==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/documents@1.0.1': - resolution: {integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/executor-graphql-ws@1.1.0': - resolution: {integrity: sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/executor-http@1.0.2': - resolution: {integrity: sha512-JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/executor-legacy-ws@1.0.1': - resolution: {integrity: sha512-PQrTJ+ncHMEQspBARc2lhwiQFfRAX/z/CsOdZTFjIljOHgRWGAA1DAx7pEN0j6PflbLCfZ3NensNq2jCBwF46w==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/executor@1.2.0': - resolution: {integrity: sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/git-loader@8.0.2': - resolution: {integrity: sha512-AuCB0nlPvsHh8u42zRZdlD/ZMaWP9A44yAkQUVCZir1E/LG63fsZ9svTWJ+CbusW3Hd0ZP9qpxEhlHxnd4Tlsg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/github-loader@8.0.0': - resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/graphql-file-loader@8.0.1': - resolution: {integrity: sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/graphql-tag-pluck@8.0.2': - resolution: {integrity: sha512-U6fE4yEHxuk/nqmPixHpw1WhqdS6aYuaV60m1bEmUmGJNbpAhaMBy01JncpvpF15yZR5LZ0UjkHg+A3Lhoc8YQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/import@7.0.1': - resolution: {integrity: sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/json-file-loader@8.0.0': - resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/load@8.0.2': - resolution: {integrity: sha512-S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/merge@9.0.6': - resolution: {integrity: sha512-TmkzFTFVieHnqu9mPTF6RxAQltaprpDQnM5HMTPSyMLXnJGMTvdWejV0yORKj7DW1YSi791/sUnKf8HytepBFQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/optimize@1.4.0': - resolution: {integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/optimize@2.0.0': - resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/prisma-loader@8.0.1': - resolution: {integrity: sha512-bl6e5sAYe35Z6fEbgKXNrqRhXlCJYeWKBkarohgYA338/SD9eEhXtg3Cedj7fut3WyRLoQFpHzfiwxKs7XrgXg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/relay-operation-optimizer@6.5.18': - resolution: {integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/relay-operation-optimizer@7.0.0': - resolution: {integrity: sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/schema@10.0.6': - resolution: {integrity: sha512-EIJgPRGzpvDFEjVp+RF1zNNYIC36BYuIeZ514jFoJnI6IdxyVyIRDLx/ykgMdaa1pKQerpfdqDnsF4JnZoDHSQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/url-loader@8.0.0': - resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/utils@10.5.4': - resolution: {integrity: sha512-XHnyCWSlg1ccsD8s0y6ugo5GZ5TpkTiFVNPSYms5G0s6Z/xTuSmiLBfeqgkfaCwLmLaQnRCmNDL2JRnqc2R5bQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/utils@8.13.1': - resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/utils@9.2.1': - resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-tools/wrap@10.0.0': - resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@graphql-typed-document-node/core@3.2.0': - resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - - '@humanwhocodes/config-array@0.11.11': - resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} - engines: {node: '>=10.10.0'} - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/object-schema@1.2.1': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - - '@jridgewell/gen-mapping@0.3.3': - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@3.1.1': - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.1.2': - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/sourcemap-codec@1.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - - '@jridgewell/trace-mapping@0.3.19': - resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@peculiar/asn1-schema@2.3.6': - resolution: {integrity: sha512-izNRxPoaeJeg/AyH8hER6s+H7p4itk+03QCa4sbxI3lNdseQYCuxzgsuNK8bTXChtLTjpJz6NmXKA73qLa3rCA==} - - '@peculiar/json-schema@1.1.12': - resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} - engines: {node: '>=8.0.0'} - - '@peculiar/webcrypto@1.4.3': - resolution: {integrity: sha512-VtaY4spKTdN5LjJ04im/d/joXuvLbQdgy5Z4DXF4MFZhQ+MTrejbNMkfZBp1Bs3O5+bFqnJgyGdPuZQflvIa5A==} - engines: {node: '>=10.12.0'} - - '@repeaterjs/repeater@3.0.4': - resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==} - - '@types/js-yaml@4.0.5': - resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} - - '@types/json-stable-stringify@1.0.34': - resolution: {integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==} - - '@types/node@20.6.0': - resolution: {integrity: sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==} - - '@types/triple-beam@1.3.2': - resolution: {integrity: sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==} - - '@types/ws@8.5.5': - resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==} - - '@whatwg-node/events@0.0.3': - resolution: {integrity: sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==} - - '@whatwg-node/events@0.1.1': - resolution: {integrity: sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==} - engines: {node: '>=16.0.0'} - - '@whatwg-node/fetch@0.8.8': - resolution: {integrity: sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==} - - '@whatwg-node/fetch@0.9.12': - resolution: {integrity: sha512-zNUkPJNfM1v9Jhy3Vmi2a7lQxaNIDTSiAb1NKO5eMsSdo05XoddBEj/CHj1xu4IOMU68VerDvuBVwzPjxBl12g==} - engines: {node: '>=16.0.0'} - - '@whatwg-node/node-fetch@0.3.6': - resolution: {integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==} - - '@whatwg-node/node-fetch@0.4.17': - resolution: {integrity: sha512-ltsmEHHToxug9CsMpfUtyoKUQl6GBCN8PcRAY8NLy2NLrGqRTO3N8hRuEH6z4STle9Gvv62pIvgwI/N5rNpzJQ==} - engines: {node: '>=16.0.0'} - - '@wry/equality@0.1.11': - resolution: {integrity: sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==} - - abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} - engines: {node: '>=0.4.0'} - hasBin: true - - agent-base@7.1.0: - resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} - engines: {node: '>= 14'} - - aggregate-error@2.1.0: - resolution: {integrity: sha512-rIZJqC4XACGWwmPpi18IhDjIzXTJ93KQwYHXuyMCa0Ak9mtzLIbykuei+0i5EnGDy6ts8JVnSyRnZc2cVIMvVg==} - engines: {node: '>=6'} - - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - - apollo-link@1.2.14: - resolution: {integrity: sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==} - peerDependencies: - graphql: ^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0 - - apollo-utilities@1.3.4: - resolution: {integrity: sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==} - peerDependencies: - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 - - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - - asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - - asn1js@3.0.5: - resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==} - engines: {node: '>=12.0.0'} - - assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - - async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - - asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - - auto-bind@4.0.0: - resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} - engines: {node: '>=8'} - - aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - - aws4@1.12.0: - resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} - - babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: - resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} - - babel-preset-fbjs@3.4.0: - resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} - peerDependencies: - '@babel/core': ^7.0.0 - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - - binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} - - bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - - browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - - buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - - buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - - busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - camel-case@3.0.0: - resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} - - camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - - caniuse-lite@1.0.30001525: - resolution: {integrity: sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==} - - capital-case@1.0.4: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} - - caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - change-case-all@1.0.14: - resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} - - change-case-all@1.0.15: - resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==} - - change-case@3.1.0: - resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} - - change-case@4.1.2: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} - - chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - - chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} - - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - - cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} - - cli-spinners@2.9.0: - resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==} - engines: {node: '>=6'} - - cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} - - cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - - cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} - - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} - - color@3.2.1: - resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} - - colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - - colornames@1.1.1: - resolution: {integrity: sha512-/pyV40IrsdulWv+wFPmERh9k/mjsPZ64yUMDmWrtj/k1nmgrzzIENWKdaVKyBbvFdQWqkcaRxr+polCo3VMe7A==} - - colorspace@1.1.4: - resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} - - combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} - - common-tags@1.8.0: - resolution: {integrity: sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==} - engines: {node: '>=4.0.0'} - - common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} - - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - constant-case@2.0.0: - resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} - - constant-case@3.0.4: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} - - convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - - core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - - cosmiconfig@8.2.0: - resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} - engines: {node: '>=14'} - - cross-fetch@3.1.8: - resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} - - cross-inspect@1.0.1: - resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==} - engines: {node: '>=16.0.0'} - - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - - dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} - - dataloader@2.2.2: - resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} - - debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} - - debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - deepmerge@3.2.0: - resolution: {integrity: sha512-6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow==} - engines: {node: '>=0.10.0'} - - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - - delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - - dependency-graph@0.11.0: - resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} - engines: {node: '>= 0.6.0'} - - deprecated-decorator@0.1.6: - resolution: {integrity: sha512-MHidOOnCHGlZDKsI21+mbIIhf4Fff+hhCTB7gtVg4uoIqjcrTZc5v6M+GS2zVI0sV7PqK415rb8XaOSQsQkHOw==} - - detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - - diagnostics@1.1.1: - resolution: {integrity: sha512-8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ==} - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - - dot-case@2.1.1: - resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} - - dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - - dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: '>=12'} - - dset@3.1.2: - resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} - engines: {node: '>=4'} - - ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - - electron-to-chromium@1.4.508: - resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - enabled@1.0.2: - resolution: {integrity: sha512-nnzgVSpB35qKrUN8358SjO1bYAmxoThECTWw9s3J0x5G8A9hokKHVDFzBjVpCoSryo6MhN8woVyascN5jheaNA==} - - env-variable@0.0.6: - resolution: {integrity: sha512-bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg==} - - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - esbuild@0.19.2: - resolution: {integrity: sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==} - engines: {node: '>=12'} - hasBin: true - - escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint@8.47.0: - resolution: {integrity: sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - - espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - - external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - - extract-files@11.0.0: - resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} - engines: {node: ^12.20 || >= 14.13} - - extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - - fast-decode-uri-component@1.0.1: - resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} - engines: {node: '>=8.6.0'} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fast-querystring@1.1.2: - resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} - - fast-url-parser@1.1.3: - resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} - - fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} - - fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - - fbjs-css-vars@1.0.2: - resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} - - fbjs@3.0.5: - resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} - - fecha@4.2.3: - resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} - - figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} - - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} - - fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - - find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - flat-cache@3.1.0: - resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==} - engines: {node: '>=12.0.0'} - - flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - - forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - - form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - - getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob@7.1.3: - resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==} - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - - globals@13.21.0: - resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==} - engines: {node: '>=8'} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - - graphql-2-json-schema@0.10.0: - resolution: {integrity: sha512-rpV74HE2ZLC2J+aWJqF+6+yfhu2KRmT1bPXI972dLymAdM1CWGbo835sk3ledBnVf77JIsMIRnrc9HvOSda67g==} - engines: {node: '>=8'} - - graphql-codegen-core@0.18.2: - resolution: {integrity: sha512-fjfIUrDx0KDdr/jYjUs51+07DvcEc5w9tdid/bNezNzT2iJLtmnnmYLR62an3/PKUnKSOAIKLYxFIBOzsFJH9A==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 - - graphql-codegen-plugin-helpers@0.18.2: - resolution: {integrity: sha512-WZahfp95RdePwwPWxnxAHgfkXXEQXNrgX9sGrB//uGfj8lygcf7m/rNZQ4iooUzoqBEkTtJpi7bezWCieNcq2A==} - - graphql-codegen-typescript-common@0.18.2: - resolution: {integrity: sha512-uGGHd/vgwMlnCNOMQkvMxW8Xz0fqPGjPHROsniRNP1ragsa6KfFBrGu9toHgxv8m3MzC6ZPeoUa3wtwtS9oVnA==} - - graphql-config@5.0.2: - resolution: {integrity: sha512-7TPxOrlbiG0JplSZYCyxn2XQtqVhXomEjXUmWJVSS5ET1nPhOJSsIb/WTwqWhcYX6G0RlHXSj9PLtGTKmxLNGg==} - engines: {node: '>= 16.0.0'} - peerDependencies: - cosmiconfig-toml-loader: ^1.0.0 - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - peerDependenciesMeta: - cosmiconfig-toml-loader: - optional: true - - graphql-import@0.7.1: - resolution: {integrity: sha512-YpwpaPjRUVlw2SN3OPljpWbVRWAhMAyfSba5U47qGMOSsPLi2gYeJtngGpymjm9nk57RFWEpjqwh4+dpYuFAPw==} - engines: {node: '>=4.0.0'} - deprecated: GraphQL Import has been deprecated and merged into GraphQL Tools, so it will no longer get updates. Use GraphQL Tools instead to stay up-to-date! Check out https://www.graphql-tools.com/docs/migration-from-import for migration and https://the-guild.dev/blog/graphql-tools-v6 for new changes. - peerDependencies: - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 - - graphql-request@6.1.0: - resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} - peerDependencies: - graphql: 14 - 16 - - graphql-tag-pluck@0.6.0: - resolution: {integrity: sha512-C1SRw5zZtl7CN7mv6Q0abFVSJwG8M+FniFCPqWD+AjQMj9igNPthraMUQ02KSo+j19khR60mksqmFN3BwboFaw==} - - graphql-tag@2.10.1: - resolution: {integrity: sha512-jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==} - peerDependencies: - graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 - - graphql-tag@2.12.6: - resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} - engines: {node: '>=10'} - peerDependencies: - graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - graphql-toolkit@0.2.0: - resolution: {integrity: sha512-dMwb+V2u6vwJF70tWuqSxgNal9fK1xcB8JtmCJUStVUh+PjfNrlKH1X5e17vJlN+lRPz1hatr8jH+Q6lTW0jLw==} - deprecated: Use @graphql-toolkit/* monorepo packages instead. Check https://github.com/ardatan/graphql-toolkit for more details - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 - - graphql-tools@4.0.4: - resolution: {integrity: sha512-chF12etTIGVVGy3fCTJ1ivJX2KB7OSG4c6UOJQuqOHCmBQwTyNgCDuejZKvpYxNZiEx7bwIjrodDgDe9RIkjlw==} - deprecated: |- - This package has been deprecated and now it only exports makeExecutableSchema. - And it will no longer receive updates. - We recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc. - Check out https://www.graphql-tools.com to learn what package you should use instead - peerDependencies: - graphql: ^0.13.0 || ^14.0.0 - - graphql-ws@5.14.0: - resolution: {integrity: sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g==} - engines: {node: '>=10'} - peerDependencies: - graphql: '>=0.11 <=16' - - graphql@14.7.0: - resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==} - engines: {node: '>= 6.x'} - - har-schema@2.0.0: - resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} - engines: {node: '>=4'} - - har-validator@5.1.5: - resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} - engines: {node: '>=6'} - deprecated: this library is no longer supported - - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - header-case@1.0.1: - resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} - - header-case@2.0.4: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} - - http-proxy-agent@7.0.0: - resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} - engines: {node: '>= 14'} - - http-signature@1.2.0: - resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} - engines: {node: '>=0.8', npm: '>=1.3.7'} - - https-proxy-agent@7.0.1: - resolution: {integrity: sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ==} - engines: {node: '>= 14'} - - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - - ignore-by-default@1.0.1: - resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} - - ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} - - immutable@3.7.6: - resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} - engines: {node: '>=0.8.0'} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-from@2.1.0: - resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} - engines: {node: '>=4'} - - import-from@4.0.0: - resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} - engines: {node: '>=12.2'} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - indent-string@3.2.0: - resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} - engines: {node: '>=4'} - - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} - - invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - - is-absolute@1.0.0: - resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} - engines: {node: '>=0.10.0'} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - - is-extglob@1.0.0: - resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} - engines: {node: '>=0.10.0'} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-glob@2.0.1: - resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} - engines: {node: '>=0.10.0'} - - is-glob@4.0.0: - resolution: {integrity: sha512-IEg9HSCKitWUYBRkCSztkm2Lenav8e04mlxHjiMRg2w9Bx82TFIDEDamwfn0RgwFgLNLSkZd0YJT2ColdN8KCw==} - engines: {node: '>=0.10.0'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - - is-invalid-path@0.1.0: - resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==} - engines: {node: '>=0.10.0'} - - is-lower-case@1.1.3: - resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} - - is-lower-case@2.0.2: - resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - - is-relative@1.0.0: - resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} - engines: {node: '>=0.10.0'} - - is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - - is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - - is-unc-path@1.0.0: - resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} - engines: {node: '>=0.10.0'} - - is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - - is-upper-case@1.1.2: - resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} - - is-upper-case@2.0.2: - resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} - - is-valid-path@0.1.1: - resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==} - engines: {node: '>=0.10.0'} - - is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - isomorphic-ws@5.0.0: - resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} - peerDependencies: - ws: '*' - - isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - - iterall@1.3.0: - resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} - - jiti@1.19.3: - resolution: {integrity: sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==} - hasBin: true - - jose@4.15.5: - resolution: {integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==} - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - json-stable-stringify@1.0.2: - resolution: {integrity: sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==} - - json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - - json-to-pretty-yaml@1.2.2: - resolution: {integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==} - engines: {node: '>= 0.2.0'} - - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - jsonify@0.0.1: - resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} - - jsprim@1.4.2: - resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} - engines: {node: '>=0.6.0'} - - keyv@4.5.3: - resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==} - - kuler@1.0.1: - resolution: {integrity: sha512-J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ==} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - listr2@4.0.5: - resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} - engines: {node: '>=12'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true - - locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - - lodash@4.17.11: - resolution: {integrity: sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==} - - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} - - log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} - - logform@2.5.1: - resolution: {integrity: sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==} - - loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - - lower-case-first@1.0.2: - resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} - - lower-case-first@2.0.2: - resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} - - lower-case@1.1.4: - resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} - - lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - - lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - - map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - meros@1.3.0: - resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} - engines: {node: '>=13'} - peerDependencies: - '@types/node': '>=13' - peerDependenciesMeta: - '@types/node': - optional: true - - micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - - mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - - mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@4.2.3: - resolution: {integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==} - engines: {node: '>=10'} - - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - no-case@2.3.2: - resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} - - no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - - node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - - node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - - node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} - - nodemon@3.0.1: - resolution: {integrity: sha512-g9AZ7HmkhQkqXkRc20w+ZfQ73cHLbE8hnPbtaFbFtCumZsjyMhKk9LajQ07U5Ux28lvFjZ5X7HvWR1xzU8jHVw==} - engines: {node: '>=10'} - hasBin: true - - nopt@1.0.10: - resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} - hasBin: true - - normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - nullthrows@1.1.1: - resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - - oauth-sign@0.9.0: - resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} - - object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - one-time@0.0.4: - resolution: {integrity: sha512-qAMrwuk2xLEutlASoiPiAMW3EN3K96Ka/ilSXYr6qR1zSVXw2j7+yDSqGTC4T9apfLYxM3tLLjKvgPdAUK7kYQ==} - - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} - - ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} - - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - - param-case@2.1.1: - resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} - - param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-filepath@1.0.2: - resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} - engines: {node: '>=0.8'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - pascal-case@2.0.1: - resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} - - pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - - path-case@2.1.1: - resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} - - path-case@3.0.4: - resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-root-regex@0.1.2: - resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} - engines: {node: '>=0.10.0'} - - path-root@0.1.1: - resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} - engines: {node: '>=0.10.0'} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - - promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} - - psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - - pstree.remy@1.1.8: - resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} - - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - - punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} - - pvtsutils@1.3.5: - resolution: {integrity: sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA==} - - pvutils@1.1.3: - resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==} - engines: {node: '>=6.0.0'} - - qs@6.5.3: - resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} - engines: {node: '>=0.6'} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - - regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} - - relay-runtime@12.0.0: - resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} - - remedial@1.0.8: - resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==} - - remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - - remove-trailing-spaces@1.0.8: - resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==} - - request@2.88.0: - resolution: {integrity: sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==} - engines: {node: '>= 4'} - deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 - - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - - resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - - restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rfdc@1.3.0: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} - - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true - - run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - - safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} - engines: {node: '>=10'} - - safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - - scuid@1.1.0: - resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==} - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - - sentence-case@2.1.1: - resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} - - sentence-case@3.0.4: - resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} - - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - - setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - signedsource@1.0.0: - resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} - - simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} - - simple-update-notifier@2.0.0: - resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} - engines: {node: '>=10'} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} - - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - - snake-case@2.1.0: - resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} - - snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} - - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - sponge-case@1.0.1: - resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} - - sshpk@1.17.0: - resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} - engines: {node: '>=0.10.0'} - hasBin: true - - stack-trace@0.0.10: - resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} - - streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} - - string-env-interpolation@1.0.1: - resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - swap-case@1.1.2: - resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} - - swap-case@2.0.2: - resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} - - text-hex@1.0.0: - resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} - - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - title-case@2.1.1: - resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} - - title-case@3.0.3: - resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} - - tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - touch@3.1.0: - resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} - hasBin: true - - tough-cookie@2.4.3: - resolution: {integrity: sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==} - engines: {node: '>=0.8'} - - tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - - triple-beam@1.4.1: - resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} - engines: {node: '>= 14.0.0'} - - ts-invariant@0.4.4: - resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==} - - ts-log@2.1.4: - resolution: {integrity: sha512-P1EJSoyV+N3bR/IWFeAqXzKPZwHpnLY6j7j58mAvewHRipo+BQM2Y1f9Y9BjEQznKwgqqZm7H8iuixmssU7tYQ==} - - ts-log@2.2.5: - resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==} - - tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - tslib@2.4.1: - resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - - tslib@2.5.3: - resolution: {integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==} - - tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - - tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - - tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - - type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - - typescript@3.9.10: - resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==} - engines: {node: '>=4.2.0'} - hasBin: true - - typescript@5.2.2: - resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} - engines: {node: '>=14.17'} - hasBin: true - - ua-parser-js@1.0.35: - resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==} - - unc-path-regex@0.1.2: - resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} - engines: {node: '>=0.10.0'} - - undefsafe@2.0.5: - resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} - - unixify@1.0.0: - resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} - engines: {node: '>=0.10.0'} - - update-browserslist-db@1.0.11: - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - upper-case-first@1.1.2: - resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} - - upper-case-first@2.0.2: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} - - upper-case@1.1.3: - resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} - - upper-case@2.0.2: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - urlpattern-polyfill@8.0.2: - resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==} - - urlpattern-polyfill@9.0.0: - resolution: {integrity: sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - - valid-url@1.0.9: - resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} - - value-or-promise@1.0.12: - resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} - engines: {node: '>=12'} - - verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} - - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - - web-streams-polyfill@3.2.1: - resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} - engines: {node: '>= 8'} - - webcrypto-core@1.7.7: - resolution: {integrity: sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==} - - webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - - whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} - - which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - winston-transport@4.5.0: - resolution: {integrity: sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==} - engines: {node: '>= 6.4.0'} - - winston@3.2.1: - resolution: {integrity: sha512-zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw==} - engines: {node: '>= 6.4.0'} - - wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} - - wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - - yaml-ast-parser@0.0.43: - resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} - - yaml@2.3.2: - resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} - engines: {node: '>= 14'} - - yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} - - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - zen-observable-ts@0.8.21: - resolution: {integrity: sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==} - - zen-observable@0.8.15: - resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} - -snapshots: - - '@aashutoshrathi/word-wrap@1.2.6': {} - - '@ampproject/remapping@2.2.1': - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 - - '@ardatan/relay-compiler@12.0.0(graphql@14.7.0)': - dependencies: - '@babel/core': 7.22.11 - '@babel/generator': 7.22.10 - '@babel/parser': 7.22.14 - '@babel/runtime': 7.22.11 - '@babel/traverse': 7.23.2 - '@babel/types': 7.22.11 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.11) - chalk: 4.1.2 - fb-watchman: 2.0.2 - fbjs: 3.0.5 - glob: 7.2.3 - graphql: 14.7.0 - immutable: 3.7.6 - invariant: 2.2.4 - nullthrows: 1.1.1 - relay-runtime: 12.0.0 - signedsource: 1.0.0 - yargs: 15.4.1 - transitivePeerDependencies: - - encoding - - supports-color - - '@ardatan/sync-fetch@0.0.1': - dependencies: - node-fetch: 2.7.0 - transitivePeerDependencies: - - encoding - - '@babel/code-frame@7.22.13': - dependencies: - '@babel/highlight': 7.22.13 - chalk: 2.4.2 - - '@babel/compat-data@7.22.9': {} - - '@babel/core@7.22.11': - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11) - '@babel/helpers': 7.22.11 - '@babel/parser': 7.22.14 - '@babel/template': 7.22.5 - '@babel/traverse': 7.23.2 - '@babel/types': 7.22.11 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.22.10': - dependencies: - '@babel/types': 7.22.11 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 - jsesc: 2.5.2 - - '@babel/generator@7.23.0': - dependencies: - '@babel/types': 7.23.0 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.19 - jsesc: 2.5.2 - - '@babel/helper-annotate-as-pure@7.22.5': - dependencies: - '@babel/types': 7.22.11 - - '@babel/helper-compilation-targets@7.22.10': - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.10 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-create-class-features-plugin@7.22.11(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - - '@babel/helper-environment-visitor@7.22.20': {} - - '@babel/helper-environment-visitor@7.22.5': {} - - '@babel/helper-function-name@7.22.5': - dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.11 - - '@babel/helper-function-name@7.23.0': - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.0 - - '@babel/helper-hoist-variables@7.22.5': - dependencies: - '@babel/types': 7.23.0 - - '@babel/helper-member-expression-to-functions@7.22.5': - dependencies: - '@babel/types': 7.22.11 - - '@babel/helper-module-imports@7.22.5': - dependencies: - '@babel/types': 7.22.11 - - '@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 - - '@babel/helper-optimise-call-expression@7.22.5': - dependencies: - '@babel/types': 7.22.11 - - '@babel/helper-plugin-utils@7.22.5': {} - - '@babel/helper-replace-supers@7.22.9(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - - '@babel/helper-simple-access@7.22.5': - dependencies: - '@babel/types': 7.22.11 - - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - dependencies: - '@babel/types': 7.22.11 - - '@babel/helper-split-export-declaration@7.22.6': - dependencies: - '@babel/types': 7.23.0 - - '@babel/helper-string-parser@7.22.5': {} - - '@babel/helper-validator-identifier@7.22.20': {} - - '@babel/helper-validator-identifier@7.22.5': {} - - '@babel/helper-validator-option@7.22.5': {} - - '@babel/helpers@7.22.11': - dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.23.2 - '@babel/types': 7.22.11 - transitivePeerDependencies: - - supports-color - - '@babel/highlight@7.22.13': - dependencies: - '@babel/helper-validator-identifier': 7.22.5 - chalk: 2.4.2 - js-tokens: 4.0.0 - - '@babel/parser@7.22.14': - dependencies: - '@babel/types': 7.22.11 - - '@babel/parser@7.23.0': - dependencies: - '@babel/types': 7.23.0 - - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11) - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.11)': - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.11 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.11) - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - - '@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 - - '@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11) - - '@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-modules-commonjs@7.22.11(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - - '@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11) - - '@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) - '@babel/types': 7.22.11 - - '@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - - '@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.11)': - dependencies: - '@babel/core': 7.22.11 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/runtime@7.22.11': - dependencies: - regenerator-runtime: 0.14.0 - - '@babel/template@7.22.15': - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/parser': 7.23.0 - '@babel/types': 7.23.0 - - '@babel/template@7.22.5': - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/parser': 7.22.14 - '@babel/types': 7.22.11 - - '@babel/traverse@7.23.2': - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.23.0 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.0 - '@babel/types': 7.23.0 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/types@7.22.11': dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - to-fast-properties: 2.0.0 + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 - '@babel/types@7.23.0': - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 + /@colors/colors@1.6.0: + resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} + engines: {node: '>=0.1.90'} + dev: true - '@colors/colors@1.5.0': {} + /@esbuild/aix-ppc64@0.19.12: + resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: false + optional: true - '@esbuild/android-arm64@0.19.2': + /@esbuild/android-arm64@0.19.12: + resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: false optional: true - '@esbuild/android-arm@0.19.2': + /@esbuild/android-arm@0.19.12: + resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: false optional: true - '@esbuild/android-x64@0.19.2': + /@esbuild/android-x64@0.19.12: + resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: false optional: true - '@esbuild/darwin-arm64@0.19.2': + /@esbuild/darwin-arm64@0.19.12: + resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false optional: true - '@esbuild/darwin-x64@0.19.2': + /@esbuild/darwin-x64@0.19.12: + resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false optional: true - '@esbuild/freebsd-arm64@0.19.2': + /@esbuild/freebsd-arm64@0.19.12: + resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: false optional: true - '@esbuild/freebsd-x64@0.19.2': + /@esbuild/freebsd-x64@0.19.12: + resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-arm64@0.19.2': + /@esbuild/linux-arm64@0.19.12: + resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-arm@0.19.2': + /@esbuild/linux-arm@0.19.12: + resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-ia32@0.19.2': + /@esbuild/linux-ia32@0.19.12: + resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-loong64@0.19.2': + /@esbuild/linux-loong64@0.19.12: + resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-mips64el@0.19.2': + /@esbuild/linux-mips64el@0.19.12: + resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-ppc64@0.19.2': + /@esbuild/linux-ppc64@0.19.12: + resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-riscv64@0.19.2': + /@esbuild/linux-riscv64@0.19.12: + resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-s390x@0.19.2': + /@esbuild/linux-s390x@0.19.12: + resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/linux-x64@0.19.2': + /@esbuild/linux-x64@0.19.12: + resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false optional: true - '@esbuild/netbsd-x64@0.19.2': + /@esbuild/netbsd-x64@0.19.12: + resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: false optional: true - '@esbuild/openbsd-x64@0.19.2': + /@esbuild/openbsd-x64@0.19.12: + resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: false optional: true - '@esbuild/sunos-x64@0.19.2': + /@esbuild/sunos-x64@0.19.12: + resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: false optional: true - '@esbuild/win32-arm64@0.19.2': + /@esbuild/win32-arm64@0.19.12: + resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: false optional: true - '@esbuild/win32-ia32@0.19.2': + /@esbuild/win32-ia32@0.19.12: + resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: false optional: true - '@esbuild/win32-x64@0.19.2': + /@esbuild/win32-x64@0.19.12: + resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.47.0)': + /@eslint-community/eslint-utils@4.4.1(eslint@8.57.1): + resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.47.0 + eslint: 8.57.1 eslint-visitor-keys: 3.4.3 + dev: true - '@eslint-community/regexpp@4.8.0': {} + /@eslint-community/regexpp@4.12.1: + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: true - '@eslint/eslintrc@2.1.2': + /@eslint/eslintrc@2.1.4: + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.7(supports-color@5.5.0) espree: 9.6.1 - globals: 13.21.0 - ignore: 5.2.4 + globals: 13.24.0 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: true - '@eslint/js@8.48.0': {} + /@eslint/js@8.57.1: + resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true - '@graphql-codegen/add@3.2.3(graphql@14.7.0)': + /@graphql-codegen/add@3.2.3(graphql@14.7.0): + resolution: {integrity: sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) graphql: 14.7.0 tslib: 2.4.1 + dev: false - '@graphql-codegen/add@5.0.3(graphql@14.7.0)': + /@graphql-codegen/add@5.0.3(graphql@14.7.0): + resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 + dev: true - '@graphql-codegen/cli@5.0.2(@types/node@20.6.0)(graphql@14.7.0)': + /@graphql-codegen/cli@5.0.3(@types/node@20.17.5)(graphql@14.7.0)(typescript@5.6.3): + resolution: {integrity: sha512-ULpF6Sbu2d7vNEOgBtE9avQp2oMgcPY/QBYcCqk0Xru5fz+ISjcovQX29V7CS7y5wWBRzNLoXwJQGeEyWbl05g==} + engines: {node: '>=16'} + hasBin: true + peerDependencies: + '@parcel/watcher': ^2.1.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + '@parcel/watcher': + optional: true dependencies: - '@babel/generator': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.23.0 - '@graphql-codegen/client-preset': 4.3.3(graphql@14.7.0) + '@babel/generator': 7.26.2 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + '@graphql-codegen/client-preset': 4.5.0(graphql@14.7.0) '@graphql-codegen/core': 4.0.2(graphql@14.7.0) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-tools/apollo-engine-loader': 8.0.0(graphql@14.7.0) - '@graphql-tools/code-file-loader': 8.0.2(graphql@14.7.0) - '@graphql-tools/git-loader': 8.0.2(graphql@14.7.0) - '@graphql-tools/github-loader': 8.0.0(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@14.7.0) - '@graphql-tools/json-file-loader': 8.0.0(graphql@14.7.0) - '@graphql-tools/load': 8.0.2(graphql@14.7.0) - '@graphql-tools/prisma-loader': 8.0.1(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/url-loader': 8.0.0(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@whatwg-node/fetch': 0.8.8 + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-tools/apollo-engine-loader': 8.0.2(graphql@14.7.0) + '@graphql-tools/code-file-loader': 8.1.4(graphql@14.7.0) + '@graphql-tools/git-loader': 8.0.8(graphql@14.7.0) + '@graphql-tools/github-loader': 8.0.2(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/graphql-file-loader': 8.0.2(graphql@14.7.0) + '@graphql-tools/json-file-loader': 8.0.2(graphql@14.7.0) + '@graphql-tools/load': 8.0.3(graphql@14.7.0) + '@graphql-tools/prisma-loader': 8.0.14(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/url-loader': 8.0.12(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@whatwg-node/fetch': 0.9.22 chalk: 4.1.2 - cosmiconfig: 8.2.0 + cosmiconfig: 8.3.6(typescript@5.6.3) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 14.7.0 - graphql-config: 5.0.2(@types/node@20.6.0)(graphql@14.7.0) + graphql-config: 5.1.3(@types/node@20.17.5)(graphql@14.7.0)(typescript@5.6.3) inquirer: 8.2.6 is-glob: 4.0.3 - jiti: 1.19.3 + jiti: 1.21.6 json-to-pretty-yaml: 1.2.2 listr2: 4.0.5 log-symbols: 4.1.0 - micromatch: 4.0.5 + micromatch: 4.0.8 shell-quote: 1.8.1 string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - tslib: 2.6.2 - yaml: 2.3.2 + ts-log: 2.2.7 + tslib: 2.8.1 + yaml: 2.6.0 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -3167,62 +924,86 @@ snapshots: - encoding - enquirer - supports-color + - typescript - utf-8-validate + dev: true - '@graphql-codegen/client-preset@4.3.3(graphql@14.7.0)': + /@graphql-codegen/client-preset@4.5.0(graphql@14.7.0): + resolution: {integrity: sha512-0fFGSjpDhB7Jp6v+FQWDIeNJhL8VEiy3zeazyus3mGUELPaRQsoos2NczkDWnyMjSB1NHn4GrI53DB4TXkTAog==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/template': 7.25.9 '@graphql-codegen/add': 5.0.3(graphql@14.7.0) - '@graphql-codegen/gql-tag-operations': 4.0.9(graphql@14.7.0) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-codegen/typed-document-node': 5.0.9(graphql@14.7.0) - '@graphql-codegen/typescript': 4.0.9(graphql@14.7.0) - '@graphql-codegen/typescript-operations': 4.2.3(graphql@14.7.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@14.7.0) + '@graphql-codegen/gql-tag-operations': 4.0.11(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-codegen/typed-document-node': 5.0.11(graphql@14.7.0) + '@graphql-codegen/typescript': 4.1.1(graphql@14.7.0) + '@graphql-codegen/typescript-operations': 4.3.1(graphql@14.7.0) + '@graphql-codegen/visitor-plugin-common': 5.5.0(graphql@14.7.0) '@graphql-tools/documents': 1.0.1(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color + dev: true - '@graphql-codegen/core@4.0.2(graphql@14.7.0)': + /@graphql-codegen/core@4.0.2(graphql@14.7.0): + resolution: {integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-tools/schema': 10.0.6(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-tools/schema': 10.0.7(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 + dev: true - '@graphql-codegen/gql-tag-operations@4.0.9(graphql@14.7.0)': + /@graphql-codegen/gql-tag-operations@4.0.11(graphql@14.7.0): + resolution: {integrity: sha512-EUQuBsYB5RtNlzBb/O0nJvbWC8HvPRWwVTHRf0ElOoQlJfRgfDom2GWmEM5hXa2afzMqB7AWxOH24ibOqiYnMQ==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-codegen/visitor-plugin-common': 5.5.0(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) auto-bind: 4.0.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color + dev: true - '@graphql-codegen/near-operation-file-preset@3.0.0(graphql@14.7.0)': + /@graphql-codegen/near-operation-file-preset@3.0.0(graphql@14.7.0): + resolution: {integrity: sha512-HRPaa7OsIAHQBFeGiTUVdjFcxzgvAs7uxSqcLEJgDpCr9cffpwnlgWP3gK79KnTiHsRkyb55U1K4YyrL00g1Cw==} + engines: {node: '>= 16.0.0'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/add': 3.2.3(graphql@14.7.0) '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 parse-filepath: 1.0.2 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color + dev: false - '@graphql-codegen/plugin-helpers@2.7.2(graphql@14.7.0)': + /@graphql-codegen/plugin-helpers@2.7.2(graphql@14.7.0): + resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 8.13.1(graphql@14.7.0) change-case-all: 1.0.14 @@ -3232,7 +1013,10 @@ snapshots: lodash: 4.17.21 tslib: 2.4.1 - '@graphql-codegen/plugin-helpers@3.1.2(graphql@14.7.0)': + /@graphql-codegen/plugin-helpers@3.1.2(graphql@14.7.0): + resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-tools/utils': 9.2.1(graphql@14.7.0) change-case-all: 1.0.15 @@ -3242,80 +1026,112 @@ snapshots: lodash: 4.17.21 tslib: 2.4.1 - '@graphql-codegen/plugin-helpers@5.0.4(graphql@14.7.0)': + /@graphql-codegen/plugin-helpers@5.1.0(graphql@14.7.0): + resolution: {integrity: sha512-Y7cwEAkprbTKzVIe436TIw4w03jorsMruvCvu0HJkavaKMQbWY+lQ1RIuROgszDbxAyM35twB5/sUvYG5oW+yg==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 14.7.0 import-from: 4.0.0 lodash: 4.17.21 - tslib: 2.6.2 + tslib: 2.6.3 - '@graphql-codegen/schema-ast@2.6.1(graphql@14.7.0)': + /@graphql-codegen/schema-ast@2.6.1(graphql@14.7.0): + resolution: {integrity: sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) '@graphql-tools/utils': 9.2.1(graphql@14.7.0) graphql: 14.7.0 tslib: 2.4.1 + dev: true - '@graphql-codegen/schema-ast@4.1.0(graphql@14.7.0)': + /@graphql-codegen/schema-ast@4.1.0(graphql@14.7.0): + resolution: {integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 - '@graphql-codegen/typed-document-node@5.0.9(graphql@14.7.0)': + /@graphql-codegen/typed-document-node@5.0.11(graphql@14.7.0): + resolution: {integrity: sha512-btENKrSIUZ5UllS8sFhVZ+Y91VL0knK9gHxW/6/WzaCTxBQ+wOk07vQNeoWlvMrkl0QeUsGt6YvSo0SoPtsKdA==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-codegen/visitor-plugin-common': 5.5.0(graphql@14.7.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color + dev: true - '@graphql-codegen/typescript-operations@4.2.3(graphql@14.7.0)': + /@graphql-codegen/typescript-operations@4.3.1(graphql@14.7.0): + resolution: {integrity: sha512-yW5Iia6IK1VKiPm3oeukYMQN5pEBLwRlG8ZzQA9beeLQ8PskKyz6mjar6U7dJ2hc8pv/qT4R8kcJOQ2RloniAQ==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) - '@graphql-codegen/typescript': 4.0.9(graphql@14.7.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) + '@graphql-codegen/typescript': 4.1.1(graphql@14.7.0) + '@graphql-codegen/visitor-plugin-common': 5.5.0(graphql@14.7.0) auto-bind: 4.0.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/typescript-react-apollo@4.3.0(graphql-tag@2.12.6)(graphql@14.7.0)': + /@graphql-codegen/typescript-react-apollo@4.3.2(graphql@14.7.0): + resolution: {integrity: sha512-io2tWfeehBqOB2X6llqLE6B9wjjsXZT/GTZlguGVXdbR7WhSJO9GXyLflXYKxom/h2bPjkVL534Ev6wZLcs0wA==} + engines: {node: '>= 16.0.0'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@14.7.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 14.7.0 - graphql-tag: 2.12.6(graphql@14.7.0) - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color + dev: false - '@graphql-codegen/typescript-type-graphql@3.0.0(graphql@14.7.0)': + /@graphql-codegen/typescript-type-graphql@3.0.0(graphql@14.7.0): + resolution: {integrity: sha512-uA+VtEG91pmURadZKJrstaMM0WJ5sNg540NWWdz35XFF51Bhvut+33PU8V1h4hKtG2Rxvtt2T02/KkhjzSmWLA==} + engines: {node: '>= 16.0.0'} + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) '@graphql-codegen/typescript': 2.8.8(graphql@14.7.0) '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@14.7.0) auto-bind: 4.0.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color + dev: true - '@graphql-codegen/typescript@2.8.8(graphql@14.7.0)': + /@graphql-codegen/typescript@2.8.8(graphql@14.7.0): + resolution: {integrity: sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==} + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) '@graphql-codegen/schema-ast': 2.6.1(graphql@14.7.0) @@ -3326,20 +1142,28 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@graphql-codegen/typescript@4.0.9(graphql@14.7.0)': + /@graphql-codegen/typescript@4.1.1(graphql@14.7.0): + resolution: {integrity: sha512-+o5LOT71K9hdO4lDVnRGkkET5RdlKvxlQGug8dZgRGrhE2/xoPBsKfLhg9AoJGYMauNZxKj3blABQxHOKEku6Q==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) '@graphql-codegen/schema-ast': 4.1.0(graphql@14.7.0) - '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@14.7.0) + '@graphql-codegen/visitor-plugin-common': 5.5.0(graphql@14.7.0) auto-bind: 4.0.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@2.13.1(graphql@14.7.0)': + /@graphql-codegen/visitor-plugin-common@2.13.1(graphql@14.7.0): + resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 2.7.2(graphql@14.7.0) '@graphql-tools/optimize': 1.4.0(graphql@14.7.0) @@ -3356,7 +1180,10 @@ snapshots: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@2.13.8(graphql@14.7.0)': + /@graphql-codegen/visitor-plugin-common@2.13.8(graphql@14.7.0): + resolution: {integrity: sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.7.0) '@graphql-tools/optimize': 1.4.0(graphql@14.7.0) @@ -3372,224 +1199,321 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@graphql-codegen/visitor-plugin-common@5.3.1(graphql@14.7.0)': + /@graphql-codegen/visitor-plugin-common@5.5.0(graphql@14.7.0): + resolution: {integrity: sha512-FSkxe/o4qKbpK+ipIT/jxZLYH0+3+XdIrJWsKlCW9wwJMF9mEJLJtzZNcxHSjz7+Eny6SUElAT2dqZ5XByxkog==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@14.7.0) + '@graphql-codegen/plugin-helpers': 5.1.0(graphql@14.7.0) '@graphql-tools/optimize': 2.0.0(graphql@14.7.0) - '@graphql-tools/relay-operation-optimizer': 7.0.0(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/relay-operation-optimizer': 7.0.2(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 graphql: 14.7.0 graphql-tag: 2.12.6(graphql@14.7.0) parse-filepath: 1.0.2 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/apollo-engine-loader@8.0.0(graphql@14.7.0)': + /@graphql-tools/apollo-engine-loader@8.0.2(graphql@14.7.0): + resolution: {integrity: sha512-HTFoCILMU7u/Y97G5iu2EPSMTW/b/Lx6Ww2emX/WDtubU2A/7RqzBUjrDj/JMPTEblOAPUwJ1XcxtvXgQVaSyQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@whatwg-node/fetch': 0.9.12 + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@whatwg-node/fetch': 0.9.22 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - encoding + dev: true - '@graphql-tools/batch-execute@9.0.2(graphql@14.7.0)': + /@graphql-tools/batch-execute@9.0.5(graphql@14.7.0): + resolution: {integrity: sha512-wkHLqBNtprKuNk+6ZoOw/RthsnGDycIjtOo976K8f0IgbE7fRNO9SnyhjSziHaIWVDjOuP3XaJD5v/i3vQsa5Q==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) dataloader: 2.2.2 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 value-or-promise: 1.0.12 + dev: true - '@graphql-tools/code-file-loader@8.0.2(graphql@14.7.0)': + /@graphql-tools/code-file-loader@8.1.4(graphql@14.7.0): + resolution: {integrity: sha512-vwMk+trCGLidWTmwC5CybqN0+W9fG6VMf61HEggUGBcYLzUmTAIn9DXsU1IFeLRtn8rNx8xH4JpDGd6fv0YWUQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/graphql-tag-pluck': 8.3.3(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) globby: 11.1.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color + dev: true - '@graphql-tools/delegate@10.0.2(graphql@14.7.0)': + /@graphql-tools/delegate@10.1.0(graphql@14.7.0): + resolution: {integrity: sha512-INGyOd8r2r42FCapGYnOqFjUCTaZVEsBG6tbR0fFXS5yieel1bgYfZTa3MEDpje34micxImW/Ohnc1kX0H5IZg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 9.0.2(graphql@14.7.0) - '@graphql-tools/executor': 1.2.0(graphql@14.7.0) - '@graphql-tools/schema': 10.0.6(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/batch-execute': 9.0.5(graphql@14.7.0) + '@graphql-tools/executor': 1.3.2(graphql@14.7.0) + '@graphql-tools/schema': 10.0.7(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 + dset: 3.1.4 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 + dev: true - '@graphql-tools/documents@1.0.1(graphql@14.7.0)': + /@graphql-tools/documents@1.0.1(graphql@14.7.0): + resolution: {integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 14.7.0 lodash.sortby: 4.7.0 - tslib: 2.6.2 + tslib: 2.8.1 + dev: true - '@graphql-tools/executor-graphql-ws@1.1.0(graphql@14.7.0)': + /@graphql-tools/executor-graphql-ws@1.3.1(graphql@14.7.0): + resolution: {integrity: sha512-UAS5aeWLqv89iJ899OK8uwBMVGVH4nhJDIuIT+8z8f5iPiIpfqt2ipZLasdSLpi5WUpYDIolnVUFd2NvzccO7A==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@types/ws': 8.5.5 + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@types/ws': 8.5.12 graphql: 14.7.0 - graphql-ws: 5.14.0(graphql@14.7.0) - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - ws: 8.13.0 + graphql-ws: 5.16.0(graphql@14.7.0) + isomorphic-ws: 5.0.0(ws@8.18.0) + tslib: 2.8.1 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate + dev: true - '@graphql-tools/executor-http@1.0.2(@types/node@20.6.0)(graphql@14.7.0)': + /@graphql-tools/executor-http@1.1.7(@types/node@20.17.5)(graphql@14.7.0): + resolution: {integrity: sha512-iWTE1MtCW26jxs5DeXsUNPkIFmVWEhioJx0wcDSacJ0onXjyMalfae5SgsuwHMQCVuvvUtQUgb8a9hmPhQ0y+g==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/fetch': 0.9.12 + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@repeaterjs/repeater': 3.0.6 + '@whatwg-node/fetch': 0.9.22 extract-files: 11.0.0 graphql: 14.7.0 - meros: 1.3.0(@types/node@20.6.0) - tslib: 2.6.2 + meros: 1.3.0(@types/node@20.17.5) + tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' + dev: true - '@graphql-tools/executor-legacy-ws@1.0.1(graphql@14.7.0)': + /@graphql-tools/executor-legacy-ws@1.1.1(graphql@14.7.0): + resolution: {integrity: sha512-9J5WBd9D7+V299BsMJmgMVBsUl01rqzpfWx+if2r5k9xBYchj5delUOsx337XtNLb3Ewoy0Za24DkNYIx3Cgyg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@types/ws': 8.5.5 + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@types/ws': 8.5.12 graphql: 14.7.0 - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - ws: 8.13.0 + isomorphic-ws: 5.0.0(ws@8.18.0) + tslib: 2.8.1 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate + dev: true - '@graphql-tools/executor@1.2.0(graphql@14.7.0)': + /@graphql-tools/executor@1.3.2(graphql@14.7.0): + resolution: {integrity: sha512-U8nAR709IPNjwf0aLG6U9FlX0t7vA4cdWvL4RtMR/L/Ll4OHZ39OqUtq6moy+kLRRwLTqLif6iiUYrxnWpUGXw==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) - '@repeaterjs/repeater': 3.0.4 + '@repeaterjs/repeater': 3.0.6 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 value-or-promise: 1.0.12 + dev: true - '@graphql-tools/git-loader@8.0.2(graphql@14.7.0)': + /@graphql-tools/git-loader@8.0.8(graphql@14.7.0): + resolution: {integrity: sha512-1zGkgVDecM8I4+ymSuqOpckdAiFRbD3TVqOIcATolJ3I5a2eJhzqADZaOvMHzWWs69PPzOBzjcOj6EdVUeNBug==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/graphql-tag-pluck': 8.3.3(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 is-glob: 4.0.3 - micromatch: 4.0.5 - tslib: 2.6.2 + micromatch: 4.0.8 + tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color + dev: true - '@graphql-tools/github-loader@8.0.0(@types/node@20.6.0)(graphql@14.7.0)': + /@graphql-tools/github-loader@8.0.2(@types/node@20.17.5)(graphql@14.7.0): + resolution: {integrity: sha512-VrhEOI+lh/vH5XyVBK3uNBYGFz9lHR5elADT44tBuBI5eyzm1N/dCaJ1nW9mVTij7deLVEKetTOHrMETVqyZ+A==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.0.2(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@whatwg-node/fetch': 0.9.12 + '@graphql-tools/executor-http': 1.1.7(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/graphql-tag-pluck': 8.3.3(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@whatwg-node/fetch': 0.9.22 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' - encoding - supports-color + dev: true - '@graphql-tools/graphql-file-loader@8.0.1(graphql@14.7.0)': + /@graphql-tools/graphql-file-loader@8.0.2(graphql@14.7.0): + resolution: {integrity: sha512-uf/vkO7jIU19hOZKL/DPyE5vm3wH7nFpfNYrMGGx8XlDK7l0al/MO7HQy+4YUPENkAd8FBgRNt2Ilm1fUXCwJg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 7.0.1(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/import': 7.0.2(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) globby: 11.1.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 unixify: 1.0.0 - '@graphql-tools/graphql-tag-pluck@8.0.2(graphql@14.7.0)': + /@graphql-tools/graphql-tag-pluck@8.3.3(graphql@14.7.0): + resolution: {integrity: sha512-G+8UNUa54ct/f9hNHo7Ez61BeAoaeXYhtfq8rYu0m9Upr/BCgsQmuvEgyHBRSFVkqOQj56H5aBwKW68SPrrU8g==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/parser': 7.23.0 - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.11) - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@babel/core': 7.26.0 + '@babel/parser': 7.26.2 + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0) + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - supports-color + dev: true - '@graphql-tools/import@7.0.1(graphql@14.7.0)': + /@graphql-tools/import@7.0.2(graphql@14.7.0): + resolution: {integrity: sha512-7OpShcq/yRwCcMcTyLNIonYw9l1yD+Im/znN/l9SRsThYGhMlojEHIntn7f9IArCnHR71uZk5UQioGLUTG6E6A==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 resolve-from: 5.0.0 - tslib: 2.6.2 + tslib: 2.8.1 - '@graphql-tools/json-file-loader@8.0.0(graphql@14.7.0)': + /@graphql-tools/json-file-loader@8.0.2(graphql@14.7.0): + resolution: {integrity: sha512-gdsOfH+wU4LAineG3oiqw4DNrwAdmr/ZfZ1JiL3wlUsk16P78qmM8jD9H7pkdMuwVdD0e/d+QrVhbo9qQ0CcKw==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) globby: 11.1.0 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 unixify: 1.0.0 + dev: true - '@graphql-tools/load@8.0.2(graphql@14.7.0)': + /@graphql-tools/load@8.0.3(graphql@14.7.0): + resolution: {integrity: sha512-JE/MdTMcaIQ68U9zaizXG3QkR4Qligv131JVVmVJScxA1gv0gIc+HDixa5YK1rBXYLANU1sZMk87ZVuPaUdAoQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 10.0.6(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/schema': 10.0.7(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 p-limit: 3.1.0 - tslib: 2.6.2 + tslib: 2.8.1 - '@graphql-tools/merge@9.0.6(graphql@14.7.0)': + /@graphql-tools/merge@9.0.8(graphql@14.7.0): + resolution: {integrity: sha512-RG9NEp4fi0MoFi0te4ahqTMYuavQnXlpEZxxMomdCa6CI5tfekcVm/rsLF5Zt8O4HY+esDt9+4dCL+aOKvG79w==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 - '@graphql-tools/optimize@1.4.0(graphql@14.7.0)': + /@graphql-tools/optimize@1.4.0(graphql@14.7.0): + resolution: {integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 14.7.0 - tslib: 2.4.1 + tslib: 2.6.3 - '@graphql-tools/optimize@2.0.0(graphql@14.7.0)': + /@graphql-tools/optimize@2.0.0(graphql@14.7.0): + resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.1(@types/node@20.6.0)(graphql@14.7.0)': + /@graphql-tools/prisma-loader@8.0.14(@types/node@20.17.5)(graphql@14.7.0): + resolution: {integrity: sha512-eb120NTESWDH3fKraBGwbtAk8N6qbupY9VK5wHV5FD07GVZVXsRc2blXD+tE5DYacM6NMsvAVL4ozJLW+oIKpg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 8.0.0(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@types/js-yaml': 4.0.5 - '@types/json-stable-stringify': 1.0.34 - '@whatwg-node/fetch': 0.9.12 + '@graphql-tools/url-loader': 8.0.12(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@types/js-yaml': 4.0.9 + '@whatwg-node/fetch': 0.9.22 chalk: 4.1.2 - debug: 4.3.4 - dotenv: 16.3.1 + debug: 4.3.7(supports-color@5.5.0) + dotenv: 16.4.5 graphql: 14.7.0 graphql-request: 6.1.0(graphql@14.7.0) - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.1 - jose: 4.15.5 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.5 + jose: 5.9.6 js-yaml: 4.1.0 - json-stable-stringify: 1.0.2 lodash: 4.17.21 scuid: 1.1.0 - tslib: 2.6.2 + tslib: 2.8.1 yaml-ast-parser: 0.0.43 transitivePeerDependencies: - '@types/node' @@ -3597,413 +1521,580 @@ snapshots: - encoding - supports-color - utf-8-validate + dev: true - '@graphql-tools/relay-operation-optimizer@6.5.18(graphql@14.7.0)': + /@graphql-tools/relay-operation-optimizer@6.5.18(graphql@14.7.0): + resolution: {integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@14.7.0) '@graphql-tools/utils': 9.2.1(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.4.1 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/relay-operation-optimizer@7.0.0(graphql@14.7.0)': + /@graphql-tools/relay-operation-optimizer@7.0.2(graphql@14.7.0): + resolution: {integrity: sha512-sdoGBfe6+OXcPYUBMla3KKvf56bk0wCRY2HL4qK/CNP+7752Nx6s24aBqZ5vrnB3tleddAfnG4gvy0JuHfmA+A==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/schema@10.0.6(graphql@14.7.0)': + /@graphql-tools/schema@10.0.7(graphql@14.7.0): + resolution: {integrity: sha512-Cz1o+rf9cd3uMgG+zI9HlM5mPlnHQUlk/UQRZyUlPDfT+944taLaokjvj7AI6GcOFVf4f2D11XthQp+0GY31jQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 9.0.6(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/merge': 9.0.8(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/url-loader@8.0.0(@types/node@20.6.0)(graphql@14.7.0)': + /@graphql-tools/url-loader@8.0.12(@types/node@20.17.5)(graphql@14.7.0): + resolution: {integrity: sha512-sEf+bgSAVNCyOGz2XzAzBMJFpmKCS2HRSP3rPdBxQW55E+oW2f7wmdDWTVADkpAvtULaoFeGPVRwhoeRFp9Qng==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 10.0.2(graphql@14.7.0) - '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@14.7.0) - '@graphql-tools/executor-http': 1.0.2(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/executor-legacy-ws': 1.0.1(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - '@graphql-tools/wrap': 10.0.0(graphql@14.7.0) - '@types/ws': 8.5.5 - '@whatwg-node/fetch': 0.9.12 + '@graphql-tools/executor-graphql-ws': 1.3.1(graphql@14.7.0) + '@graphql-tools/executor-http': 1.1.7(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/executor-legacy-ws': 1.1.1(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + '@graphql-tools/wrap': 10.0.14(graphql@14.7.0) + '@types/ws': 8.5.12 + '@whatwg-node/fetch': 0.9.22 graphql: 14.7.0 - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 + isomorphic-ws: 5.0.0(ws@8.18.0) + tslib: 2.8.1 value-or-promise: 1.0.12 - ws: 8.13.0 + ws: 8.18.0 transitivePeerDependencies: - '@types/node' - bufferutil - encoding - utf-8-validate + dev: true - '@graphql-tools/utils@10.5.4(graphql@14.7.0)': + /@graphql-tools/utils@10.5.5(graphql@14.7.0): + resolution: {integrity: sha512-LF/UDWmMT0mnobL2UZETwYghV7HYBzNaGj0SAkCYOMy/C3+6sQdbcTksnoFaKR9XIVD78jNXEGfivbB8Zd+cwA==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) cross-inspect: 1.0.1 - dset: 3.1.2 + dset: 3.1.4 graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 - '@graphql-tools/utils@8.13.1(graphql@14.7.0)': + /@graphql-tools/utils@8.13.1(graphql@14.7.0): + resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 14.7.0 - tslib: 2.4.1 + tslib: 2.6.3 - '@graphql-tools/utils@9.2.1(graphql@14.7.0)': + /@graphql-tools/utils@9.2.1(graphql@14.7.0): + resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 - '@graphql-tools/wrap@10.0.0(graphql@14.7.0)': + /@graphql-tools/wrap@10.0.14(graphql@14.7.0): + resolution: {integrity: sha512-tEvFF+60w2WWc4IVDVTgPwqioWxKrzTmPpsiA4T3b+pnd7kYgaa805Bhfy+jp3epObfRkIAtrbwJK1KPM3PZvQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 10.0.2(graphql@14.7.0) - '@graphql-tools/schema': 10.0.6(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) + '@graphql-tools/delegate': 10.1.0(graphql@14.7.0) + '@graphql-tools/schema': 10.0.7(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.8.1 value-or-promise: 1.0.12 + dev: true - '@graphql-typed-document-node/core@3.2.0(graphql@14.7.0)': + /@graphql-typed-document-node/core@3.2.0(graphql@14.7.0): + resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: graphql: 14.7.0 - '@humanwhocodes/config-array@0.11.11': + /@humanwhocodes/config-array@0.13.0: + resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.3.7(supports-color@5.5.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color + dev: true - '@humanwhocodes/module-importer@1.0.1': {} + /@humanwhocodes/module-importer@1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true - '@humanwhocodes/object-schema@1.2.1': {} + /@humanwhocodes/object-schema@2.0.3: + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + deprecated: Use @eslint/object-schema instead + dev: true - '@jridgewell/gen-mapping@0.3.3': + /@jridgewell/gen-mapping@0.3.5: + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.1': {} + /@jridgewell/resolve-uri@3.1.2: + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.1.2': {} + /@jridgewell/set-array@1.2.1: + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} - '@jridgewell/sourcemap-codec@1.4.15': {} + /@jridgewell/sourcemap-codec@1.5.0: + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@jridgewell/trace-mapping@0.3.19': + /@jridgewell/trace-mapping@0.3.25: + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 - '@nodelib/fs.scandir@2.1.5': + /@kamilkisiela/fast-url-parser@1.1.4: + resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 - - '@peculiar/asn1-schema@2.3.6': - dependencies: - asn1js: 3.0.5 - pvtsutils: 1.3.5 - tslib: 2.6.2 - - '@peculiar/json-schema@1.1.12': - dependencies: - tslib: 2.6.2 - - '@peculiar/webcrypto@1.4.3': - dependencies: - '@peculiar/asn1-schema': 2.3.6 - '@peculiar/json-schema': 1.1.12 - pvtsutils: 1.3.5 - tslib: 2.6.2 - webcrypto-core: 1.7.7 - - '@repeaterjs/repeater@3.0.4': {} - - '@types/js-yaml@4.0.5': {} + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} - '@types/json-stable-stringify@1.0.34': {} + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.17.1 - '@types/node@20.6.0': {} + /@repeaterjs/repeater@3.0.6: + resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} + dev: true - '@types/triple-beam@1.3.2': {} + /@types/js-yaml@4.0.9: + resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} + dev: true - '@types/ws@8.5.5': + /@types/node@20.17.5: + resolution: {integrity: sha512-n8FYY/pRxu496441gIcAQFZPKXbhsd6VZygcq+PTSZ75eMh/Ke0hCAROdUa21qiFqKNsPPYic46yXDO1JGiPBQ==} dependencies: - '@types/node': 20.6.0 + undici-types: 6.19.8 - '@whatwg-node/events@0.0.3': {} + /@types/triple-beam@1.3.5: + resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} + dev: true - '@whatwg-node/events@0.1.1': {} - - '@whatwg-node/fetch@0.8.8': + /@types/ws@8.5.12: + resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==} dependencies: - '@peculiar/webcrypto': 1.4.3 - '@whatwg-node/node-fetch': 0.3.6 - busboy: 1.6.0 - urlpattern-polyfill: 8.0.2 - web-streams-polyfill: 3.2.1 + '@types/node': 20.17.5 + dev: true - '@whatwg-node/fetch@0.9.12': - dependencies: - '@whatwg-node/node-fetch': 0.4.17 - urlpattern-polyfill: 9.0.0 + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: true - '@whatwg-node/node-fetch@0.3.6': + /@whatwg-node/fetch@0.9.22: + resolution: {integrity: sha512-+RIBffgoaRlWV9cKV6wAX71sbeoU2APOI3G13ZRMkabYHwkvDMeZDTyxJcsMXA5CpieJ7NFXF9Xyu72jwvdzqA==} + engines: {node: '>=18.0.0'} dependencies: - '@whatwg-node/events': 0.0.3 - busboy: 1.6.0 - fast-querystring: 1.1.2 - fast-url-parser: 1.1.3 - tslib: 2.6.2 + '@whatwg-node/node-fetch': 0.5.27 + urlpattern-polyfill: 10.0.0 + dev: true - '@whatwg-node/node-fetch@0.4.17': + /@whatwg-node/node-fetch@0.5.27: + resolution: {integrity: sha512-0OaMj5W4fzWimRSFq07qFiWfquaUMNB+695GwE76LYKVuah+jwCdzSgsIOtwPkiyJ35w0XGhXmJPiIJCdLwopg==} + engines: {node: '>=18.0.0'} dependencies: - '@whatwg-node/events': 0.1.1 + '@kamilkisiela/fast-url-parser': 1.1.4 busboy: 1.6.0 fast-querystring: 1.1.2 - fast-url-parser: 1.1.3 - tslib: 2.6.2 + tslib: 2.8.1 + dev: true - '@wry/equality@0.1.11': + /@wry/equality@0.1.11: + resolution: {integrity: sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==} dependencies: tslib: 1.14.1 + dev: true - abbrev@1.1.1: {} + /abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} + dependencies: + event-target-shim: 5.0.1 + dev: true - acorn-jsx@5.3.2(acorn@8.10.0): + /acorn-jsx@5.3.2(acorn@8.14.0): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.10.0 + acorn: 8.14.0 + dev: true - acorn@8.10.0: {} + /acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true - agent-base@7.1.0: + /agent-base@7.1.1: + resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} + engines: {node: '>= 14'} dependencies: - debug: 4.3.4 + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color + dev: true - aggregate-error@2.1.0: + /aggregate-error@2.1.0: + resolution: {integrity: sha512-rIZJqC4XACGWwmPpi18IhDjIzXTJ93KQwYHXuyMCa0Ak9mtzLIbykuei+0i5EnGDy6ts8JVnSyRnZc2cVIMvVg==} + engines: {node: '>=6'} dependencies: clean-stack: 2.2.0 indent-string: 3.2.0 + dev: true - aggregate-error@3.1.0: + /aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 + dev: true - ajv@6.12.6: + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 + dev: true - ansi-escapes@4.3.2: + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.21.3 + dev: true - ansi-regex@5.0.1: {} + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} - ansi-styles@3.2.1: + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 + dev: true - ansi-styles@4.3.0: + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 - anymatch@3.1.3: + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 + dev: true - apollo-link@1.2.14(graphql@14.7.0): + /apollo-link@1.2.14(graphql@14.7.0): + resolution: {integrity: sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==} + peerDependencies: + graphql: ^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: apollo-utilities: 1.3.4(graphql@14.7.0) graphql: 14.7.0 ts-invariant: 0.4.4 tslib: 1.14.1 zen-observable-ts: 0.8.21 + dev: true - apollo-utilities@1.3.4(graphql@14.7.0): + /apollo-utilities@1.3.4(graphql@14.7.0): + resolution: {integrity: sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==} + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: '@wry/equality': 0.1.11 fast-json-stable-stringify: 2.1.0 graphql: 14.7.0 ts-invariant: 0.4.4 tslib: 1.14.1 + dev: true - argparse@2.0.1: {} + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true - array-union@2.1.0: {} + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} - asap@2.0.6: {} + /asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - asn1@0.2.6: + /asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} dependencies: safer-buffer: 2.1.2 + dev: true - asn1js@3.0.5: - dependencies: - pvtsutils: 1.3.5 - pvutils: 1.1.3 - tslib: 2.6.2 - - assert-plus@1.0.0: {} + /assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + dev: true - astral-regex@2.0.0: {} + /astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true - async@2.6.4: + /async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: lodash: 4.17.21 + dev: true - asynckit@0.4.0: {} - - auto-bind@4.0.0: {} - - aws-sign2@0.7.0: {} - - aws4@1.12.0: {} - - babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} - - babel-preset-fbjs@3.4.0(@babel/core@7.22.11): - dependencies: - '@babel/core': 7.22.11 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.11) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.11) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.11) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.22.11) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.11) + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true + + /auto-bind@4.0.0: + resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} + engines: {node: '>=8'} + + /aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true + + /aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} + dev: true + + /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: + resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + + /babel-preset-fbjs@3.4.0(@babel/core@7.26.0): + resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0) + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + transitivePeerDependencies: + - supports-color - balanced-match@1.0.2: {} + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - base64-js@1.5.1: {} + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true - bcrypt-pbkdf@1.0.2: + /bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: tweetnacl: 0.14.5 + dev: true - binary-extensions@2.2.0: {} + /binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + dev: true - bl@4.1.0: + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 + dev: true - brace-expansion@1.1.11: + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - braces@3.0.2: + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + + /braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} dependencies: - fill-range: 7.0.1 + fill-range: 7.1.1 - browserslist@4.21.10: + /browserslist@4.24.2: + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true dependencies: - caniuse-lite: 1.0.30001525 - electron-to-chromium: 1.4.508 - node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) + caniuse-lite: 1.0.30001676 + electron-to-chromium: 1.5.50 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.2) - bser@2.1.1: + /bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 - buffer-from@1.1.2: {} + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true - buffer@5.7.1: + /buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 + dev: true - busboy@1.6.0: + /busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} dependencies: streamsearch: 1.1.0 + dev: true - callsites@3.1.0: {} + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true - camel-case@3.0.0: + /camel-case@3.0.0: + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} dependencies: no-case: 2.3.2 upper-case: 1.1.3 + dev: true - camel-case@4.1.2: + /camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.5.3 + tslib: 2.6.3 - camelcase@5.3.1: {} + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} - caniuse-lite@1.0.30001525: {} + /caniuse-lite@1.0.30001676: + resolution: {integrity: sha512-Qz6zwGCiPghQXGJvgQAem79esjitvJ+CxSbSQkW9H/UX5hg8XM88d4lp2W+MEQ81j+Hip58Il+jGVdazk1z9cw==} - capital-case@1.0.4: + /capital-case@1.0.4: + resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} dependencies: no-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 upper-case-first: 2.0.2 - caseless@0.12.0: {} + /caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true - chalk@2.4.2: + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 + dev: true - chalk@4.1.2: + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - change-case-all@1.0.14: + /change-case-all@1.0.14: + resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} dependencies: change-case: 4.1.2 is-lower-case: 2.0.2 @@ -4016,7 +2107,8 @@ snapshots: upper-case: 2.0.2 upper-case-first: 2.0.2 - change-case-all@1.0.15: + /change-case-all@1.0.15: + resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==} dependencies: change-case: 4.1.2 is-lower-case: 2.0.2 @@ -4029,7 +2121,8 @@ snapshots: upper-case: 2.0.2 upper-case-first: 2.0.2 - change-case@3.1.0: + /change-case@3.1.0: + resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} dependencies: camel-case: 3.0.0 constant-case: 2.0.0 @@ -4049,8 +2142,10 @@ snapshots: title-case: 2.1.1 upper-case: 1.1.3 upper-case-first: 1.1.2 + dev: true - change-case@4.1.2: + /change-case@4.1.2: + resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} dependencies: camel-case: 4.1.2 capital-case: 1.0.4 @@ -4063,14 +2158,18 @@ snapshots: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - chardet@0.7.0: {} + /chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true - chokidar@3.5.3: + /chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} dependencies: anymatch: 3.1.3 - braces: 3.0.2 + braces: 3.0.3 glob-parent: 5.1.2 is-binary-path: 2.1.0 is-glob: 4.0.3 @@ -4078,261 +2177,410 @@ snapshots: readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.3 + dev: true - clean-stack@2.2.0: {} + /clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + dev: true - cli-cursor@3.1.0: + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 + dev: true - cli-spinners@2.9.0: {} + /cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + dev: true - cli-truncate@2.1.0: + /cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 + dev: true - cli-width@3.0.0: {} + /cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true - cliui@6.0.0: + /cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - cliui@8.0.1: + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + dev: true - clone@1.0.4: {} + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true - color-convert@1.9.3: + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 + dev: true - color-convert@2.0.1: + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 - color-name@1.1.3: {} + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true - color-name@1.1.4: {} + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - color-string@1.9.1: + /color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 + dev: true - color@3.2.1: + /color@3.2.1: + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} dependencies: color-convert: 1.9.3 color-string: 1.9.1 + dev: true - colorette@2.0.20: {} + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + dev: true - colornames@1.1.1: {} + /colornames@1.1.1: + resolution: {integrity: sha512-/pyV40IrsdulWv+wFPmERh9k/mjsPZ64yUMDmWrtj/k1nmgrzzIENWKdaVKyBbvFdQWqkcaRxr+polCo3VMe7A==} + dev: true - colorspace@1.1.4: + /colorspace@1.1.4: + resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} dependencies: color: 3.2.1 text-hex: 1.0.0 + dev: true - combined-stream@1.0.8: + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 + dev: true - common-tags@1.8.0: {} + /common-tags@1.8.0: + resolution: {integrity: sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==} + engines: {node: '>=4.0.0'} + dev: true - common-tags@1.8.2: {} + /common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} - concat-map@0.0.1: {} + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - constant-case@2.0.0: + /constant-case@2.0.0: + resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} dependencies: snake-case: 2.1.0 upper-case: 1.1.3 + dev: true - constant-case@3.0.4: + /constant-case@3.0.4: + resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} dependencies: no-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 upper-case: 2.0.2 - convert-source-map@1.9.0: {} + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-util-is@1.0.2: {} + /core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + dev: true - cosmiconfig@8.2.0: + /cosmiconfig@8.3.6(typescript@5.6.3): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + typescript: 5.6.3 + dev: true - cross-fetch@3.1.8: + /cross-fetch@3.1.8: + resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} dependencies: node-fetch: 2.7.0 transitivePeerDependencies: - encoding - cross-inspect@1.0.1: + /cross-inspect@1.0.1: + resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==} + engines: {node: '>=16.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.8.1 - cross-spawn@7.0.3: + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 + dev: true - dashdash@1.14.1: + /dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 + dev: true - dataloader@2.2.2: {} + /dataloader@2.2.2: + resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} + dev: true - debounce@1.2.1: {} + /debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + dev: true - debug@3.2.7(supports-color@5.5.0): + /debug@4.3.7(supports-color@5.5.0): + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 supports-color: 5.5.0 - debug@4.3.4: - dependencies: - ms: 2.1.2 - - decamelize@1.2.0: {} + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} - deep-is@0.1.4: {} + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true - deepmerge@3.2.0: {} + /deepmerge@3.2.0: + resolution: {integrity: sha512-6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow==} + engines: {node: '>=0.10.0'} + dev: true - defaults@1.0.4: + /defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 + dev: true - delayed-stream@1.0.0: {} + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: true - dependency-graph@0.11.0: {} + /dependency-graph@0.11.0: + resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} + engines: {node: '>= 0.6.0'} - deprecated-decorator@0.1.6: {} + /deprecated-decorator@0.1.6: + resolution: {integrity: sha512-MHidOOnCHGlZDKsI21+mbIIhf4Fff+hhCTB7gtVg4uoIqjcrTZc5v6M+GS2zVI0sV7PqK415rb8XaOSQsQkHOw==} + dev: true - detect-indent@6.1.0: {} + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true - diagnostics@1.1.1: + /diagnostics@1.1.1: + resolution: {integrity: sha512-8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ==} dependencies: colorspace: 1.1.4 enabled: 1.0.2 kuler: 1.0.1 + dev: true - dir-glob@3.0.1: + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 - doctrine@3.0.0: + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 + dev: true - dot-case@2.1.1: + /dot-case@2.1.1: + resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} dependencies: no-case: 2.3.2 + dev: true - dot-case@3.0.4: + /dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - dotenv@16.3.1: {} + /dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} + dev: true - dset@3.1.2: {} + /dset@3.1.4: + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} + engines: {node: '>=4'} - ecc-jsbn@0.1.2: + /ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 + dev: true - electron-to-chromium@1.4.508: {} + /electron-to-chromium@1.5.50: + resolution: {integrity: sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==} - emoji-regex@8.0.0: {} + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - enabled@1.0.2: + /enabled@1.0.2: + resolution: {integrity: sha512-nnzgVSpB35qKrUN8358SjO1bYAmxoThECTWw9s3J0x5G8A9hokKHVDFzBjVpCoSryo6MhN8woVyascN5jheaNA==} dependencies: env-variable: 0.0.6 + dev: true - env-variable@0.0.6: {} + /env-variable@0.0.6: + resolution: {integrity: sha512-bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg==} + dev: true - error-ex@1.3.2: + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 + dev: true - esbuild@0.19.2: + /esbuild@0.19.12: + resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.19.2 - '@esbuild/android-arm64': 0.19.2 - '@esbuild/android-x64': 0.19.2 - '@esbuild/darwin-arm64': 0.19.2 - '@esbuild/darwin-x64': 0.19.2 - '@esbuild/freebsd-arm64': 0.19.2 - '@esbuild/freebsd-x64': 0.19.2 - '@esbuild/linux-arm': 0.19.2 - '@esbuild/linux-arm64': 0.19.2 - '@esbuild/linux-ia32': 0.19.2 - '@esbuild/linux-loong64': 0.19.2 - '@esbuild/linux-mips64el': 0.19.2 - '@esbuild/linux-ppc64': 0.19.2 - '@esbuild/linux-riscv64': 0.19.2 - '@esbuild/linux-s390x': 0.19.2 - '@esbuild/linux-x64': 0.19.2 - '@esbuild/netbsd-x64': 0.19.2 - '@esbuild/openbsd-x64': 0.19.2 - '@esbuild/sunos-x64': 0.19.2 - '@esbuild/win32-arm64': 0.19.2 - '@esbuild/win32-ia32': 0.19.2 - '@esbuild/win32-x64': 0.19.2 - - escalade@3.1.1: {} - - escape-string-regexp@1.0.5: {} - - escape-string-regexp@4.0.0: {} - - eslint-scope@7.2.2: + '@esbuild/aix-ppc64': 0.19.12 + '@esbuild/android-arm': 0.19.12 + '@esbuild/android-arm64': 0.19.12 + '@esbuild/android-x64': 0.19.12 + '@esbuild/darwin-arm64': 0.19.12 + '@esbuild/darwin-x64': 0.19.12 + '@esbuild/freebsd-arm64': 0.19.12 + '@esbuild/freebsd-x64': 0.19.12 + '@esbuild/linux-arm': 0.19.12 + '@esbuild/linux-arm64': 0.19.12 + '@esbuild/linux-ia32': 0.19.12 + '@esbuild/linux-loong64': 0.19.12 + '@esbuild/linux-mips64el': 0.19.12 + '@esbuild/linux-ppc64': 0.19.12 + '@esbuild/linux-riscv64': 0.19.12 + '@esbuild/linux-s390x': 0.19.12 + '@esbuild/linux-x64': 0.19.12 + '@esbuild/netbsd-x64': 0.19.12 + '@esbuild/openbsd-x64': 0.19.12 + '@esbuild/sunos-x64': 0.19.12 + '@esbuild/win32-arm64': 0.19.12 + '@esbuild/win32-ia32': 0.19.12 + '@esbuild/win32-x64': 0.19.12 + dev: false + + /escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 + dev: true - eslint-visitor-keys@3.4.3: {} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true - eslint@8.47.0: + /eslint@8.57.1: + resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. + hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0) - '@eslint-community/regexpp': 4.8.0 - '@eslint/eslintrc': 2.1.2 - '@eslint/js': 8.48.0 - '@humanwhocodes/config-array': 0.11.11 + '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) + '@eslint-community/regexpp': 4.12.1 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.57.1 + '@humanwhocodes/config-array': 0.13.0 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.7(supports-color@5.5.0) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - esquery: 1.5.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.21.0 + globals: 13.24.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 @@ -4342,77 +2590,126 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color + dev: true - espree@9.6.1: + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) eslint-visitor-keys: 3.4.3 + dev: true - esquery@1.5.0: + /esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 + dev: true - esrecurse@4.3.0: + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true - estraverse@5.3.0: {} + /event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + dev: true - esutils@2.0.3: {} + /events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + dev: true - extend@3.0.2: {} + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dev: true - external-editor@3.1.0: + /external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 + dev: true - extract-files@11.0.0: {} + /extract-files@11.0.0: + resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} + engines: {node: ^12.20 || >= 14.13} + dev: true - extsprintf@1.3.0: {} + /extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + dev: true - fast-decode-uri-component@1.0.1: {} + /fast-decode-uri-component@1.0.1: + resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} + dev: true - fast-deep-equal@3.1.3: {} + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true - fast-glob@3.3.1: + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.5 + micromatch: 4.0.8 - fast-json-stable-stringify@2.1.0: {} + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true - fast-levenshtein@2.0.6: {} + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true - fast-querystring@1.1.2: + /fast-querystring@1.1.2: + resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} dependencies: fast-decode-uri-component: 1.0.1 + dev: true - fast-url-parser@1.1.3: - dependencies: - punycode: 1.4.1 - - fastq@1.15.0: + /fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} dependencies: reusify: 1.0.4 - fb-watchman@2.0.2: + /fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 - fbjs-css-vars@1.0.2: {} + /fbjs-css-vars@1.0.2: + resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} - fbjs@3.0.5: + /fbjs@3.0.5: + resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} dependencies: cross-fetch: 3.1.8 fbjs-css-vars: 1.0.2 @@ -4420,74 +2717,120 @@ snapshots: object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.35 + ua-parser-js: 1.0.39 transitivePeerDependencies: - encoding - fecha@4.2.3: {} + /fecha@4.2.3: + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + dev: true - figures@3.2.0: + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 + dev: true - file-entry-cache@6.0.1: + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flat-cache: 3.1.0 + flat-cache: 3.2.0 + dev: true - fill-range@7.0.1: + /fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 - find-up@4.1.0: + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - find-up@5.0.0: + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 + dev: true - flat-cache@3.1.0: + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flatted: 3.2.7 - keyv: 4.5.3 + flatted: 3.3.1 + keyv: 4.5.4 rimraf: 3.0.2 + dev: true - flatted@3.2.7: {} + /flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + dev: true - forever-agent@0.6.1: {} + /forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + dev: true - form-data@2.3.3: + /form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 + dev: true - fs.realpath@1.0.0: {} + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: {} + /fs@0.0.1-security: + resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} + dev: false - fsevents@2.3.3: + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true optional: true - gensync@1.0.0-beta.2: {} + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} - get-caller-file@2.0.5: {} + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} - getpass@0.1.7: + /getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: assert-plus: 1.0.0 + dev: true - glob-parent@5.1.2: + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 - glob-parent@6.0.2: + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 + dev: true - glob@7.1.3: + /glob@7.1.3: + resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -4495,8 +2838,11 @@ snapshots: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 + dev: true - glob@7.2.3: + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -4505,29 +2851,44 @@ snapshots: once: 1.4.0 path-is-absolute: 1.0.1 - globals@11.12.0: {} + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} - globals@13.21.0: + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.20.2 + dev: true - globby@11.1.0: + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.1 - ignore: 5.2.4 + fast-glob: 3.3.2 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 - graphemer@1.4.0: {} + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true - graphql-2-json-schema@0.10.0: + /graphql-2-json-schema@0.10.0: + resolution: {integrity: sha512-rpV74HE2ZLC2J+aWJqF+6+yfhu2KRmT1bPXI972dLymAdM1CWGbo835sk3ledBnVf77JIsMIRnrc9HvOSda67g==} + engines: {node: '>=8'} dependencies: json5: 2.2.3 lodash: 4.17.21 + dev: false - graphql-codegen-core@0.18.2(graphql@14.7.0): + /graphql-codegen-core@0.18.2(graphql@14.7.0): + resolution: {integrity: sha512-fjfIUrDx0KDdr/jYjUs51+07DvcEc5w9tdid/bNezNzT2iJLtmnnmYLR62an3/PKUnKSOAIKLYxFIBOzsFJH9A==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 dependencies: chalk: 2.4.2 change-case: 3.1.0 @@ -4540,16 +2901,20 @@ snapshots: winston: 3.2.1 transitivePeerDependencies: - supports-color + dev: true - graphql-codegen-plugin-helpers@0.18.2(graphql@14.7.0): + /graphql-codegen-plugin-helpers@0.18.2(graphql@14.7.0): + resolution: {integrity: sha512-WZahfp95RdePwwPWxnxAHgfkXXEQXNrgX9sGrB//uGfj8lygcf7m/rNZQ4iooUzoqBEkTtJpi7bezWCieNcq2A==} dependencies: graphql-codegen-core: 0.18.2(graphql@14.7.0) import-from: 2.1.0 transitivePeerDependencies: - graphql - supports-color + dev: true - graphql-codegen-typescript-common@0.18.2(graphql@14.7.0): + /graphql-codegen-typescript-common@0.18.2(graphql@14.7.0): + resolution: {integrity: sha512-uGGHd/vgwMlnCNOMQkvMxW8Xz0fqPGjPHROsniRNP1ragsa6KfFBrGu9toHgxv8m3MzC6ZPeoUa3wtwtS9oVnA==} dependencies: change-case: 3.1.0 common-tags: 1.8.0 @@ -4558,61 +2923,96 @@ snapshots: transitivePeerDependencies: - graphql - supports-color + dev: true - graphql-config@5.0.2(@types/node@20.6.0)(graphql@14.7.0): + /graphql-config@5.1.3(@types/node@20.17.5)(graphql@14.7.0)(typescript@5.6.3): + resolution: {integrity: sha512-RBhejsPjrNSuwtckRlilWzLVt2j8itl74W9Gke1KejDTz7oaA5kVd6wRn9zK9TS5mcmIYGxf7zN7a1ORMdxp1Q==} + engines: {node: '>= 16.0.0'} + peerDependencies: + cosmiconfig-toml-loader: ^1.0.0 + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + cosmiconfig-toml-loader: + optional: true dependencies: - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@14.7.0) - '@graphql-tools/json-file-loader': 8.0.0(graphql@14.7.0) - '@graphql-tools/load': 8.0.2(graphql@14.7.0) - '@graphql-tools/merge': 9.0.6(graphql@14.7.0) - '@graphql-tools/url-loader': 8.0.0(@types/node@20.6.0)(graphql@14.7.0) - '@graphql-tools/utils': 10.5.4(graphql@14.7.0) - cosmiconfig: 8.2.0 + '@graphql-tools/graphql-file-loader': 8.0.2(graphql@14.7.0) + '@graphql-tools/json-file-loader': 8.0.2(graphql@14.7.0) + '@graphql-tools/load': 8.0.3(graphql@14.7.0) + '@graphql-tools/merge': 9.0.8(graphql@14.7.0) + '@graphql-tools/url-loader': 8.0.12(@types/node@20.17.5)(graphql@14.7.0) + '@graphql-tools/utils': 10.5.5(graphql@14.7.0) + cosmiconfig: 8.3.6(typescript@5.6.3) graphql: 14.7.0 - jiti: 1.19.3 - minimatch: 4.2.3 + jiti: 2.3.3 + minimatch: 9.0.5 string-env-interpolation: 1.0.1 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - '@types/node' - bufferutil - encoding + - typescript - utf-8-validate + dev: true - graphql-import@0.7.1(graphql@14.7.0): + /graphql-import@0.7.1(graphql@14.7.0): + resolution: {integrity: sha512-YpwpaPjRUVlw2SN3OPljpWbVRWAhMAyfSba5U47qGMOSsPLi2gYeJtngGpymjm9nk57RFWEpjqwh4+dpYuFAPw==} + engines: {node: '>=4.0.0'} + deprecated: GraphQL Import has been deprecated and merged into GraphQL Tools, so it will no longer get updates. Use GraphQL Tools instead to stay up-to-date! Check out https://www.graphql-tools.com/docs/migration-from-import for migration and https://the-guild.dev/blog/graphql-tools-v6 for new changes. + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 dependencies: graphql: 14.7.0 - lodash: 4.17.21 + lodash: 4.17.11 resolve-from: 4.0.0 + dev: true - graphql-request@6.1.0(graphql@14.7.0): + /graphql-request@6.1.0(graphql@14.7.0): + resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} + peerDependencies: + graphql: 14 - 16 dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@14.7.0) cross-fetch: 3.1.8 graphql: 14.7.0 transitivePeerDependencies: - encoding + dev: true - graphql-tag-pluck@0.6.0: + /graphql-tag-pluck@0.6.0: + resolution: {integrity: sha512-C1SRw5zZtl7CN7mv6Q0abFVSJwG8M+FniFCPqWD+AjQMj9igNPthraMUQ02KSo+j19khR60mksqmFN3BwboFaw==} dependencies: - '@babel/parser': 7.22.14 - '@babel/traverse': 7.23.2 - '@babel/types': 7.22.11 + '@babel/parser': 7.26.2 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 source-map-support: 0.5.21 typescript: 3.9.10 transitivePeerDependencies: - supports-color + dev: true - graphql-tag@2.10.1(graphql@14.7.0): + /graphql-tag@2.10.1(graphql@14.7.0): + resolution: {integrity: sha512-jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==} + peerDependencies: + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 dependencies: graphql: 14.7.0 + dev: true - graphql-tag@2.12.6(graphql@14.7.0): + /graphql-tag@2.12.6(graphql@14.7.0): + resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} + engines: {node: '>=10'} + peerDependencies: + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 14.7.0 - tslib: 2.6.2 + tslib: 2.6.3 - graphql-toolkit@0.2.0(graphql@14.7.0): + /graphql-toolkit@0.2.0(graphql@14.7.0): + resolution: {integrity: sha512-dMwb+V2u6vwJF70tWuqSxgNal9fK1xcB8JtmCJUStVUh+PjfNrlKH1X5e17vJlN+lRPz1hatr8jH+Q6lTW0jLw==} + deprecated: Use @graphql-toolkit/* monorepo packages instead. Check https://github.com/ardatan/graphql-toolkit for more details + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 dependencies: aggregate-error: 2.1.0 deepmerge: 3.2.0 @@ -4628,8 +3028,17 @@ snapshots: valid-url: 1.0.9 transitivePeerDependencies: - supports-color + dev: true - graphql-tools@4.0.4(graphql@14.7.0): + /graphql-tools@4.0.4(graphql@14.7.0): + resolution: {integrity: sha512-chF12etTIGVVGy3fCTJ1ivJX2KB7OSG4c6UOJQuqOHCmBQwTyNgCDuejZKvpYxNZiEx7bwIjrodDgDe9RIkjlw==} + deprecated: |- + This package has been deprecated and now it only exports makeExecutableSchema. + And it will no longer receive updates. + We recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc. + Check out https://www.graphql-tools.com to learn what package you should use instead + peerDependencies: + graphql: ^0.13.0 || ^14.0.0 dependencies: apollo-link: 1.2.14(graphql@14.7.0) apollo-utilities: 1.3.4(graphql@14.7.0) @@ -4637,93 +3046,157 @@ snapshots: graphql: 14.7.0 iterall: 1.3.0 uuid: 3.4.0 + dev: true - graphql-ws@5.14.0(graphql@14.7.0): + /graphql-ws@5.16.0(graphql@14.7.0): + resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==} + engines: {node: '>=10'} + peerDependencies: + graphql: '>=0.11 <=16' dependencies: graphql: 14.7.0 + dev: true - graphql@14.7.0: + /graphql@14.7.0: + resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==} + engines: {node: '>= 6.x'} dependencies: iterall: 1.3.0 - har-schema@2.0.0: {} + /har-schema@2.0.0: + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} + dev: true - har-validator@5.1.5: + /har-validator@5.1.5: + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} + deprecated: this library is no longer supported dependencies: ajv: 6.12.6 har-schema: 2.0.0 + dev: true - has-flag@3.0.0: {} + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} - has-flag@4.0.0: {} + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} - header-case@1.0.1: + /header-case@1.0.1: + resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} dependencies: no-case: 2.3.2 upper-case: 1.1.3 + dev: true - header-case@2.0.4: + /header-case@2.0.4: + resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} dependencies: capital-case: 1.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - http-proxy-agent@7.0.0: + /http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} dependencies: - agent-base: 7.1.0 - debug: 4.3.4 + agent-base: 7.1.1 + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color + dev: true - http-signature@1.2.0: + /http-signature@1.2.0: + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} dependencies: assert-plus: 1.0.0 jsprim: 1.4.2 - sshpk: 1.17.0 + sshpk: 1.18.0 + dev: true - https-proxy-agent@7.0.1: + /https-proxy-agent@7.0.5: + resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} + engines: {node: '>= 14'} dependencies: - agent-base: 7.1.0 - debug: 4.3.4 + agent-base: 7.1.1 + debug: 4.3.7(supports-color@5.5.0) transitivePeerDependencies: - supports-color + dev: true - iconv-lite@0.4.24: + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 + dev: true - ieee754@1.2.1: {} + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true - ignore-by-default@1.0.1: {} + /ignore-by-default@1.0.1: + resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} + dev: true - ignore@5.2.4: {} + /ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} - immutable@3.7.6: {} + /immutable@3.7.6: + resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} + engines: {node: '>=0.8.0'} - import-fresh@3.3.0: + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 + dev: true - import-from@2.1.0: + /import-from@2.1.0: + resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} + engines: {node: '>=4'} dependencies: resolve-from: 3.0.0 + dev: true - import-from@4.0.0: {} + /import-from@4.0.0: + resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} + engines: {node: '>=12.2'} - imurmurhash@0.1.4: {} + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true - indent-string@3.2.0: {} + /indent-string@3.2.0: + resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} + engines: {node: '>=4'} + dev: true - indent-string@4.0.0: {} + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true - inflight@1.0.6: + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. dependencies: once: 1.4.0 wrappy: 1.0.2 - inherits@2.0.4: {} + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - inquirer@8.2.6: + /inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -4740,490 +3213,795 @@ snapshots: strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 + dev: true - invariant@2.2.4: + /invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 - is-absolute@1.0.0: + /is-absolute@1.0.0: + resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} + engines: {node: '>=0.10.0'} dependencies: is-relative: 1.0.0 is-windows: 1.0.2 - is-arrayish@0.2.1: {} + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true - is-arrayish@0.3.2: {} + /is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + dev: true - is-binary-path@2.1.0: + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} dependencies: - binary-extensions: 2.2.0 + binary-extensions: 2.3.0 + dev: true - is-extglob@1.0.0: {} + /is-extglob@1.0.0: + resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} + engines: {node: '>=0.10.0'} + dev: true - is-extglob@2.1.1: {} + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} - is-fullwidth-code-point@3.0.0: {} + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} - is-glob@2.0.1: + /is-glob@2.0.1: + resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 1.0.0 + dev: true - is-glob@4.0.0: + /is-glob@4.0.0: + resolution: {integrity: sha512-IEg9HSCKitWUYBRkCSztkm2Lenav8e04mlxHjiMRg2w9Bx82TFIDEDamwfn0RgwFgLNLSkZd0YJT2ColdN8KCw==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 + dev: true - is-glob@4.0.3: + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 - is-interactive@1.0.0: {} + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true - is-invalid-path@0.1.0: + /is-invalid-path@0.1.0: + resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==} + engines: {node: '>=0.10.0'} dependencies: is-glob: 2.0.1 + dev: true - is-lower-case@1.1.3: + /is-lower-case@1.1.3: + resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} dependencies: lower-case: 1.1.4 + dev: true - is-lower-case@2.0.2: + /is-lower-case@2.0.2: + resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - is-number@7.0.0: {} + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} - is-path-inside@3.0.3: {} + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true - is-relative@1.0.0: + /is-relative@1.0.0: + resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} + engines: {node: '>=0.10.0'} dependencies: is-unc-path: 1.0.0 - is-stream@1.1.0: {} + /is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + dev: true - is-typedarray@1.0.0: {} + /is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + dev: true - is-unc-path@1.0.0: + /is-unc-path@1.0.0: + resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} + engines: {node: '>=0.10.0'} dependencies: unc-path-regex: 0.1.2 - is-unicode-supported@0.1.0: {} + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true - is-upper-case@1.1.2: + /is-upper-case@1.1.2: + resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} dependencies: upper-case: 1.1.3 + dev: true - is-upper-case@2.0.2: + /is-upper-case@2.0.2: + resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - is-valid-path@0.1.1: + /is-valid-path@0.1.1: + resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==} + engines: {node: '>=0.10.0'} dependencies: is-invalid-path: 0.1.0 + dev: true - is-windows@1.0.2: {} + /is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} - isexe@2.0.0: {} + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true - isomorphic-ws@5.0.0(ws@8.13.0): + /isomorphic-ws@5.0.0(ws@8.18.0): + resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + peerDependencies: + ws: '*' dependencies: - ws: 8.13.0 + ws: 8.18.0 + dev: true - isstream@0.1.2: {} + /isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true + + /iterall@1.3.0: + resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} - iterall@1.3.0: {} + /jiti@1.21.6: + resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} + hasBin: true + dev: true - jiti@1.19.3: {} + /jiti@2.3.3: + resolution: {integrity: sha512-EX4oNDwcXSivPrw2qKH2LB5PoFxEvgtv2JgwW0bU858HoLQ+kutSvjLMUqBd0PeJYEinLWhoI9Ol0eYMqj/wNQ==} + hasBin: true + dev: true - jose@4.15.5: {} + /jose@5.9.6: + resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==} + dev: true - js-tokens@4.0.0: {} + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@4.1.0: + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true dependencies: argparse: 2.0.1 + dev: true - jsbn@0.1.1: {} - - jsesc@2.5.2: {} + /jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true - json-buffer@3.0.1: {} + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true - json-parse-even-better-errors@2.3.1: {} + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true - json-schema-traverse@0.4.1: {} + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true - json-schema@0.4.0: {} + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true - json-stable-stringify-without-jsonify@1.0.1: {} + /json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true - json-stable-stringify@1.0.2: - dependencies: - jsonify: 0.0.1 + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true - json-stringify-safe@5.0.1: {} + /json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true - json-to-pretty-yaml@1.2.2: + /json-to-pretty-yaml@1.2.2: + resolution: {integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==} + engines: {node: '>= 0.2.0'} dependencies: remedial: 1.0.8 remove-trailing-spaces: 1.0.8 + dev: true - json5@2.2.3: {} - - jsonify@0.0.1: {} + /json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true - jsprim@1.4.2: + /jsprim@1.4.2: + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 + dev: true - keyv@4.5.3: + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 + dev: true - kuler@1.0.1: + /kuler@1.0.1: + resolution: {integrity: sha512-J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ==} dependencies: colornames: 1.1.1 + dev: true - levn@0.4.1: + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 + dev: true - lines-and-columns@1.2.4: {} + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true - listr2@4.0.5: + /listr2@4.0.5: + resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} + engines: {node: '>=12'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 log-update: 4.0.0 p-map: 4.0.0 - rfdc: 1.3.0 + rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 + dev: true - locate-path@5.0.0: + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} dependencies: p-locate: 4.1.0 - locate-path@6.0.0: + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 + dev: true - lodash.merge@4.6.2: {} + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true - lodash.sortby@4.7.0: {} + /lodash.sortby@4.7.0: + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + dev: true - lodash@4.17.11: {} + /lodash@4.17.11: + resolution: {integrity: sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==} + dev: true - lodash@4.17.21: {} + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - log-symbols@4.1.0: + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 + dev: true - log-update@4.0.0: + /log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 + dev: true - logform@2.5.1: + /logform@2.6.1: + resolution: {integrity: sha512-CdaO738xRapbKIMVn2m4F6KTj4j7ooJ8POVnebSgKo3KBz5axNXRAL7ZdRjIV6NOr2Uf4vjtRkxrFETOioCqSA==} + engines: {node: '>= 12.0.0'} dependencies: - '@colors/colors': 1.5.0 - '@types/triple-beam': 1.3.2 + '@colors/colors': 1.6.0 + '@types/triple-beam': 1.3.5 fecha: 4.2.3 ms: 2.1.3 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 triple-beam: 1.4.1 + dev: true - loose-envify@1.4.0: + /loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true dependencies: js-tokens: 4.0.0 - lower-case-first@1.0.2: + /lower-case-first@1.0.2: + resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} dependencies: lower-case: 1.1.4 + dev: true - lower-case-first@2.0.2: + /lower-case-first@2.0.2: + resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - lower-case@1.1.4: {} + /lower-case@1.1.4: + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + dev: true - lower-case@2.0.2: + /lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - lru-cache@5.1.1: + /lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - - map-cache@0.2.2: {} + /map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} - merge2@1.4.1: {} + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} - meros@1.3.0(@types/node@20.6.0): + /meros@1.3.0(@types/node@20.17.5): + resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} + engines: {node: '>=13'} + peerDependencies: + '@types/node': '>=13' + peerDependenciesMeta: + '@types/node': + optional: true dependencies: - '@types/node': 20.6.0 + '@types/node': 20.17.5 + dev: true - micromatch@4.0.5: + /micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} dependencies: - braces: 3.0.2 + braces: 3.0.3 picomatch: 2.3.1 - mime-db@1.52.0: {} + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true - mime-types@2.1.35: + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 + dev: true - mimic-fn@2.1.0: {} + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true - minimatch@3.1.2: + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 - minimatch@4.2.3: + /minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: - brace-expansion: 1.1.11 - - ms@2.1.2: {} + brace-expansion: 2.0.1 + dev: true - ms@2.1.3: {} + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - mute-stream@0.0.8: {} + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true - natural-compare@1.4.0: {} + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true - no-case@2.3.2: + /no-case@2.3.2: + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} dependencies: lower-case: 1.1.4 + dev: true - no-case@3.0.4: + /no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.5.3 + tslib: 2.6.3 - node-fetch@2.7.0: + /node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true dependencies: whatwg-url: 5.0.0 - node-int64@0.4.0: {} + /node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.13: {} + /node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} - nodemon@3.0.1: + /nodemon@3.1.7: + resolution: {integrity: sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==} + engines: {node: '>=10'} + hasBin: true dependencies: - chokidar: 3.5.3 - debug: 3.2.7(supports-color@5.5.0) + chokidar: 3.6.0 + debug: 4.3.7(supports-color@5.5.0) ignore-by-default: 1.0.1 minimatch: 3.1.2 pstree.remy: 1.1.8 - semver: 7.5.4 + semver: 7.6.3 simple-update-notifier: 2.0.0 supports-color: 5.5.0 - touch: 3.1.0 + touch: 3.1.1 undefsafe: 2.0.5 + dev: true - nopt@1.0.10: - dependencies: - abbrev: 1.1.1 - - normalize-path@2.1.1: + /normalize-path@2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 - normalize-path@3.0.0: {} + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true - nullthrows@1.1.1: {} + /nullthrows@1.1.1: + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - oauth-sign@0.9.0: {} + /oauth-sign@0.9.0: + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + dev: true - object-assign@4.1.1: {} + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} - once@1.4.0: + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - one-time@0.0.4: {} + /one-time@0.0.4: + resolution: {integrity: sha512-qAMrwuk2xLEutlASoiPiAMW3EN3K96Ka/ilSXYr6qR1zSVXw2j7+yDSqGTC4T9apfLYxM3tLLjKvgPdAUK7kYQ==} + dev: true - onetime@5.1.2: + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 + dev: true - optionator@0.9.3: + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 + dev: true - ora@5.4.1: + /ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} dependencies: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.9.0 + cli-spinners: 2.9.2 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true - os-tmpdir@1.0.2: {} + /os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true - p-limit@2.3.0: + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 - p-limit@3.1.0: + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 - p-locate@4.1.0: + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} dependencies: p-limit: 2.3.0 - p-locate@5.0.0: + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 + dev: true - p-map@4.0.0: + /p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 + dev: true - p-try@2.2.0: {} + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} - param-case@2.1.1: + /param-case@2.1.1: + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} dependencies: no-case: 2.3.2 + dev: true - param-case@3.0.4: + /param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - parent-module@1.0.1: + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 + dev: true - parse-filepath@1.0.2: + /parse-filepath@1.0.2: + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} + engines: {node: '>=0.8'} dependencies: is-absolute: 1.0.0 map-cache: 0.2.2 path-root: 0.1.1 - parse-json@5.2.0: + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.22.13 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 + dev: true - pascal-case@2.0.1: + /pascal-case@2.0.1: + resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} dependencies: camel-case: 3.0.0 upper-case-first: 1.1.2 + dev: true - pascal-case@3.1.2: + /pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - path-case@2.1.1: + /path-case@2.1.1: + resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} dependencies: no-case: 2.3.2 + dev: true - path-case@3.0.4: + /path-case@3.0.4: + resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} dependencies: dot-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - path-exists@4.0.0: {} + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} - path-is-absolute@1.0.1: {} + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} - path-key@3.1.1: {} + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true - path-root-regex@0.1.2: {} + /path-root-regex@0.1.2: + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} - path-root@0.1.1: + /path-root@0.1.1: + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} dependencies: path-root-regex: 0.1.2 - path-type@4.0.0: {} + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + /performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + dev: true - performance-now@2.1.0: {} + /picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} - picocolors@1.0.0: {} + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} - picomatch@2.3.1: {} + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true - prelude-ls@1.2.1: {} + /process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + dev: true - promise@7.3.1: + /promise@7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} dependencies: asap: 2.0.6 - psl@1.9.0: {} - - pstree.remy@1.1.8: {} - - punycode@1.4.1: {} + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true - punycode@2.3.0: {} + /pstree.remy@1.1.8: + resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} + dev: true - pvtsutils@1.3.5: - dependencies: - tslib: 2.6.2 + /punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + dev: true - pvutils@1.1.3: {} + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + dev: true - qs@6.5.3: {} + /qs@6.5.3: + resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} + engines: {node: '>=0.6'} + dev: true - queue-microtask@1.2.3: {} + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - readable-stream@3.6.2: + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 + dev: true + + /readable-stream@4.5.2: + resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + abort-controller: 3.0.0 + buffer: 6.0.3 + events: 3.3.0 + process: 0.11.10 + string_decoder: 1.3.0 + dev: true - readdirp@3.6.0: + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 + dev: true - regenerator-runtime@0.14.0: {} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - relay-runtime@12.0.0: + /relay-runtime@12.0.0: + resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: - '@babel/runtime': 7.22.11 + '@babel/runtime': 7.26.0 fbjs: 3.0.5 invariant: 2.2.4 transitivePeerDependencies: - encoding - remedial@1.0.8: {} + /remedial@1.0.8: + resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==} + dev: true - remove-trailing-separator@1.1.0: {} + /remove-trailing-separator@1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - remove-trailing-spaces@1.0.8: {} + /remove-trailing-spaces@1.0.8: + resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==} + dev: true - request@2.88.0: + /request@2.88.0: + resolution: {integrity: sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==} + engines: {node: '>= 4'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 dependencies: aws-sign2: 0.7.0 - aws4: 1.12.0 + aws4: 1.13.2 caseless: 0.12.0 combined-stream: 1.0.8 extend: 3.0.2 @@ -5242,124 +4020,207 @@ snapshots: tough-cookie: 2.4.3 tunnel-agent: 0.6.0 uuid: 3.4.0 + dev: true - require-directory@2.1.1: {} + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} - require-main-filename@2.0.0: {} + /require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - resolve-from@3.0.0: {} + /resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + dev: true - resolve-from@4.0.0: {} + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true - resolve-from@5.0.0: {} + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} - restore-cursor@3.1.0: + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 + dev: true - reusify@1.0.4: {} + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rfdc@1.3.0: {} + /rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + dev: true - rimraf@3.0.2: + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true dependencies: glob: 7.2.3 + dev: true - run-async@2.4.1: {} + /run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true - run-parallel@1.2.0: + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 - rxjs@7.8.1: + /rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.2 + tslib: 2.8.1 + dev: true - safe-buffer@5.2.1: {} + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true - safe-stable-stringify@2.4.3: {} + /safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + dev: true - safer-buffer@2.1.2: {} + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true - scuid@1.1.0: {} + /scuid@1.1.0: + resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==} + dev: true - semver@6.3.1: {} + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 + /semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + dev: true - sentence-case@2.1.1: + /sentence-case@2.1.1: + resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} dependencies: no-case: 2.3.2 upper-case-first: 1.1.2 + dev: true - sentence-case@3.0.4: + /sentence-case@3.0.4: + resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} dependencies: no-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 upper-case-first: 2.0.2 - set-blocking@2.0.0: {} + /set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - setimmediate@1.0.5: {} + /setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - shebang-command@2.0.0: + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 + dev: true - shebang-regex@3.0.0: {} + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true - shell-quote@1.8.1: {} + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true - signal-exit@3.0.7: {} + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true - signedsource@1.0.0: {} + /signedsource@1.0.0: + resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} - simple-swizzle@0.2.2: + /simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} dependencies: is-arrayish: 0.3.2 + dev: true - simple-update-notifier@2.0.0: + /simple-update-notifier@2.0.0: + resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} + engines: {node: '>=10'} dependencies: - semver: 7.5.4 + semver: 7.6.3 + dev: true - slash@3.0.0: {} + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} - slice-ansi@3.0.0: + /slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 + dev: true - slice-ansi@4.0.0: + /slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 + dev: true - snake-case@2.1.0: + /snake-case@2.1.0: + resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} dependencies: no-case: 2.3.2 + dev: true - snake-case@3.0.4: + /snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} dependencies: dot-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.3 - source-map-support@0.5.21: + /source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + dev: true - source-map@0.6.1: {} + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: true - sponge-case@1.0.1: + /sponge-case@1.0.1: + resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - sshpk@1.17.0: + /sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -5370,251 +4231,405 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 + dev: true - stack-trace@0.0.10: {} + /stack-trace@0.0.10: + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + dev: true - streamsearch@1.1.0: {} + /streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + dev: true - string-env-interpolation@1.0.1: {} + /string-env-interpolation@1.0.1: + resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} + dev: true - string-width@4.2.3: + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string_decoder@1.3.0: + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 + dev: true - strip-ansi@6.0.1: + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 - strip-json-comments@3.1.1: {} + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true - supports-color@5.5.0: + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - supports-color@7.2.0: + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 - swap-case@1.1.2: + /swap-case@1.1.2: + resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} dependencies: lower-case: 1.1.4 upper-case: 1.1.3 + dev: true - swap-case@2.0.2: + /swap-case@2.0.2: + resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - text-hex@1.0.0: {} + /text-hex@1.0.0: + resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} + dev: true - text-table@0.2.0: {} + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true - through@2.3.8: {} + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true - title-case@2.1.1: + /title-case@2.1.1: + resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} dependencies: no-case: 2.3.2 upper-case: 1.1.3 + dev: true - title-case@3.0.3: + /title-case@3.0.3: + resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - tmp@0.0.33: + /tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 + dev: true - to-fast-properties@2.0.0: {} - - to-regex-range@5.0.1: + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - touch@3.1.0: - dependencies: - nopt: 1.0.10 + /touch@3.1.1: + resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==} + hasBin: true + dev: true - tough-cookie@2.4.3: + /tough-cookie@2.4.3: + resolution: {integrity: sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==} + engines: {node: '>=0.8'} dependencies: psl: 1.9.0 punycode: 1.4.1 + dev: true - tr46@0.0.3: {} + /tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - triple-beam@1.4.1: {} + /triple-beam@1.4.1: + resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} + engines: {node: '>= 14.0.0'} + dev: true - ts-invariant@0.4.4: + /ts-invariant@0.4.4: + resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==} dependencies: tslib: 1.14.1 + dev: true - ts-log@2.1.4: {} + /ts-log@2.1.4: + resolution: {integrity: sha512-P1EJSoyV+N3bR/IWFeAqXzKPZwHpnLY6j7j58mAvewHRipo+BQM2Y1f9Y9BjEQznKwgqqZm7H8iuixmssU7tYQ==} + dev: true - ts-log@2.2.5: {} + /ts-log@2.2.7: + resolution: {integrity: sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg==} + dev: true - tslib@1.14.1: {} + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true - tslib@2.4.1: {} + /tslib@2.4.1: + resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - tslib@2.5.3: {} + /tslib@2.6.3: + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tslib@2.6.2: {} + /tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - tunnel-agent@0.6.0: + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 + dev: true - tweetnacl@0.14.5: {} + /tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true - type-check@0.4.0: + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true - type-fest@0.20.2: {} + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: true - type-fest@0.21.3: {} + /typescript@3.9.10: + resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true - typescript@3.9.10: {} + /typescript@5.6.3: + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + engines: {node: '>=14.17'} + hasBin: true - typescript@5.2.2: {} + /ua-parser-js@1.0.39: + resolution: {integrity: sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==} + hasBin: true - ua-parser-js@1.0.35: {} + /unc-path-regex@0.1.2: + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} - unc-path-regex@0.1.2: {} + /undefsafe@2.0.5: + resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} + dev: true - undefsafe@2.0.5: {} + /undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - unixify@1.0.0: + /unixify@1.0.0: + resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} + engines: {node: '>=0.10.0'} dependencies: normalize-path: 2.1.1 - update-browserslist-db@1.0.11(browserslist@4.21.10): + /update-browserslist-db@1.1.1(browserslist@4.24.2): + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 - escalade: 3.1.1 - picocolors: 1.0.0 + browserslist: 4.24.2 + escalade: 3.2.0 + picocolors: 1.1.1 - upper-case-first@1.1.2: + /upper-case-first@1.1.2: + resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} dependencies: upper-case: 1.1.3 + dev: true - upper-case-first@2.0.2: + /upper-case-first@2.0.2: + resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - upper-case@1.1.3: {} + /upper-case@1.1.3: + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + dev: true - upper-case@2.0.2: + /upper-case@2.0.2: + resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} dependencies: - tslib: 2.5.3 + tslib: 2.6.3 - uri-js@4.4.1: + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: - punycode: 2.3.0 - - urlpattern-polyfill@8.0.2: {} + punycode: 2.3.1 + dev: true - urlpattern-polyfill@9.0.0: {} + /urlpattern-polyfill@10.0.0: + resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==} + dev: true - util-deprecate@1.0.2: {} + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true - uuid@3.4.0: {} + /uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + dev: true - valid-url@1.0.9: {} + /valid-url@1.0.9: + resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} + dev: true - value-or-promise@1.0.12: {} + /value-or-promise@1.0.12: + resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} + engines: {node: '>=12'} - verror@1.10.0: + /verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 + dev: true - wcwidth@1.0.1: + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.4 + dev: true - web-streams-polyfill@3.2.1: {} - - webcrypto-core@1.7.7: - dependencies: - '@peculiar/asn1-schema': 2.3.6 - '@peculiar/json-schema': 1.1.12 - asn1js: 3.0.5 - pvtsutils: 1.3.5 - tslib: 2.6.2 - - webidl-conversions@3.0.1: {} + /webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - whatwg-url@5.0.0: + /whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - which-module@2.0.1: {} + /which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - which@2.0.2: + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true dependencies: isexe: 2.0.0 + dev: true - winston-transport@4.5.0: + /winston-transport@4.8.0: + resolution: {integrity: sha512-qxSTKswC6llEMZKgCQdaWgDuMJQnhuvF5f2Nk3SNXc4byfQ+voo2mX1Px9dkNOuR8p0KAjfPG29PuYUSIb+vSA==} + engines: {node: '>= 12.0.0'} dependencies: - logform: 2.5.1 - readable-stream: 3.6.2 + logform: 2.6.1 + readable-stream: 4.5.2 triple-beam: 1.4.1 + dev: true - winston@3.2.1: + /winston@3.2.1: + resolution: {integrity: sha512-zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw==} + engines: {node: '>= 6.4.0'} dependencies: async: 2.6.4 diagnostics: 1.1.1 is-stream: 1.1.0 - logform: 2.5.1 + logform: 2.6.1 one-time: 0.0.4 readable-stream: 3.6.2 stack-trace: 0.0.10 triple-beam: 1.4.1 - winston-transport: 4.5.0 + winston-transport: 4.8.0 + dev: true - wrap-ansi@6.2.0: + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - wrap-ansi@7.0.0: + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 + dev: true - wrappy@1.0.2: {} - - ws@8.13.0: {} + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - y18n@4.0.3: {} + /ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true - y18n@5.0.8: {} + /y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - yallist@3.1.1: {} + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true - yallist@4.0.0: {} + /yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yaml-ast-parser@0.0.43: {} + /yaml-ast-parser@0.0.43: + resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} + dev: true - yaml@2.3.2: {} + /yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} + engines: {node: '>= 14'} + hasBin: true + dev: true - yargs-parser@18.1.3: + /yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - yargs-parser@21.1.1: {} + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true - yargs@15.4.1: + /yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -5628,21 +4643,30 @@ snapshots: y18n: 4.0.3 yargs-parser: 18.1.3 - yargs@17.7.2: + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} dependencies: cliui: 8.0.1 - escalade: 3.1.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 + dev: true - yocto-queue@0.1.0: {} + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} - zen-observable-ts@0.8.21: + /zen-observable-ts@0.8.21: + resolution: {integrity: sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==} dependencies: tslib: 1.14.1 zen-observable: 0.8.15 + dev: true - zen-observable@0.8.15: {} + /zen-observable@0.8.15: + resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} + dev: true