diff --git a/.dockerignore b/.dockerignore index 4246c49f..b7e86db9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,25 @@ node_modules dist +.git +.gitignore +README.md +Dockerfile +.dockerignore +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.nyc_output +coverage +.cache .vscode .storybook -.history \ No newline at end of file +.history +.env.local +.env.development.local +.env.test.local +.env.production.local +*.tgz +*.tar.gz +stats.html +dist.tar.gz +dist.zip \ No newline at end of file diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index d31ac349..2a6c344c 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -1,58 +1,60 @@ -name: Run tests and publish a GitHub release +name: Build and publish on: push: branches: - master + workflow_dispatch: permissions: contents: read # for checkout jobs: - test: + build-and-release: runs-on: ubuntu-latest + permissions: + contents: write # to publish a GitHub release + issues: write # to comment on released issues + pull-requests: write # to comment on released pull requests + id-token: write # to enable use of OIDC for npm provenance steps: - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/checkout@v4.1.6 with: - node-version: "lts/*" - - name: Install dependencies - run: yarn install - - name: Run tests - run: yarn run test + fetch-depth: 0 # Required for semantic-release - release: - needs: test - runs-on: ubuntu-latest - permissions: - contents: write # to be able to publish a GitHub release - issues: write # to be able to comment on released issues - pull-requests: write # to be able to comment on released pull requests - id-token: write # to enable use of OIDC for npm provenance - steps: - - name: Checkout - uses: actions/checkout@v3 + - name: Setup Bun + uses: oven-sh/setup-bun@v2 with: - fetch-depth: 0 + bun-version: 1.3.5 + - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: "lts/*" + node-version: '22.14.0' + - name: Install dependencies - run: yarn install + run: bun install --frozen-lockfile + - name: Build React app - run: yarn run build - - name: Release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: yarn run semantic-release - - name: Get next version - uses: reecetech/version-increment@2023.10.2 - id: version + run: bun run build + + - name: Set IMAGE_TAG as env + run: | + IMAGE_TAG=$(git rev-parse --short=7 ${{ github.sha }}) + echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV + + - name: Login to Docker Hub + uses: docker/login-action@v3.3.0 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + + - name: Build and push Docker image + uses: docker/build-push-action@v6.9.0 with: - scheme: semver - increment: patch \ No newline at end of file + context: . + file: ./Dockerfile + push: true + tags: | + quicklookup/synmetrix-client-v2:${{ env.IMAGE_TAG }} + quicklookup/synmetrix-client-v2:latest diff --git a/.gitignore b/.gitignore index a317835a..8a940794 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,43 @@ -.DS_Store +# Dependencies node_modules/ -.idea/ -.vscode/ -*.log -venv/ -/.history -node_modules -*.log - -# Output directory -dist +# Output / build +dist/ +dist.zip +dist.tar.gz +stats.html # @vitjs/vit temporary directory .vit -# Generated by rollup-plugin-visualizer -stats.html +# Environment +.env +.env.* +!.env.example +# Editor / IDE +.DS_Store +.idea/ +.vscode/ +/.history + +# Logs +*.log + +# Cache .eslintcache + +# Lock files (using bun.lock) package-lock.json -/dist.zip -/dist.tar.gz + +# Monaco editor vendored assets public/monaco-editor + +# Python +venv/ + +# Claude Code +.claude/ + +# Agent OS +agent-os/ diff --git a/.husky/pre-commit b/.husky/pre-commit index 146c0dfd..9a07982f 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -npx lint-staged --allow-empty +node "$(dirname "$0")/../node_modules/lint-staged/bin/lint-staged.js" --allow-empty diff --git a/.specify/memory/constitution.md b/.specify/memory/constitution.md new file mode 100644 index 00000000..6663d516 --- /dev/null +++ b/.specify/memory/constitution.md @@ -0,0 +1,180 @@ + + +# FraiOS Semantic Layer Constitution + +## Core Principles + +### I. Blueprint Alignment (FraiOS-First) + +All new features and architectural decisions MUST align with FraiOS +(`../cxs2`) target patterns where feasible. Specifically: + +- New auth work MUST use WorkOS AuthKit patterns (JWT in cookies, + session hooks via TanStack Query), not hasura-backend-plus patterns. +- New state management MUST separate server state (TanStack Query) + from client state (Zustand). Do not add new localStorage-persisted + server state to Zustand stores. +- New styling MUST use Tailwind CSS 4 utilities. Do not introduce new + LESS or WindiCSS files. +- When FraiOS alignment conflicts with shipping deadlines, document + the deviation in the feature's plan.md under "Complexity Tracking" + and create a follow-up migration task. + +**Rationale**: The project is actively migrating toward FraiOS patterns. +Every new deviation increases migration debt. + +### II. Type Safety + +All code MUST be fully typed. Specifically: + +- No `any` types unless explicitly justified with a `// eslint-disable` + comment explaining why. +- GraphQL operations MUST use generated types from `bun run codegen`. + Never hand-write GraphQL response types. +- Component props MUST have explicit TypeScript interfaces (not inline + object types) when the component is exported. + +**Rationale**: The GraphQL codegen pipeline and TypeScript strict mode +are the primary defense against contract drift between frontend and +backend. + +### III. Component Conventions + +Every component MUST follow the established structure: + +- `src/components/ComponentName/index.tsx` for implementation. +- `src/components/ComponentName/index.module.less` (or Tailwind) for + styles, using camelCase class names. +- Storybook stories (`index.stories.tsx`) MUST exist for any + reusable UI component. +- Components MUST be functional components (React FC). No class + components. + +**Rationale**: Consistent structure enables codebase navigation, +automated tooling, and onboarding. + +### IV. Testing Discipline + +- All bug fixes MUST include a regression test. +- New hooks and utility functions MUST have unit tests (Vitest). +- Integration tests are REQUIRED for: GraphQL query/mutation flows, + auth token lifecycle, and multi-step wizard flows. +- Tests MUST run and pass before any PR is merged (`bun run test`). + +**Rationale**: The codebase manages sensitive auth flows, financial +data models, and real-time subscriptions. Untested changes risk +cascading failures. + +### V. Simplicity + +- Start with the simplest solution that meets requirements. +- Do not add abstractions, utilities, or helpers for one-time + operations. Three similar lines of code is better than a premature + abstraction. +- Do not add features, configurability, or error handling beyond what + is explicitly requested. +- Prefer editing existing files over creating new ones. + +**Rationale**: Over-engineering is the primary source of unnecessary +complexity in frontend codebases. YAGNI applies. + +## Technology Constraints + +The following technology choices are non-negotiable for the current +codebase and MUST NOT be changed without a constitution amendment: + +| Layer | Current | Target (FraiOS) | +|---|---|---| +| Framework | React 18 + Vite 4 | Next.js 16 App Router | +| UI Library | Ant Design 5 | Ant Design 5 (retained) | +| GraphQL Client | URQL | Convex + TanStack Query 5 | +| State | Zustand 4 | Zustand 5 + TanStack Query | +| Styling | LESS + CSS Modules + WindiCSS | Tailwind CSS 4 | +| Auth | hasura-backend-plus | WorkOS AuthKit | +| Testing | Vitest + Testing Library | Vitest + Testing Library | +| Package Manager | Bun | Bun | + +- New dependencies MUST be justified in the PR description. +- Do not introduce competing libraries for an already-covered concern + (e.g., no Axios when URQL/fetch exists, no MobX when Zustand exists). + +## Development Workflow + +### Code Quality Gates + +Every PR MUST pass these gates before merge: + +1. `bun run lint` -- zero errors (warnings acceptable if pre-existing). +2. `bun run test` -- all tests pass. +3. `bun run build` -- production build succeeds. +4. TypeScript compilation -- zero type errors. + +### GraphQL Schema Change Protocol + +When backend schema changes occur: + +1. Run `bun run loadschema` to re-introspect. +2. Update `.gql` files as needed. +3. Run `bun run codegen` to regenerate types. +4. Never commit hand-edited `src/graphql/generated.ts`. + +### Branch and Commit Conventions + +- Feature branches: `###-feature-name` (issue number prefix). +- Commit messages: conventional commits (`feat:`, `fix:`, `docs:`, + `refactor:`, `test:`, `chore:`). +- Keep commits atomic -- one logical change per commit. + +## Governance + +This constitution supersedes all ad-hoc practices. All PRs and code +reviews MUST verify compliance with the principles above. + +### Amendment Procedure + +1. Propose amendment via PR modifying this file. +2. Document rationale for the change. +3. Update version using semantic versioning: + - MAJOR: principle removal or incompatible redefinition. + - MINOR: new principle or material expansion. + - PATCH: wording clarification or typo fix. +4. Update `LAST_AMENDED_DATE` to the amendment date. +5. Run the consistency propagation checklist (review plan, spec, + and tasks templates for alignment). + +### Compliance Review + +- Every feature spec (`/speckit.specify`) MUST reference applicable + principles. +- Every implementation plan (`/speckit.plan`) MUST include a + Constitution Check gate validating alignment with these principles. +- Complexity that violates a principle MUST be justified in the plan's + Complexity Tracking table. + +**Version**: 1.0.0 | **Ratified**: 2026-03-07 | **Last Amended**: 2026-03-07 diff --git a/.specify/scripts/bash/check-prerequisites.sh b/.specify/scripts/bash/check-prerequisites.sh new file mode 100755 index 00000000..98e387c2 --- /dev/null +++ b/.specify/scripts/bash/check-prerequisites.sh @@ -0,0 +1,166 @@ +#!/usr/bin/env bash + +# Consolidated prerequisite checking script +# +# This script provides unified prerequisite checking for Spec-Driven Development workflow. +# It replaces the functionality previously spread across multiple scripts. +# +# Usage: ./check-prerequisites.sh [OPTIONS] +# +# OPTIONS: +# --json Output in JSON format +# --require-tasks Require tasks.md to exist (for implementation phase) +# --include-tasks Include tasks.md in AVAILABLE_DOCS list +# --paths-only Only output path variables (no validation) +# --help, -h Show help message +# +# OUTPUTS: +# JSON mode: {"FEATURE_DIR":"...", "AVAILABLE_DOCS":["..."]} +# Text mode: FEATURE_DIR:... \n AVAILABLE_DOCS: \n ✓/✗ file.md +# Paths only: REPO_ROOT: ... \n BRANCH: ... \n FEATURE_DIR: ... etc. + +set -e + +# Parse command line arguments +JSON_MODE=false +REQUIRE_TASKS=false +INCLUDE_TASKS=false +PATHS_ONLY=false + +for arg in "$@"; do + case "$arg" in + --json) + JSON_MODE=true + ;; + --require-tasks) + REQUIRE_TASKS=true + ;; + --include-tasks) + INCLUDE_TASKS=true + ;; + --paths-only) + PATHS_ONLY=true + ;; + --help|-h) + cat << 'EOF' +Usage: check-prerequisites.sh [OPTIONS] + +Consolidated prerequisite checking for Spec-Driven Development workflow. + +OPTIONS: + --json Output in JSON format + --require-tasks Require tasks.md to exist (for implementation phase) + --include-tasks Include tasks.md in AVAILABLE_DOCS list + --paths-only Only output path variables (no prerequisite validation) + --help, -h Show this help message + +EXAMPLES: + # Check task prerequisites (plan.md required) + ./check-prerequisites.sh --json + + # Check implementation prerequisites (plan.md + tasks.md required) + ./check-prerequisites.sh --json --require-tasks --include-tasks + + # Get feature paths only (no validation) + ./check-prerequisites.sh --paths-only + +EOF + exit 0 + ;; + *) + echo "ERROR: Unknown option '$arg'. Use --help for usage information." >&2 + exit 1 + ;; + esac +done + +# Source common functions +SCRIPT_DIR="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +source "$SCRIPT_DIR/common.sh" + +# Get feature paths and validate branch +eval $(get_feature_paths) +check_feature_branch "$CURRENT_BRANCH" "$HAS_GIT" || exit 1 + +# If paths-only mode, output paths and exit (support JSON + paths-only combined) +if $PATHS_ONLY; then + if $JSON_MODE; then + # Minimal JSON paths payload (no validation performed) + printf '{"REPO_ROOT":"%s","BRANCH":"%s","FEATURE_DIR":"%s","FEATURE_SPEC":"%s","IMPL_PLAN":"%s","TASKS":"%s"}\n' \ + "$REPO_ROOT" "$CURRENT_BRANCH" "$FEATURE_DIR" "$FEATURE_SPEC" "$IMPL_PLAN" "$TASKS" + else + echo "REPO_ROOT: $REPO_ROOT" + echo "BRANCH: $CURRENT_BRANCH" + echo "FEATURE_DIR: $FEATURE_DIR" + echo "FEATURE_SPEC: $FEATURE_SPEC" + echo "IMPL_PLAN: $IMPL_PLAN" + echo "TASKS: $TASKS" + fi + exit 0 +fi + +# Validate required directories and files +if [[ ! -d "$FEATURE_DIR" ]]; then + echo "ERROR: Feature directory not found: $FEATURE_DIR" >&2 + echo "Run /speckit.specify first to create the feature structure." >&2 + exit 1 +fi + +if [[ ! -f "$IMPL_PLAN" ]]; then + echo "ERROR: plan.md not found in $FEATURE_DIR" >&2 + echo "Run /speckit.plan first to create the implementation plan." >&2 + exit 1 +fi + +# Check for tasks.md if required +if $REQUIRE_TASKS && [[ ! -f "$TASKS" ]]; then + echo "ERROR: tasks.md not found in $FEATURE_DIR" >&2 + echo "Run /speckit.tasks first to create the task list." >&2 + exit 1 +fi + +# Build list of available documents +docs=() + +# Always check these optional docs +[[ -f "$RESEARCH" ]] && docs+=("research.md") +[[ -f "$DATA_MODEL" ]] && docs+=("data-model.md") + +# Check contracts directory (only if it exists and has files) +if [[ -d "$CONTRACTS_DIR" ]] && [[ -n "$(ls -A "$CONTRACTS_DIR" 2>/dev/null)" ]]; then + docs+=("contracts/") +fi + +[[ -f "$QUICKSTART" ]] && docs+=("quickstart.md") + +# Include tasks.md if requested and it exists +if $INCLUDE_TASKS && [[ -f "$TASKS" ]]; then + docs+=("tasks.md") +fi + +# Output results +if $JSON_MODE; then + # Build JSON array of documents + if [[ ${#docs[@]} -eq 0 ]]; then + json_docs="[]" + else + json_docs=$(printf '"%s",' "${docs[@]}") + json_docs="[${json_docs%,}]" + fi + + printf '{"FEATURE_DIR":"%s","AVAILABLE_DOCS":%s}\n' "$FEATURE_DIR" "$json_docs" +else + # Text output + echo "FEATURE_DIR:$FEATURE_DIR" + echo "AVAILABLE_DOCS:" + + # Show status of each potential document + check_file "$RESEARCH" "research.md" + check_file "$DATA_MODEL" "data-model.md" + check_dir "$CONTRACTS_DIR" "contracts/" + check_file "$QUICKSTART" "quickstart.md" + + if $INCLUDE_TASKS; then + check_file "$TASKS" "tasks.md" + fi +fi diff --git a/.specify/scripts/bash/common.sh b/.specify/scripts/bash/common.sh new file mode 100755 index 00000000..2c3165e4 --- /dev/null +++ b/.specify/scripts/bash/common.sh @@ -0,0 +1,156 @@ +#!/usr/bin/env bash +# Common functions and variables for all scripts + +# Get repository root, with fallback for non-git repositories +get_repo_root() { + if git rev-parse --show-toplevel >/dev/null 2>&1; then + git rev-parse --show-toplevel + else + # Fall back to script location for non-git repos + local script_dir="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + (cd "$script_dir/../../.." && pwd) + fi +} + +# Get current branch, with fallback for non-git repositories +get_current_branch() { + # First check if SPECIFY_FEATURE environment variable is set + if [[ -n "${SPECIFY_FEATURE:-}" ]]; then + echo "$SPECIFY_FEATURE" + return + fi + + # Then check git if available + if git rev-parse --abbrev-ref HEAD >/dev/null 2>&1; then + git rev-parse --abbrev-ref HEAD + return + fi + + # For non-git repos, try to find the latest feature directory + local repo_root=$(get_repo_root) + local specs_dir="$repo_root/specs" + + if [[ -d "$specs_dir" ]]; then + local latest_feature="" + local highest=0 + + for dir in "$specs_dir"/*; do + if [[ -d "$dir" ]]; then + local dirname=$(basename "$dir") + if [[ "$dirname" =~ ^([0-9]{3})- ]]; then + local number=${BASH_REMATCH[1]} + number=$((10#$number)) + if [[ "$number" -gt "$highest" ]]; then + highest=$number + latest_feature=$dirname + fi + fi + fi + done + + if [[ -n "$latest_feature" ]]; then + echo "$latest_feature" + return + fi + fi + + echo "main" # Final fallback +} + +# Check if we have git available +has_git() { + git rev-parse --show-toplevel >/dev/null 2>&1 +} + +check_feature_branch() { + local branch="$1" + local has_git_repo="$2" + + # For non-git repos, we can't enforce branch naming but still provide output + if [[ "$has_git_repo" != "true" ]]; then + echo "[specify] Warning: Git repository not detected; skipped branch validation" >&2 + return 0 + fi + + if [[ ! "$branch" =~ ^[0-9]{3}- ]]; then + echo "ERROR: Not on a feature branch. Current branch: $branch" >&2 + echo "Feature branches should be named like: 001-feature-name" >&2 + return 1 + fi + + return 0 +} + +get_feature_dir() { echo "$1/specs/$2"; } + +# Find feature directory by numeric prefix instead of exact branch match +# This allows multiple branches to work on the same spec (e.g., 004-fix-bug, 004-add-feature) +find_feature_dir_by_prefix() { + local repo_root="$1" + local branch_name="$2" + local specs_dir="$repo_root/specs" + + # Extract numeric prefix from branch (e.g., "004" from "004-whatever") + if [[ ! "$branch_name" =~ ^([0-9]{3})- ]]; then + # If branch doesn't have numeric prefix, fall back to exact match + echo "$specs_dir/$branch_name" + return + fi + + local prefix="${BASH_REMATCH[1]}" + + # Search for directories in specs/ that start with this prefix + local matches=() + if [[ -d "$specs_dir" ]]; then + for dir in "$specs_dir"/"$prefix"-*; do + if [[ -d "$dir" ]]; then + matches+=("$(basename "$dir")") + fi + done + fi + + # Handle results + if [[ ${#matches[@]} -eq 0 ]]; then + # No match found - return the branch name path (will fail later with clear error) + echo "$specs_dir/$branch_name" + elif [[ ${#matches[@]} -eq 1 ]]; then + # Exactly one match - perfect! + echo "$specs_dir/${matches[0]}" + else + # Multiple matches - this shouldn't happen with proper naming convention + echo "ERROR: Multiple spec directories found with prefix '$prefix': ${matches[*]}" >&2 + echo "Please ensure only one spec directory exists per numeric prefix." >&2 + echo "$specs_dir/$branch_name" # Return something to avoid breaking the script + fi +} + +get_feature_paths() { + local repo_root=$(get_repo_root) + local current_branch=$(get_current_branch) + local has_git_repo="false" + + if has_git; then + has_git_repo="true" + fi + + # Use prefix-based lookup to support multiple branches per spec + local feature_dir=$(find_feature_dir_by_prefix "$repo_root" "$current_branch") + + cat </dev/null) ]] && echo " ✓ $2" || echo " ✗ $2"; } + diff --git a/.specify/scripts/bash/create-new-feature.sh b/.specify/scripts/bash/create-new-feature.sh new file mode 100755 index 00000000..54697024 --- /dev/null +++ b/.specify/scripts/bash/create-new-feature.sh @@ -0,0 +1,313 @@ +#!/usr/bin/env bash + +set -e + +JSON_MODE=false +SHORT_NAME="" +BRANCH_NUMBER="" +ARGS=() +i=1 +while [ $i -le $# ]; do + arg="${!i}" + case "$arg" in + --json) + JSON_MODE=true + ;; + --short-name) + if [ $((i + 1)) -gt $# ]; then + echo 'Error: --short-name requires a value' >&2 + exit 1 + fi + i=$((i + 1)) + next_arg="${!i}" + # Check if the next argument is another option (starts with --) + if [[ "$next_arg" == --* ]]; then + echo 'Error: --short-name requires a value' >&2 + exit 1 + fi + SHORT_NAME="$next_arg" + ;; + --number) + if [ $((i + 1)) -gt $# ]; then + echo 'Error: --number requires a value' >&2 + exit 1 + fi + i=$((i + 1)) + next_arg="${!i}" + if [[ "$next_arg" == --* ]]; then + echo 'Error: --number requires a value' >&2 + exit 1 + fi + BRANCH_NUMBER="$next_arg" + ;; + --help|-h) + echo "Usage: $0 [--json] [--short-name ] [--number N] " + echo "" + echo "Options:" + echo " --json Output in JSON format" + echo " --short-name Provide a custom short name (2-4 words) for the branch" + echo " --number N Specify branch number manually (overrides auto-detection)" + echo " --help, -h Show this help message" + echo "" + echo "Examples:" + echo " $0 'Add user authentication system' --short-name 'user-auth'" + echo " $0 'Implement OAuth2 integration for API' --number 5" + exit 0 + ;; + *) + ARGS+=("$arg") + ;; + esac + i=$((i + 1)) +done + +FEATURE_DESCRIPTION="${ARGS[*]}" +if [ -z "$FEATURE_DESCRIPTION" ]; then + echo "Usage: $0 [--json] [--short-name ] [--number N] " >&2 + exit 1 +fi + +# Trim whitespace and validate description is not empty (e.g., user passed only whitespace) +FEATURE_DESCRIPTION=$(echo "$FEATURE_DESCRIPTION" | xargs) +if [ -z "$FEATURE_DESCRIPTION" ]; then + echo "Error: Feature description cannot be empty or contain only whitespace" >&2 + exit 1 +fi + +# Function to find the repository root by searching for existing project markers +find_repo_root() { + local dir="$1" + while [ "$dir" != "/" ]; do + if [ -d "$dir/.git" ] || [ -d "$dir/.specify" ]; then + echo "$dir" + return 0 + fi + dir="$(dirname "$dir")" + done + return 1 +} + +# Function to get highest number from specs directory +get_highest_from_specs() { + local specs_dir="$1" + local highest=0 + + if [ -d "$specs_dir" ]; then + for dir in "$specs_dir"/*; do + [ -d "$dir" ] || continue + dirname=$(basename "$dir") + number=$(echo "$dirname" | grep -o '^[0-9]\+' || echo "0") + number=$((10#$number)) + if [ "$number" -gt "$highest" ]; then + highest=$number + fi + done + fi + + echo "$highest" +} + +# Function to get highest number from git branches +get_highest_from_branches() { + local highest=0 + + # Get all branches (local and remote) + branches=$(git branch -a 2>/dev/null || echo "") + + if [ -n "$branches" ]; then + while IFS= read -r branch; do + # Clean branch name: remove leading markers and remote prefixes + clean_branch=$(echo "$branch" | sed 's/^[* ]*//; s|^remotes/[^/]*/||') + + # Extract feature number if branch matches pattern ###-* + if echo "$clean_branch" | grep -q '^[0-9]\{3\}-'; then + number=$(echo "$clean_branch" | grep -o '^[0-9]\{3\}' || echo "0") + number=$((10#$number)) + if [ "$number" -gt "$highest" ]; then + highest=$number + fi + fi + done <<< "$branches" + fi + + echo "$highest" +} + +# Function to check existing branches (local and remote) and return next available number +check_existing_branches() { + local specs_dir="$1" + + # Fetch all remotes to get latest branch info (suppress errors if no remotes) + git fetch --all --prune 2>/dev/null || true + + # Get highest number from ALL branches (not just matching short name) + local highest_branch=$(get_highest_from_branches) + + # Get highest number from ALL specs (not just matching short name) + local highest_spec=$(get_highest_from_specs "$specs_dir") + + # Take the maximum of both + local max_num=$highest_branch + if [ "$highest_spec" -gt "$max_num" ]; then + max_num=$highest_spec + fi + + # Return next number + echo $((max_num + 1)) +} + +# Function to clean and format a branch name +clean_branch_name() { + local name="$1" + echo "$name" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g' | sed 's/-\+/-/g' | sed 's/^-//' | sed 's/-$//' +} + +# Resolve repository root. Prefer git information when available, but fall back +# to searching for repository markers so the workflow still functions in repositories that +# were initialised with --no-git. +SCRIPT_DIR="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +if git rev-parse --show-toplevel >/dev/null 2>&1; then + REPO_ROOT=$(git rev-parse --show-toplevel) + HAS_GIT=true +else + REPO_ROOT="$(find_repo_root "$SCRIPT_DIR")" + if [ -z "$REPO_ROOT" ]; then + echo "Error: Could not determine repository root. Please run this script from within the repository." >&2 + exit 1 + fi + HAS_GIT=false +fi + +cd "$REPO_ROOT" + +SPECS_DIR="$REPO_ROOT/specs" +mkdir -p "$SPECS_DIR" + +# Function to generate branch name with stop word filtering and length filtering +generate_branch_name() { + local description="$1" + + # Common stop words to filter out + local stop_words="^(i|a|an|the|to|for|of|in|on|at|by|with|from|is|are|was|were|be|been|being|have|has|had|do|does|did|will|would|should|could|can|may|might|must|shall|this|that|these|those|my|your|our|their|want|need|add|get|set)$" + + # Convert to lowercase and split into words + local clean_name=$(echo "$description" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/ /g') + + # Filter words: remove stop words and words shorter than 3 chars (unless they're uppercase acronyms in original) + local meaningful_words=() + for word in $clean_name; do + # Skip empty words + [ -z "$word" ] && continue + + # Keep words that are NOT stop words AND (length >= 3 OR are potential acronyms) + if ! echo "$word" | grep -qiE "$stop_words"; then + if [ ${#word} -ge 3 ]; then + meaningful_words+=("$word") + elif echo "$description" | grep -q "\b${word^^}\b"; then + # Keep short words if they appear as uppercase in original (likely acronyms) + meaningful_words+=("$word") + fi + fi + done + + # If we have meaningful words, use first 3-4 of them + if [ ${#meaningful_words[@]} -gt 0 ]; then + local max_words=3 + if [ ${#meaningful_words[@]} -eq 4 ]; then max_words=4; fi + + local result="" + local count=0 + for word in "${meaningful_words[@]}"; do + if [ $count -ge $max_words ]; then break; fi + if [ -n "$result" ]; then result="$result-"; fi + result="$result$word" + count=$((count + 1)) + done + echo "$result" + else + # Fallback to original logic if no meaningful words found + local cleaned=$(clean_branch_name "$description") + echo "$cleaned" | tr '-' '\n' | grep -v '^$' | head -3 | tr '\n' '-' | sed 's/-$//' + fi +} + +# Generate branch name +if [ -n "$SHORT_NAME" ]; then + # Use provided short name, just clean it up + BRANCH_SUFFIX=$(clean_branch_name "$SHORT_NAME") +else + # Generate from description with smart filtering + BRANCH_SUFFIX=$(generate_branch_name "$FEATURE_DESCRIPTION") +fi + +# Determine branch number +if [ -z "$BRANCH_NUMBER" ]; then + if [ "$HAS_GIT" = true ]; then + # Check existing branches on remotes + BRANCH_NUMBER=$(check_existing_branches "$SPECS_DIR") + else + # Fall back to local directory check + HIGHEST=$(get_highest_from_specs "$SPECS_DIR") + BRANCH_NUMBER=$((HIGHEST + 1)) + fi +fi + +# Force base-10 interpretation to prevent octal conversion (e.g., 010 → 8 in octal, but should be 10 in decimal) +FEATURE_NUM=$(printf "%03d" "$((10#$BRANCH_NUMBER))") +BRANCH_NAME="${FEATURE_NUM}-${BRANCH_SUFFIX}" + +# GitHub enforces a 244-byte limit on branch names +# Validate and truncate if necessary +MAX_BRANCH_LENGTH=244 +if [ ${#BRANCH_NAME} -gt $MAX_BRANCH_LENGTH ]; then + # Calculate how much we need to trim from suffix + # Account for: feature number (3) + hyphen (1) = 4 chars + MAX_SUFFIX_LENGTH=$((MAX_BRANCH_LENGTH - 4)) + + # Truncate suffix at word boundary if possible + TRUNCATED_SUFFIX=$(echo "$BRANCH_SUFFIX" | cut -c1-$MAX_SUFFIX_LENGTH) + # Remove trailing hyphen if truncation created one + TRUNCATED_SUFFIX=$(echo "$TRUNCATED_SUFFIX" | sed 's/-$//') + + ORIGINAL_BRANCH_NAME="$BRANCH_NAME" + BRANCH_NAME="${FEATURE_NUM}-${TRUNCATED_SUFFIX}" + + >&2 echo "[specify] Warning: Branch name exceeded GitHub's 244-byte limit" + >&2 echo "[specify] Original: $ORIGINAL_BRANCH_NAME (${#ORIGINAL_BRANCH_NAME} bytes)" + >&2 echo "[specify] Truncated to: $BRANCH_NAME (${#BRANCH_NAME} bytes)" +fi + +if [ "$HAS_GIT" = true ]; then + if ! git checkout -b "$BRANCH_NAME" 2>/dev/null; then + # Check if branch already exists + if git branch --list "$BRANCH_NAME" | grep -q .; then + >&2 echo "Error: Branch '$BRANCH_NAME' already exists. Please use a different feature name or specify a different number with --number." + exit 1 + else + >&2 echo "Error: Failed to create git branch '$BRANCH_NAME'. Please check your git configuration and try again." + exit 1 + fi + fi +else + >&2 echo "[specify] Warning: Git repository not detected; skipped branch creation for $BRANCH_NAME" +fi + +FEATURE_DIR="$SPECS_DIR/$BRANCH_NAME" +mkdir -p "$FEATURE_DIR" + +TEMPLATE="$REPO_ROOT/.specify/templates/spec-template.md" +SPEC_FILE="$FEATURE_DIR/spec.md" +if [ -f "$TEMPLATE" ]; then cp "$TEMPLATE" "$SPEC_FILE"; else touch "$SPEC_FILE"; fi + +# Set the SPECIFY_FEATURE environment variable for the current session +export SPECIFY_FEATURE="$BRANCH_NAME" + +if $JSON_MODE; then + printf '{"BRANCH_NAME":"%s","SPEC_FILE":"%s","FEATURE_NUM":"%s"}\n' "$BRANCH_NAME" "$SPEC_FILE" "$FEATURE_NUM" +else + echo "BRANCH_NAME: $BRANCH_NAME" + echo "SPEC_FILE: $SPEC_FILE" + echo "FEATURE_NUM: $FEATURE_NUM" + echo "SPECIFY_FEATURE environment variable set to: $BRANCH_NAME" +fi diff --git a/.specify/scripts/bash/setup-plan.sh b/.specify/scripts/bash/setup-plan.sh new file mode 100755 index 00000000..d01c6d6c --- /dev/null +++ b/.specify/scripts/bash/setup-plan.sh @@ -0,0 +1,61 @@ +#!/usr/bin/env bash + +set -e + +# Parse command line arguments +JSON_MODE=false +ARGS=() + +for arg in "$@"; do + case "$arg" in + --json) + JSON_MODE=true + ;; + --help|-h) + echo "Usage: $0 [--json]" + echo " --json Output results in JSON format" + echo " --help Show this help message" + exit 0 + ;; + *) + ARGS+=("$arg") + ;; + esac +done + +# Get script directory and load common functions +SCRIPT_DIR="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +source "$SCRIPT_DIR/common.sh" + +# Get all paths and variables from common functions +eval $(get_feature_paths) + +# Check if we're on a proper feature branch (only for git repos) +check_feature_branch "$CURRENT_BRANCH" "$HAS_GIT" || exit 1 + +# Ensure the feature directory exists +mkdir -p "$FEATURE_DIR" + +# Copy plan template if it exists +TEMPLATE="$REPO_ROOT/.specify/templates/plan-template.md" +if [[ -f "$TEMPLATE" ]]; then + cp "$TEMPLATE" "$IMPL_PLAN" + echo "Copied plan template to $IMPL_PLAN" +else + echo "Warning: Plan template not found at $TEMPLATE" + # Create a basic plan file if template doesn't exist + touch "$IMPL_PLAN" +fi + +# Output results +if $JSON_MODE; then + printf '{"FEATURE_SPEC":"%s","IMPL_PLAN":"%s","SPECS_DIR":"%s","BRANCH":"%s","HAS_GIT":"%s"}\n' \ + "$FEATURE_SPEC" "$IMPL_PLAN" "$FEATURE_DIR" "$CURRENT_BRANCH" "$HAS_GIT" +else + echo "FEATURE_SPEC: $FEATURE_SPEC" + echo "IMPL_PLAN: $IMPL_PLAN" + echo "SPECS_DIR: $FEATURE_DIR" + echo "BRANCH: $CURRENT_BRANCH" + echo "HAS_GIT: $HAS_GIT" +fi + diff --git a/.specify/scripts/bash/update-agent-context.sh b/.specify/scripts/bash/update-agent-context.sh new file mode 100755 index 00000000..fdebac65 --- /dev/null +++ b/.specify/scripts/bash/update-agent-context.sh @@ -0,0 +1,829 @@ +#!/usr/bin/env bash + +# Update agent context files with information from plan.md +# +# This script maintains AI agent context files by parsing feature specifications +# and updating agent-specific configuration files with project information. +# +# MAIN FUNCTIONS: +# 1. Environment Validation +# - Verifies git repository structure and branch information +# - Checks for required plan.md files and templates +# - Validates file permissions and accessibility +# +# 2. Plan Data Extraction +# - Parses plan.md files to extract project metadata +# - Identifies language/version, frameworks, databases, and project types +# - Handles missing or incomplete specification data gracefully +# +# 3. Agent File Management +# - Creates new agent context files from templates when needed +# - Updates existing agent files with new project information +# - Preserves manual additions and custom configurations +# - Supports multiple AI agent formats and directory structures +# +# 4. Content Generation +# - Generates language-specific build/test commands +# - Creates appropriate project directory structures +# - Updates technology stacks and recent changes sections +# - Maintains consistent formatting and timestamps +# +# 5. Multi-Agent Support +# - Handles agent-specific file paths and naming conventions +# - Supports: Claude, Gemini, Copilot, Cursor, Qwen, opencode, Codex, Windsurf, Kilo Code, Auggie CLI, Roo Code, CodeBuddy CLI, Qoder CLI, Amp, SHAI, Kiro CLI, or Antigravity +# - Can update single agents or all existing agent files +# - Creates default Claude file if no agent files exist +# +# Usage: ./update-agent-context.sh [agent_type] +# Agent types: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|shai|kiro-cli|agy|bob|qodercli +# Leave empty to update all existing agent files + +set -e + +# Enable strict error handling +set -u +set -o pipefail + +#============================================================================== +# Configuration and Global Variables +#============================================================================== + +# Get script directory and load common functions +SCRIPT_DIR="$(CDPATH="" cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +source "$SCRIPT_DIR/common.sh" + +# Get all paths and variables from common functions +eval $(get_feature_paths) + +NEW_PLAN="$IMPL_PLAN" # Alias for compatibility with existing code +AGENT_TYPE="${1:-}" + +# Agent-specific file paths +CLAUDE_FILE="$REPO_ROOT/CLAUDE.md" +GEMINI_FILE="$REPO_ROOT/GEMINI.md" +COPILOT_FILE="$REPO_ROOT/.github/agents/copilot-instructions.md" +CURSOR_FILE="$REPO_ROOT/.cursor/rules/specify-rules.mdc" +QWEN_FILE="$REPO_ROOT/QWEN.md" +AGENTS_FILE="$REPO_ROOT/AGENTS.md" +WINDSURF_FILE="$REPO_ROOT/.windsurf/rules/specify-rules.md" +KILOCODE_FILE="$REPO_ROOT/.kilocode/rules/specify-rules.md" +AUGGIE_FILE="$REPO_ROOT/.augment/rules/specify-rules.md" +ROO_FILE="$REPO_ROOT/.roo/rules/specify-rules.md" +CODEBUDDY_FILE="$REPO_ROOT/CODEBUDDY.md" +QODER_FILE="$REPO_ROOT/QODER.md" +AMP_FILE="$REPO_ROOT/AGENTS.md" +SHAI_FILE="$REPO_ROOT/SHAI.md" +KIRO_FILE="$REPO_ROOT/AGENTS.md" +AGY_FILE="$REPO_ROOT/.agent/rules/specify-rules.md" +BOB_FILE="$REPO_ROOT/AGENTS.md" + +# Template file +TEMPLATE_FILE="$REPO_ROOT/.specify/templates/agent-file-template.md" + +# Global variables for parsed plan data +NEW_LANG="" +NEW_FRAMEWORK="" +NEW_DB="" +NEW_PROJECT_TYPE="" + +#============================================================================== +# Utility Functions +#============================================================================== + +log_info() { + echo "INFO: $1" +} + +log_success() { + echo "✓ $1" +} + +log_error() { + echo "ERROR: $1" >&2 +} + +log_warning() { + echo "WARNING: $1" >&2 +} + +# Cleanup function for temporary files +cleanup() { + local exit_code=$? + rm -f /tmp/agent_update_*_$$ + rm -f /tmp/manual_additions_$$ + exit $exit_code +} + +# Set up cleanup trap +trap cleanup EXIT INT TERM + +#============================================================================== +# Validation Functions +#============================================================================== + +validate_environment() { + # Check if we have a current branch/feature (git or non-git) + if [[ -z "$CURRENT_BRANCH" ]]; then + log_error "Unable to determine current feature" + if [[ "$HAS_GIT" == "true" ]]; then + log_info "Make sure you're on a feature branch" + else + log_info "Set SPECIFY_FEATURE environment variable or create a feature first" + fi + exit 1 + fi + + # Check if plan.md exists + if [[ ! -f "$NEW_PLAN" ]]; then + log_error "No plan.md found at $NEW_PLAN" + log_info "Make sure you're working on a feature with a corresponding spec directory" + if [[ "$HAS_GIT" != "true" ]]; then + log_info "Use: export SPECIFY_FEATURE=your-feature-name or create a new feature first" + fi + exit 1 + fi + + # Check if template exists (needed for new files) + if [[ ! -f "$TEMPLATE_FILE" ]]; then + log_warning "Template file not found at $TEMPLATE_FILE" + log_warning "Creating new agent files will fail" + fi +} + +#============================================================================== +# Plan Parsing Functions +#============================================================================== + +extract_plan_field() { + local field_pattern="$1" + local plan_file="$2" + + grep "^\*\*${field_pattern}\*\*: " "$plan_file" 2>/dev/null | \ + head -1 | \ + sed "s|^\*\*${field_pattern}\*\*: ||" | \ + sed 's/^[ \t]*//;s/[ \t]*$//' | \ + grep -v "NEEDS CLARIFICATION" | \ + grep -v "^N/A$" || echo "" +} + +parse_plan_data() { + local plan_file="$1" + + if [[ ! -f "$plan_file" ]]; then + log_error "Plan file not found: $plan_file" + return 1 + fi + + if [[ ! -r "$plan_file" ]]; then + log_error "Plan file is not readable: $plan_file" + return 1 + fi + + log_info "Parsing plan data from $plan_file" + + NEW_LANG=$(extract_plan_field "Language/Version" "$plan_file") + NEW_FRAMEWORK=$(extract_plan_field "Primary Dependencies" "$plan_file") + NEW_DB=$(extract_plan_field "Storage" "$plan_file") + NEW_PROJECT_TYPE=$(extract_plan_field "Project Type" "$plan_file") + + # Log what we found + if [[ -n "$NEW_LANG" ]]; then + log_info "Found language: $NEW_LANG" + else + log_warning "No language information found in plan" + fi + + if [[ -n "$NEW_FRAMEWORK" ]]; then + log_info "Found framework: $NEW_FRAMEWORK" + fi + + if [[ -n "$NEW_DB" ]] && [[ "$NEW_DB" != "N/A" ]]; then + log_info "Found database: $NEW_DB" + fi + + if [[ -n "$NEW_PROJECT_TYPE" ]]; then + log_info "Found project type: $NEW_PROJECT_TYPE" + fi +} + +format_technology_stack() { + local lang="$1" + local framework="$2" + local parts=() + + # Add non-empty parts + [[ -n "$lang" && "$lang" != "NEEDS CLARIFICATION" ]] && parts+=("$lang") + [[ -n "$framework" && "$framework" != "NEEDS CLARIFICATION" && "$framework" != "N/A" ]] && parts+=("$framework") + + # Join with proper formatting + if [[ ${#parts[@]} -eq 0 ]]; then + echo "" + elif [[ ${#parts[@]} -eq 1 ]]; then + echo "${parts[0]}" + else + # Join multiple parts with " + " + local result="${parts[0]}" + for ((i=1; i<${#parts[@]}; i++)); do + result="$result + ${parts[i]}" + done + echo "$result" + fi +} + +#============================================================================== +# Template and Content Generation Functions +#============================================================================== + +get_project_structure() { + local project_type="$1" + + if [[ "$project_type" == *"web"* ]]; then + echo "backend/\\nfrontend/\\ntests/" + else + echo "src/\\ntests/" + fi +} + +get_commands_for_language() { + local lang="$1" + + case "$lang" in + *"Python"*) + echo "cd src && pytest && ruff check ." + ;; + *"Rust"*) + echo "cargo test && cargo clippy" + ;; + *"JavaScript"*|*"TypeScript"*) + echo "npm test \\&\\& npm run lint" + ;; + *) + echo "# Add commands for $lang" + ;; + esac +} + +get_language_conventions() { + local lang="$1" + echo "$lang: Follow standard conventions" +} + +create_new_agent_file() { + local target_file="$1" + local temp_file="$2" + local project_name="$3" + local current_date="$4" + + if [[ ! -f "$TEMPLATE_FILE" ]]; then + log_error "Template not found at $TEMPLATE_FILE" + return 1 + fi + + if [[ ! -r "$TEMPLATE_FILE" ]]; then + log_error "Template file is not readable: $TEMPLATE_FILE" + return 1 + fi + + log_info "Creating new agent context file from template..." + + if ! cp "$TEMPLATE_FILE" "$temp_file"; then + log_error "Failed to copy template file" + return 1 + fi + + # Replace template placeholders + local project_structure + project_structure=$(get_project_structure "$NEW_PROJECT_TYPE") + + local commands + commands=$(get_commands_for_language "$NEW_LANG") + + local language_conventions + language_conventions=$(get_language_conventions "$NEW_LANG") + + # Perform substitutions with error checking using safer approach + # Escape special characters for sed by using a different delimiter or escaping + local escaped_lang=$(printf '%s\n' "$NEW_LANG" | sed 's/[\[\.*^$()+{}|]/\\&/g') + local escaped_framework=$(printf '%s\n' "$NEW_FRAMEWORK" | sed 's/[\[\.*^$()+{}|]/\\&/g') + local escaped_branch=$(printf '%s\n' "$CURRENT_BRANCH" | sed 's/[\[\.*^$()+{}|]/\\&/g') + + # Build technology stack and recent change strings conditionally + local tech_stack + if [[ -n "$escaped_lang" && -n "$escaped_framework" ]]; then + tech_stack="- $escaped_lang + $escaped_framework ($escaped_branch)" + elif [[ -n "$escaped_lang" ]]; then + tech_stack="- $escaped_lang ($escaped_branch)" + elif [[ -n "$escaped_framework" ]]; then + tech_stack="- $escaped_framework ($escaped_branch)" + else + tech_stack="- ($escaped_branch)" + fi + + local recent_change + if [[ -n "$escaped_lang" && -n "$escaped_framework" ]]; then + recent_change="- $escaped_branch: Added $escaped_lang + $escaped_framework" + elif [[ -n "$escaped_lang" ]]; then + recent_change="- $escaped_branch: Added $escaped_lang" + elif [[ -n "$escaped_framework" ]]; then + recent_change="- $escaped_branch: Added $escaped_framework" + else + recent_change="- $escaped_branch: Added" + fi + + local substitutions=( + "s|\[PROJECT NAME\]|$project_name|" + "s|\[DATE\]|$current_date|" + "s|\[EXTRACTED FROM ALL PLAN.MD FILES\]|$tech_stack|" + "s|\[ACTUAL STRUCTURE FROM PLANS\]|$project_structure|g" + "s|\[ONLY COMMANDS FOR ACTIVE TECHNOLOGIES\]|$commands|" + "s|\[LANGUAGE-SPECIFIC, ONLY FOR LANGUAGES IN USE\]|$language_conventions|" + "s|\[LAST 3 FEATURES AND WHAT THEY ADDED\]|$recent_change|" + ) + + for substitution in "${substitutions[@]}"; do + if ! sed -i.bak -e "$substitution" "$temp_file"; then + log_error "Failed to perform substitution: $substitution" + rm -f "$temp_file" "$temp_file.bak" + return 1 + fi + done + + # Convert \n sequences to actual newlines + newline=$(printf '\n') + sed -i.bak2 "s/\\\\n/${newline}/g" "$temp_file" + + # Clean up backup files + rm -f "$temp_file.bak" "$temp_file.bak2" + + # Prepend Cursor frontmatter for .mdc files so rules are auto-included + if [[ "$target_file" == *.mdc ]]; then + local frontmatter_file + frontmatter_file=$(mktemp) || return 1 + printf '%s\n' "---" "description: Project Development Guidelines" "globs: [\"**/*\"]" "alwaysApply: true" "---" "" > "$frontmatter_file" + cat "$temp_file" >> "$frontmatter_file" + mv "$frontmatter_file" "$temp_file" + fi + + return 0 +} + + + + +update_existing_agent_file() { + local target_file="$1" + local current_date="$2" + + log_info "Updating existing agent context file..." + + # Use a single temporary file for atomic update + local temp_file + temp_file=$(mktemp) || { + log_error "Failed to create temporary file" + return 1 + } + + # Process the file in one pass + local tech_stack=$(format_technology_stack "$NEW_LANG" "$NEW_FRAMEWORK") + local new_tech_entries=() + local new_change_entry="" + + # Prepare new technology entries + if [[ -n "$tech_stack" ]] && ! grep -q "$tech_stack" "$target_file"; then + new_tech_entries+=("- $tech_stack ($CURRENT_BRANCH)") + fi + + if [[ -n "$NEW_DB" ]] && [[ "$NEW_DB" != "N/A" ]] && [[ "$NEW_DB" != "NEEDS CLARIFICATION" ]] && ! grep -q "$NEW_DB" "$target_file"; then + new_tech_entries+=("- $NEW_DB ($CURRENT_BRANCH)") + fi + + # Prepare new change entry + if [[ -n "$tech_stack" ]]; then + new_change_entry="- $CURRENT_BRANCH: Added $tech_stack" + elif [[ -n "$NEW_DB" ]] && [[ "$NEW_DB" != "N/A" ]] && [[ "$NEW_DB" != "NEEDS CLARIFICATION" ]]; then + new_change_entry="- $CURRENT_BRANCH: Added $NEW_DB" + fi + + # Check if sections exist in the file + local has_active_technologies=0 + local has_recent_changes=0 + + if grep -q "^## Active Technologies" "$target_file" 2>/dev/null; then + has_active_technologies=1 + fi + + if grep -q "^## Recent Changes" "$target_file" 2>/dev/null; then + has_recent_changes=1 + fi + + # Process file line by line + local in_tech_section=false + local in_changes_section=false + local tech_entries_added=false + local changes_entries_added=false + local existing_changes_count=0 + local file_ended=false + + while IFS= read -r line || [[ -n "$line" ]]; do + # Handle Active Technologies section + if [[ "$line" == "## Active Technologies" ]]; then + echo "$line" >> "$temp_file" + in_tech_section=true + continue + elif [[ $in_tech_section == true ]] && [[ "$line" =~ ^##[[:space:]] ]]; then + # Add new tech entries before closing the section + if [[ $tech_entries_added == false ]] && [[ ${#new_tech_entries[@]} -gt 0 ]]; then + printf '%s\n' "${new_tech_entries[@]}" >> "$temp_file" + tech_entries_added=true + fi + echo "$line" >> "$temp_file" + in_tech_section=false + continue + elif [[ $in_tech_section == true ]] && [[ -z "$line" ]]; then + # Add new tech entries before empty line in tech section + if [[ $tech_entries_added == false ]] && [[ ${#new_tech_entries[@]} -gt 0 ]]; then + printf '%s\n' "${new_tech_entries[@]}" >> "$temp_file" + tech_entries_added=true + fi + echo "$line" >> "$temp_file" + continue + fi + + # Handle Recent Changes section + if [[ "$line" == "## Recent Changes" ]]; then + echo "$line" >> "$temp_file" + # Add new change entry right after the heading + if [[ -n "$new_change_entry" ]]; then + echo "$new_change_entry" >> "$temp_file" + fi + in_changes_section=true + changes_entries_added=true + continue + elif [[ $in_changes_section == true ]] && [[ "$line" =~ ^##[[:space:]] ]]; then + echo "$line" >> "$temp_file" + in_changes_section=false + continue + elif [[ $in_changes_section == true ]] && [[ "$line" == "- "* ]]; then + # Keep only first 2 existing changes + if [[ $existing_changes_count -lt 2 ]]; then + echo "$line" >> "$temp_file" + ((existing_changes_count++)) + fi + continue + fi + + # Update timestamp + if [[ "$line" =~ \*\*Last\ updated\*\*:.*[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9] ]]; then + echo "$line" | sed "s/[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]/$current_date/" >> "$temp_file" + else + echo "$line" >> "$temp_file" + fi + done < "$target_file" + + # Post-loop check: if we're still in the Active Technologies section and haven't added new entries + if [[ $in_tech_section == true ]] && [[ $tech_entries_added == false ]] && [[ ${#new_tech_entries[@]} -gt 0 ]]; then + printf '%s\n' "${new_tech_entries[@]}" >> "$temp_file" + tech_entries_added=true + fi + + # If sections don't exist, add them at the end of the file + if [[ $has_active_technologies -eq 0 ]] && [[ ${#new_tech_entries[@]} -gt 0 ]]; then + echo "" >> "$temp_file" + echo "## Active Technologies" >> "$temp_file" + printf '%s\n' "${new_tech_entries[@]}" >> "$temp_file" + tech_entries_added=true + fi + + if [[ $has_recent_changes -eq 0 ]] && [[ -n "$new_change_entry" ]]; then + echo "" >> "$temp_file" + echo "## Recent Changes" >> "$temp_file" + echo "$new_change_entry" >> "$temp_file" + changes_entries_added=true + fi + + # Ensure Cursor .mdc files have YAML frontmatter for auto-inclusion + if [[ "$target_file" == *.mdc ]]; then + if ! head -1 "$temp_file" | grep -q '^---'; then + local frontmatter_file + frontmatter_file=$(mktemp) || { rm -f "$temp_file"; return 1; } + printf '%s\n' "---" "description: Project Development Guidelines" "globs: [\"**/*\"]" "alwaysApply: true" "---" "" > "$frontmatter_file" + cat "$temp_file" >> "$frontmatter_file" + mv "$frontmatter_file" "$temp_file" + fi + fi + + # Move temp file to target atomically + if ! mv "$temp_file" "$target_file"; then + log_error "Failed to update target file" + rm -f "$temp_file" + return 1 + fi + + return 0 +} +#============================================================================== +# Main Agent File Update Function +#============================================================================== + +update_agent_file() { + local target_file="$1" + local agent_name="$2" + + if [[ -z "$target_file" ]] || [[ -z "$agent_name" ]]; then + log_error "update_agent_file requires target_file and agent_name parameters" + return 1 + fi + + log_info "Updating $agent_name context file: $target_file" + + local project_name + project_name=$(basename "$REPO_ROOT") + local current_date + current_date=$(date +%Y-%m-%d) + + # Create directory if it doesn't exist + local target_dir + target_dir=$(dirname "$target_file") + if [[ ! -d "$target_dir" ]]; then + if ! mkdir -p "$target_dir"; then + log_error "Failed to create directory: $target_dir" + return 1 + fi + fi + + if [[ ! -f "$target_file" ]]; then + # Create new file from template + local temp_file + temp_file=$(mktemp) || { + log_error "Failed to create temporary file" + return 1 + } + + if create_new_agent_file "$target_file" "$temp_file" "$project_name" "$current_date"; then + if mv "$temp_file" "$target_file"; then + log_success "Created new $agent_name context file" + else + log_error "Failed to move temporary file to $target_file" + rm -f "$temp_file" + return 1 + fi + else + log_error "Failed to create new agent file" + rm -f "$temp_file" + return 1 + fi + else + # Update existing file + if [[ ! -r "$target_file" ]]; then + log_error "Cannot read existing file: $target_file" + return 1 + fi + + if [[ ! -w "$target_file" ]]; then + log_error "Cannot write to existing file: $target_file" + return 1 + fi + + if update_existing_agent_file "$target_file" "$current_date"; then + log_success "Updated existing $agent_name context file" + else + log_error "Failed to update existing agent file" + return 1 + fi + fi + + return 0 +} + +#============================================================================== +# Agent Selection and Processing +#============================================================================== + +update_specific_agent() { + local agent_type="$1" + + case "$agent_type" in + claude) + update_agent_file "$CLAUDE_FILE" "Claude Code" + ;; + gemini) + update_agent_file "$GEMINI_FILE" "Gemini CLI" + ;; + copilot) + update_agent_file "$COPILOT_FILE" "GitHub Copilot" + ;; + cursor-agent) + update_agent_file "$CURSOR_FILE" "Cursor IDE" + ;; + qwen) + update_agent_file "$QWEN_FILE" "Qwen Code" + ;; + opencode) + update_agent_file "$AGENTS_FILE" "opencode" + ;; + codex) + update_agent_file "$AGENTS_FILE" "Codex CLI" + ;; + windsurf) + update_agent_file "$WINDSURF_FILE" "Windsurf" + ;; + kilocode) + update_agent_file "$KILOCODE_FILE" "Kilo Code" + ;; + auggie) + update_agent_file "$AUGGIE_FILE" "Auggie CLI" + ;; + roo) + update_agent_file "$ROO_FILE" "Roo Code" + ;; + codebuddy) + update_agent_file "$CODEBUDDY_FILE" "CodeBuddy CLI" + ;; + qodercli) + update_agent_file "$QODER_FILE" "Qoder CLI" + ;; + amp) + update_agent_file "$AMP_FILE" "Amp" + ;; + shai) + update_agent_file "$SHAI_FILE" "SHAI" + ;; + kiro-cli) + update_agent_file "$KIRO_FILE" "Kiro CLI" + ;; + agy) + update_agent_file "$AGY_FILE" "Antigravity" + ;; + bob) + update_agent_file "$BOB_FILE" "IBM Bob" + ;; + generic) + log_info "Generic agent: no predefined context file. Use the agent-specific update script for your agent." + ;; + *) + log_error "Unknown agent type '$agent_type'" + log_error "Expected: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|shai|kiro-cli|agy|bob|qodercli|generic" + exit 1 + ;; + esac +} + +update_all_existing_agents() { + local found_agent=false + + # Check each possible agent file and update if it exists + if [[ -f "$CLAUDE_FILE" ]]; then + update_agent_file "$CLAUDE_FILE" "Claude Code" + found_agent=true + fi + + if [[ -f "$GEMINI_FILE" ]]; then + update_agent_file "$GEMINI_FILE" "Gemini CLI" + found_agent=true + fi + + if [[ -f "$COPILOT_FILE" ]]; then + update_agent_file "$COPILOT_FILE" "GitHub Copilot" + found_agent=true + fi + + if [[ -f "$CURSOR_FILE" ]]; then + update_agent_file "$CURSOR_FILE" "Cursor IDE" + found_agent=true + fi + + if [[ -f "$QWEN_FILE" ]]; then + update_agent_file "$QWEN_FILE" "Qwen Code" + found_agent=true + fi + + if [[ -f "$AGENTS_FILE" ]]; then + update_agent_file "$AGENTS_FILE" "Codex/opencode" + found_agent=true + fi + + if [[ -f "$WINDSURF_FILE" ]]; then + update_agent_file "$WINDSURF_FILE" "Windsurf" + found_agent=true + fi + + if [[ -f "$KILOCODE_FILE" ]]; then + update_agent_file "$KILOCODE_FILE" "Kilo Code" + found_agent=true + fi + + if [[ -f "$AUGGIE_FILE" ]]; then + update_agent_file "$AUGGIE_FILE" "Auggie CLI" + found_agent=true + fi + + if [[ -f "$ROO_FILE" ]]; then + update_agent_file "$ROO_FILE" "Roo Code" + found_agent=true + fi + + if [[ -f "$CODEBUDDY_FILE" ]]; then + update_agent_file "$CODEBUDDY_FILE" "CodeBuddy CLI" + found_agent=true + fi + + if [[ -f "$SHAI_FILE" ]]; then + update_agent_file "$SHAI_FILE" "SHAI" + found_agent=true + fi + + if [[ -f "$QODER_FILE" ]]; then + update_agent_file "$QODER_FILE" "Qoder CLI" + found_agent=true + fi + + if [[ -f "$KIRO_FILE" ]]; then + update_agent_file "$KIRO_FILE" "Kiro CLI" + found_agent=true + fi + + if [[ -f "$AGY_FILE" ]]; then + update_agent_file "$AGY_FILE" "Antigravity" + found_agent=true + fi + if [[ -f "$BOB_FILE" ]]; then + update_agent_file "$BOB_FILE" "IBM Bob" + found_agent=true + fi + + # If no agent files exist, create a default Claude file + if [[ "$found_agent" == false ]]; then + log_info "No existing agent files found, creating default Claude file..." + update_agent_file "$CLAUDE_FILE" "Claude Code" + fi +} +print_summary() { + echo + log_info "Summary of changes:" + + if [[ -n "$NEW_LANG" ]]; then + echo " - Added language: $NEW_LANG" + fi + + if [[ -n "$NEW_FRAMEWORK" ]]; then + echo " - Added framework: $NEW_FRAMEWORK" + fi + + if [[ -n "$NEW_DB" ]] && [[ "$NEW_DB" != "N/A" ]]; then + echo " - Added database: $NEW_DB" + fi + + echo + + log_info "Usage: $0 [claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|roo|codebuddy|amp|shai|kiro-cli|agy|bob|qodercli]" +} + +#============================================================================== +# Main Execution +#============================================================================== + +main() { + # Validate environment before proceeding + validate_environment + + log_info "=== Updating agent context files for feature $CURRENT_BRANCH ===" + + # Parse the plan file to extract project information + if ! parse_plan_data "$NEW_PLAN"; then + log_error "Failed to parse plan data" + exit 1 + fi + + # Process based on agent type argument + local success=true + + if [[ -z "$AGENT_TYPE" ]]; then + # No specific agent provided - update all existing agent files + log_info "No agent specified, updating all existing agent files..." + if ! update_all_existing_agents; then + success=false + fi + else + # Specific agent provided - update only that agent + log_info "Updating specific agent: $AGENT_TYPE" + if ! update_specific_agent "$AGENT_TYPE"; then + success=false + fi + fi + + # Print summary + print_summary + + if [[ "$success" == true ]]; then + log_success "Agent context update completed successfully" + exit 0 + else + log_error "Agent context update completed with errors" + exit 1 + fi +} + +# Execute main function if script is run directly +if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then + main "$@" +fi diff --git a/.specify/templates/agent-file-template.md b/.specify/templates/agent-file-template.md new file mode 100644 index 00000000..4cc7fd66 --- /dev/null +++ b/.specify/templates/agent-file-template.md @@ -0,0 +1,28 @@ +# [PROJECT NAME] Development Guidelines + +Auto-generated from all feature plans. Last updated: [DATE] + +## Active Technologies + +[EXTRACTED FROM ALL PLAN.MD FILES] + +## Project Structure + +```text +[ACTUAL STRUCTURE FROM PLANS] +``` + +## Commands + +[ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] + +## Code Style + +[LANGUAGE-SPECIFIC, ONLY FOR LANGUAGES IN USE] + +## Recent Changes + +[LAST 3 FEATURES AND WHAT THEY ADDED] + + + diff --git a/.specify/templates/checklist-template.md b/.specify/templates/checklist-template.md new file mode 100644 index 00000000..806657da --- /dev/null +++ b/.specify/templates/checklist-template.md @@ -0,0 +1,40 @@ +# [CHECKLIST TYPE] Checklist: [FEATURE NAME] + +**Purpose**: [Brief description of what this checklist covers] +**Created**: [DATE] +**Feature**: [Link to spec.md or relevant documentation] + +**Note**: This checklist is generated by the `/speckit.checklist` command based on feature context and requirements. + + + +## [Category 1] + +- [ ] CHK001 First checklist item with clear action +- [ ] CHK002 Second checklist item +- [ ] CHK003 Third checklist item + +## [Category 2] + +- [ ] CHK004 Another category item +- [ ] CHK005 Item with specific criteria +- [ ] CHK006 Final item in this category + +## Notes + +- Check items off as completed: `[x]` +- Add comments or findings inline +- Link to relevant resources or documentation +- Items are numbered sequentially for easy reference diff --git a/.specify/templates/constitution-template.md b/.specify/templates/constitution-template.md new file mode 100644 index 00000000..a4670ff4 --- /dev/null +++ b/.specify/templates/constitution-template.md @@ -0,0 +1,50 @@ +# [PROJECT_NAME] Constitution + + +## Core Principles + +### [PRINCIPLE_1_NAME] + +[PRINCIPLE_1_DESCRIPTION] + + +### [PRINCIPLE_2_NAME] + +[PRINCIPLE_2_DESCRIPTION] + + +### [PRINCIPLE_3_NAME] + +[PRINCIPLE_3_DESCRIPTION] + + +### [PRINCIPLE_4_NAME] + +[PRINCIPLE_4_DESCRIPTION] + + +### [PRINCIPLE_5_NAME] + +[PRINCIPLE_5_DESCRIPTION] + + +## [SECTION_2_NAME] + + +[SECTION_2_CONTENT] + + +## [SECTION_3_NAME] + + +[SECTION_3_CONTENT] + + +## Governance + + +[GOVERNANCE_RULES] + + +**Version**: [CONSTITUTION_VERSION] | **Ratified**: [RATIFICATION_DATE] | **Last Amended**: [LAST_AMENDED_DATE] + diff --git a/.specify/templates/plan-template.md b/.specify/templates/plan-template.md new file mode 100644 index 00000000..5a2fafeb --- /dev/null +++ b/.specify/templates/plan-template.md @@ -0,0 +1,104 @@ +# Implementation Plan: [FEATURE] + +**Branch**: `[###-feature-name]` | **Date**: [DATE] | **Spec**: [link] +**Input**: Feature specification from `/specs/[###-feature-name]/spec.md` + +**Note**: This template is filled in by the `/speckit.plan` command. See `.specify/templates/plan-template.md` for the execution workflow. + +## Summary + +[Extract from feature spec: primary requirement + technical approach from research] + +## Technical Context + + + +**Language/Version**: [e.g., Python 3.11, Swift 5.9, Rust 1.75 or NEEDS CLARIFICATION] +**Primary Dependencies**: [e.g., FastAPI, UIKit, LLVM or NEEDS CLARIFICATION] +**Storage**: [if applicable, e.g., PostgreSQL, CoreData, files or N/A] +**Testing**: [e.g., pytest, XCTest, cargo test or NEEDS CLARIFICATION] +**Target Platform**: [e.g., Linux server, iOS 15+, WASM or NEEDS CLARIFICATION] +**Project Type**: [e.g., library/cli/web-service/mobile-app/compiler/desktop-app or NEEDS CLARIFICATION] +**Performance Goals**: [domain-specific, e.g., 1000 req/s, 10k lines/sec, 60 fps or NEEDS CLARIFICATION] +**Constraints**: [domain-specific, e.g., <200ms p95, <100MB memory, offline-capable or NEEDS CLARIFICATION] +**Scale/Scope**: [domain-specific, e.g., 10k users, 1M LOC, 50 screens or NEEDS CLARIFICATION] + +## Constitution Check + +*GATE: Must pass before Phase 0 research. Re-check after Phase 1 design.* + +[Gates determined based on constitution file] + +## Project Structure + +### Documentation (this feature) + +```text +specs/[###-feature]/ +├── plan.md # This file (/speckit.plan command output) +├── research.md # Phase 0 output (/speckit.plan command) +├── data-model.md # Phase 1 output (/speckit.plan command) +├── quickstart.md # Phase 1 output (/speckit.plan command) +├── contracts/ # Phase 1 output (/speckit.plan command) +└── tasks.md # Phase 2 output (/speckit.tasks command - NOT created by /speckit.plan) +``` + +### Source Code (repository root) + + +```text +# [REMOVE IF UNUSED] Option 1: Single project (DEFAULT) +src/ +├── models/ +├── services/ +├── cli/ +└── lib/ + +tests/ +├── contract/ +├── integration/ +└── unit/ + +# [REMOVE IF UNUSED] Option 2: Web application (when "frontend" + "backend" detected) +backend/ +├── src/ +│ ├── models/ +│ ├── services/ +│ └── api/ +└── tests/ + +frontend/ +├── src/ +│ ├── components/ +│ ├── pages/ +│ └── services/ +└── tests/ + +# [REMOVE IF UNUSED] Option 3: Mobile + API (when "iOS/Android" detected) +api/ +└── [same as backend above] + +ios/ or android/ +└── [platform-specific structure: feature modules, UI flows, platform tests] +``` + +**Structure Decision**: [Document the selected structure and reference the real +directories captured above] + +## Complexity Tracking + +> **Fill ONLY if Constitution Check has violations that must be justified** + +| Violation | Why Needed | Simpler Alternative Rejected Because | +|-----------|------------|-------------------------------------| +| [e.g., 4th project] | [current need] | [why 3 projects insufficient] | +| [e.g., Repository pattern] | [specific problem] | [why direct DB access insufficient] | diff --git a/.specify/templates/spec-template.md b/.specify/templates/spec-template.md new file mode 100644 index 00000000..c67d9149 --- /dev/null +++ b/.specify/templates/spec-template.md @@ -0,0 +1,115 @@ +# Feature Specification: [FEATURE NAME] + +**Feature Branch**: `[###-feature-name]` +**Created**: [DATE] +**Status**: Draft +**Input**: User description: "$ARGUMENTS" + +## User Scenarios & Testing *(mandatory)* + + + +### User Story 1 - [Brief Title] (Priority: P1) + +[Describe this user journey in plain language] + +**Why this priority**: [Explain the value and why it has this priority level] + +**Independent Test**: [Describe how this can be tested independently - e.g., "Can be fully tested by [specific action] and delivers [specific value]"] + +**Acceptance Scenarios**: + +1. **Given** [initial state], **When** [action], **Then** [expected outcome] +2. **Given** [initial state], **When** [action], **Then** [expected outcome] + +--- + +### User Story 2 - [Brief Title] (Priority: P2) + +[Describe this user journey in plain language] + +**Why this priority**: [Explain the value and why it has this priority level] + +**Independent Test**: [Describe how this can be tested independently] + +**Acceptance Scenarios**: + +1. **Given** [initial state], **When** [action], **Then** [expected outcome] + +--- + +### User Story 3 - [Brief Title] (Priority: P3) + +[Describe this user journey in plain language] + +**Why this priority**: [Explain the value and why it has this priority level] + +**Independent Test**: [Describe how this can be tested independently] + +**Acceptance Scenarios**: + +1. **Given** [initial state], **When** [action], **Then** [expected outcome] + +--- + +[Add more user stories as needed, each with an assigned priority] + +### Edge Cases + + + +- What happens when [boundary condition]? +- How does system handle [error scenario]? + +## Requirements *(mandatory)* + + + +### Functional Requirements + +- **FR-001**: System MUST [specific capability, e.g., "allow users to create accounts"] +- **FR-002**: System MUST [specific capability, e.g., "validate email addresses"] +- **FR-003**: Users MUST be able to [key interaction, e.g., "reset their password"] +- **FR-004**: System MUST [data requirement, e.g., "persist user preferences"] +- **FR-005**: System MUST [behavior, e.g., "log all security events"] + +*Example of marking unclear requirements:* + +- **FR-006**: System MUST authenticate users via [NEEDS CLARIFICATION: auth method not specified - email/password, SSO, OAuth?] +- **FR-007**: System MUST retain user data for [NEEDS CLARIFICATION: retention period not specified] + +### Key Entities *(include if feature involves data)* + +- **[Entity 1]**: [What it represents, key attributes without implementation] +- **[Entity 2]**: [What it represents, relationships to other entities] + +## Success Criteria *(mandatory)* + + + +### Measurable Outcomes + +- **SC-001**: [Measurable metric, e.g., "Users can complete account creation in under 2 minutes"] +- **SC-002**: [Measurable metric, e.g., "System handles 1000 concurrent users without degradation"] +- **SC-003**: [User satisfaction metric, e.g., "90% of users successfully complete primary task on first attempt"] +- **SC-004**: [Business metric, e.g., "Reduce support tickets related to [X] by 50%"] diff --git a/.specify/templates/tasks-template.md b/.specify/templates/tasks-template.md new file mode 100644 index 00000000..60f9be45 --- /dev/null +++ b/.specify/templates/tasks-template.md @@ -0,0 +1,251 @@ +--- + +description: "Task list template for feature implementation" +--- + +# Tasks: [FEATURE NAME] + +**Input**: Design documents from `/specs/[###-feature-name]/` +**Prerequisites**: plan.md (required), spec.md (required for user stories), research.md, data-model.md, contracts/ + +**Tests**: The examples below include test tasks. Tests are OPTIONAL - only include them if explicitly requested in the feature specification. + +**Organization**: Tasks are grouped by user story to enable independent implementation and testing of each story. + +## Format: `[ID] [P?] [Story] Description` + +- **[P]**: Can run in parallel (different files, no dependencies) +- **[Story]**: Which user story this task belongs to (e.g., US1, US2, US3) +- Include exact file paths in descriptions + +## Path Conventions + +- **Single project**: `src/`, `tests/` at repository root +- **Web app**: `backend/src/`, `frontend/src/` +- **Mobile**: `api/src/`, `ios/src/` or `android/src/` +- Paths shown below assume single project - adjust based on plan.md structure + + + +## Phase 1: Setup (Shared Infrastructure) + +**Purpose**: Project initialization and basic structure + +- [ ] T001 Create project structure per implementation plan +- [ ] T002 Initialize [language] project with [framework] dependencies +- [ ] T003 [P] Configure linting and formatting tools + +--- + +## Phase 2: Foundational (Blocking Prerequisites) + +**Purpose**: Core infrastructure that MUST be complete before ANY user story can be implemented + +**⚠️ CRITICAL**: No user story work can begin until this phase is complete + +Examples of foundational tasks (adjust based on your project): + +- [ ] T004 Setup database schema and migrations framework +- [ ] T005 [P] Implement authentication/authorization framework +- [ ] T006 [P] Setup API routing and middleware structure +- [ ] T007 Create base models/entities that all stories depend on +- [ ] T008 Configure error handling and logging infrastructure +- [ ] T009 Setup environment configuration management + +**Checkpoint**: Foundation ready - user story implementation can now begin in parallel + +--- + +## Phase 3: User Story 1 - [Title] (Priority: P1) 🎯 MVP + +**Goal**: [Brief description of what this story delivers] + +**Independent Test**: [How to verify this story works on its own] + +### Tests for User Story 1 (OPTIONAL - only if tests requested) ⚠️ + +> **NOTE: Write these tests FIRST, ensure they FAIL before implementation** + +- [ ] T010 [P] [US1] Contract test for [endpoint] in tests/contract/test_[name].py +- [ ] T011 [P] [US1] Integration test for [user journey] in tests/integration/test_[name].py + +### Implementation for User Story 1 + +- [ ] T012 [P] [US1] Create [Entity1] model in src/models/[entity1].py +- [ ] T013 [P] [US1] Create [Entity2] model in src/models/[entity2].py +- [ ] T014 [US1] Implement [Service] in src/services/[service].py (depends on T012, T013) +- [ ] T015 [US1] Implement [endpoint/feature] in src/[location]/[file].py +- [ ] T016 [US1] Add validation and error handling +- [ ] T017 [US1] Add logging for user story 1 operations + +**Checkpoint**: At this point, User Story 1 should be fully functional and testable independently + +--- + +## Phase 4: User Story 2 - [Title] (Priority: P2) + +**Goal**: [Brief description of what this story delivers] + +**Independent Test**: [How to verify this story works on its own] + +### Tests for User Story 2 (OPTIONAL - only if tests requested) ⚠️ + +- [ ] T018 [P] [US2] Contract test for [endpoint] in tests/contract/test_[name].py +- [ ] T019 [P] [US2] Integration test for [user journey] in tests/integration/test_[name].py + +### Implementation for User Story 2 + +- [ ] T020 [P] [US2] Create [Entity] model in src/models/[entity].py +- [ ] T021 [US2] Implement [Service] in src/services/[service].py +- [ ] T022 [US2] Implement [endpoint/feature] in src/[location]/[file].py +- [ ] T023 [US2] Integrate with User Story 1 components (if needed) + +**Checkpoint**: At this point, User Stories 1 AND 2 should both work independently + +--- + +## Phase 5: User Story 3 - [Title] (Priority: P3) + +**Goal**: [Brief description of what this story delivers] + +**Independent Test**: [How to verify this story works on its own] + +### Tests for User Story 3 (OPTIONAL - only if tests requested) ⚠️ + +- [ ] T024 [P] [US3] Contract test for [endpoint] in tests/contract/test_[name].py +- [ ] T025 [P] [US3] Integration test for [user journey] in tests/integration/test_[name].py + +### Implementation for User Story 3 + +- [ ] T026 [P] [US3] Create [Entity] model in src/models/[entity].py +- [ ] T027 [US3] Implement [Service] in src/services/[service].py +- [ ] T028 [US3] Implement [endpoint/feature] in src/[location]/[file].py + +**Checkpoint**: All user stories should now be independently functional + +--- + +[Add more user story phases as needed, following the same pattern] + +--- + +## Phase N: Polish & Cross-Cutting Concerns + +**Purpose**: Improvements that affect multiple user stories + +- [ ] TXXX [P] Documentation updates in docs/ +- [ ] TXXX Code cleanup and refactoring +- [ ] TXXX Performance optimization across all stories +- [ ] TXXX [P] Additional unit tests (if requested) in tests/unit/ +- [ ] TXXX Security hardening +- [ ] TXXX Run quickstart.md validation + +--- + +## Dependencies & Execution Order + +### Phase Dependencies + +- **Setup (Phase 1)**: No dependencies - can start immediately +- **Foundational (Phase 2)**: Depends on Setup completion - BLOCKS all user stories +- **User Stories (Phase 3+)**: All depend on Foundational phase completion + - User stories can then proceed in parallel (if staffed) + - Or sequentially in priority order (P1 → P2 → P3) +- **Polish (Final Phase)**: Depends on all desired user stories being complete + +### User Story Dependencies + +- **User Story 1 (P1)**: Can start after Foundational (Phase 2) - No dependencies on other stories +- **User Story 2 (P2)**: Can start after Foundational (Phase 2) - May integrate with US1 but should be independently testable +- **User Story 3 (P3)**: Can start after Foundational (Phase 2) - May integrate with US1/US2 but should be independently testable + +### Within Each User Story + +- Tests (if included) MUST be written and FAIL before implementation +- Models before services +- Services before endpoints +- Core implementation before integration +- Story complete before moving to next priority + +### Parallel Opportunities + +- All Setup tasks marked [P] can run in parallel +- All Foundational tasks marked [P] can run in parallel (within Phase 2) +- Once Foundational phase completes, all user stories can start in parallel (if team capacity allows) +- All tests for a user story marked [P] can run in parallel +- Models within a story marked [P] can run in parallel +- Different user stories can be worked on in parallel by different team members + +--- + +## Parallel Example: User Story 1 + +```bash +# Launch all tests for User Story 1 together (if tests requested): +Task: "Contract test for [endpoint] in tests/contract/test_[name].py" +Task: "Integration test for [user journey] in tests/integration/test_[name].py" + +# Launch all models for User Story 1 together: +Task: "Create [Entity1] model in src/models/[entity1].py" +Task: "Create [Entity2] model in src/models/[entity2].py" +``` + +--- + +## Implementation Strategy + +### MVP First (User Story 1 Only) + +1. Complete Phase 1: Setup +2. Complete Phase 2: Foundational (CRITICAL - blocks all stories) +3. Complete Phase 3: User Story 1 +4. **STOP and VALIDATE**: Test User Story 1 independently +5. Deploy/demo if ready + +### Incremental Delivery + +1. Complete Setup + Foundational → Foundation ready +2. Add User Story 1 → Test independently → Deploy/Demo (MVP!) +3. Add User Story 2 → Test independently → Deploy/Demo +4. Add User Story 3 → Test independently → Deploy/Demo +5. Each story adds value without breaking previous stories + +### Parallel Team Strategy + +With multiple developers: + +1. Team completes Setup + Foundational together +2. Once Foundational is done: + - Developer A: User Story 1 + - Developer B: User Story 2 + - Developer C: User Story 3 +3. Stories complete and integrate independently + +--- + +## Notes + +- [P] tasks = different files, no dependencies +- [Story] label maps task to specific user story for traceability +- Each user story should be independently completable and testable +- Verify tests fail before implementing +- Commit after each task or logical group +- Stop at any checkpoint to validate story independently +- Avoid: vague tasks, same file conflicts, cross-story dependencies that break independence diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz new file mode 100644 index 00000000..ed297d6f Binary files /dev/null and b/.yarn/install-state.gz differ diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 00000000..0a51bc72 --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,3 @@ +# This project uses Bun, not Yarn +# This file prevents Yarn from the parent directory from managing this project +nodeLinker: node-modules diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000..dfa7fd9d --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,223 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Overview + +Synmetrix Client — the frontend for the Synmetrix data engineering platform. Provides data modeling (IDE with Monaco editor), analytics exploration, alerts/reports, team management, and role-based access control. + +**Related repositories:** +- **Synmetrix backend** (`../synmetrix`) — Actions service, CubeJS, Hasura, Docker orchestration. See its CLAUDE.md for backend architecture. +- **FraiOS blueprint** (`../cxs2`) — Master UI application whose patterns this project will adopt. See "Blueprint: FraiOS" below. + +## Development Commands + +```bash +bun install # Install dependencies +bun run dev # Dev server on port 8000 (proxies to local backend) +bun run dev:force # Dev server with Vite cache cleared +bun run build # Production build (outputs dist/, then tar.gz + zip) +bun run lint # ESLint + TypeScript check +bun run lint:fix # Auto-fix ESLint issues +bun run test # Run Vitest tests +bun run codegen # Regenerate GraphQL types from Hasura schema +bun run loadschema # Introspect Hasura and dump schema JSON +bun run storybook # Component dev on port 6007 +bun run prettier # Format code +``` + +**Note:** `bun run` and `yarn` both work — the project uses Bun as package manager but scripts are compatible with either. + +## Tech Stack + +- **React 18** + TypeScript 5, built with **Vite 4** + `@vitjs/vit` (file-based routing) +- **Ant Design 5** — Primary UI library with ConfigProvider theming (`colorPrimary: #470D69`) +- **URQL** — GraphQL client with `authExchange`, `retryExchange`, `subscriptionExchange` (WebSocket) +- **Zustand 4** — State management (3 stores: `AuthTokensStore`, `CurrentUserStore`, `DataSourceStore`) +- **Monaco Editor** — Code editing for Cube.js data models (YAML/JS) +- **LESS + CSS Modules + WindiCSS** — Styling (components use `index.module.less`, camelCase class names) +- **i18next** — Internationalization (English, Russian) +- **GraphQL CodeGen** — Generates TypeScript types + URQL hooks → `src/graphql/generated.ts` +- **Vitest** + Testing Library — Unit tests +- **Storybook 7** — Component development + +## Architecture + +### Routing + +Routes defined in `config/routes.ts` using `@vitjs/vit`. Layout hierarchy: + +``` +RootLayout (URQL provider, Ant Design config, i18n) +├── /auth/signin, /auth/signup, /auth/logout — BasicLayout (unauthenticated) +├── /callback — OAuth callback handler +└── UserDataWrapper (authenticated, fetches user/team data) + ├── /models/:dataSourceId?/:branch?/:slug? — Models IDE + ├── /explore/:dataSourceId?/:explorationId? — Analytics Explorer + ├── /signals/alerts, /signals/reports — SettingsLayout + ├── /settings/* — SettingsLayout (teams, sources, members, roles, sql-api, info) + ├── /onboarding/:step? — Setup wizard + ├── /logs/query — Query logs + └── /docs/:versionId — Schema documentation viewer +``` + +### Backend Communication + +All requests route through **4 proxy paths** (Vite dev server proxies to local Docker services; Nginx in production): + +| Frontend Path | Backend Target | Service | +|---|---|---| +| `/v1/graphql` | `http://localhost:8080` | Hasura GraphQL (queries, mutations, subscriptions) | +| `/v1/ws` | `ws://localhost:8080` | Hasura WebSocket (live subscriptions, rewritten to `/v1/graphql`) | +| `/auth/*` | `http://localhost:8081` | hasura-backend-plus (login, register, token refresh) | +| `/api/v1/*` | `http://localhost:4000` | CubeJS REST API (run-sql, test, get-schema, generate-models) | + +Proxy config in `vite.config.ts` lines 97-108. Production proxy via Nginx (`services/client/nginx/`). + +### GraphQL Layer + +- **Queries/mutations** defined in `src/graphql/gql/*.gql` (16 files: users, datasources, alerts, reports, explorations, teams, members, branches, schemas, versions, etc.) +- **Schema source**: `src/graphql/schemas/hasura.json` (Hasura introspection dump) +- **Generated code**: `src/graphql/generated.ts` (~503KB) — TypeScript types + URQL hooks +- **Codegen config**: `codegen.yaml` — plugins: `typescript`, `typescript-operations`, `typescript-urql`, `named-operations-object` + +**Workflow for schema changes:** +1. Backend applies Hasura migration +2. Run `bun run loadschema` to re-introspect +3. Update `.gql` files if needed +4. Run `bun run codegen` to regenerate types + +### GraphQL Actions Bridge + +The frontend never calls the Actions service directly. When calling mutations like `gen_dataschemas` or `run_query`, Hasura forwards them as **Actions** to `POST http://actions:3000/rpc/{method}`. The frontend only calls CubeJS directly for REST endpoints (`/api/v1/*`). + +### Authentication + +**Current flow** (via hasura-backend-plus): +1. `POST /auth/login` → `jwt_token` + `refresh_token` +2. Tokens stored in Zustand `AuthTokensStore` (persisted to localStorage via `zustand/middleware/persist`) +3. JWT decoded — extracts `x-hasura-user-id` and `x-hasura-role` from `hasura` namespace +4. URQL `authExchange` (`src/URQLClient.ts`) attaches `Authorization: Bearer {token}` + `x-hasura-role: user` headers +5. On expiry, `willAuthError` triggers → `GET /auth/token/refresh?refresh_token={token}` +6. On `FORBIDDEN` error, `didAuthError` triggers refresh + +Auth endpoints may use `window.GRAPHQL_PLUS_SERVER_URL` or `VITE_GRAPHQL_PLUS_SERVER_URL` env var. + +### State Management + +**Zustand stores** (`src/stores/`): +- `AuthTokensStore` — `accessToken`, `refreshToken`, `JWTpayload`; persisted to localStorage +- `CurrentUserStore` — `currentUser`, `currentTeam`, `teamData`, `loading`; team selection persisted via `lastTeamId` in localStorage +- `DataSourceStore` — Multi-step datasource setup wizard state (`step`, `branchId`, `formState`, `isGenerate`, `isOnboarding`) + +### Component Conventions + +Each component follows the structure: +``` +src/components/ComponentName/ + index.tsx # React FC implementation + index.module.less # Scoped styles (camelCase class names) + index.stories.tsx # Storybook stories + index.test.tsx # Vitest tests (optional) +``` + +### Key Hooks + +- `useAuth()` (`src/hooks/useAuth.ts`) — Login, register, logout, password change, token refresh +- `useModelsIde()` — Models IDE state (editor, schema tree, compile) +- `usePlayground()` — SQL playground state +- `useAnalyticsQuery()` — Query builder state management +- `useExploreWorkspace()` — Exploration workspace orchestration +- `useSources()` — Data source CRUD operations +- `useAlerts()` / `useReports()` — Signal management +- `useUserData()` — Current user and team data loading +- `useOnboarding()` — Onboarding wizard flow +- `useDataSourcesMeta()` — Cube metadata resolution and query member enrichment + +### Environment Configuration + +```bash +# .env (development) +VITE_HASURA_GRAPHQL_ENDPOINT=/v1/graphql +VITE_HASURA_WS_ENDPOINT=/v1/ws +VITE_CUBEJS_REST_API_URL=/api/v1/load +VITE_CUBEJS_MYSQL_API_URL=localhost:13306 +VITE_CUBEJS_PG_API_URL=localhost:15432 +``` + +Production endpoints configured in `.env.production`. Runtime overrides via `window.*` globals (injected by Nginx template). + +## Shared Contracts with Backend (`../synmetrix`) + +Changes to these backend files require corresponding frontend updates: +- **Hasura actions** (`services/hasura/metadata/actions.yaml`, `actions.graphql`) → update `.gql` files, run `bun run codegen` +- **Hasura migrations** (new tables/columns) → run `bun run loadschema`, update `.gql` queries, run `bun run codegen` +- **JWT claims structure** → `AuthTokensStore.ts` expects `hasura` namespace with `x-hasura-user-id` and `x-hasura-role` +- **CubeJS REST routes** (`services/cubejs/src/routes/`) → called directly via `/api/v1/*` + +## Blueprint: FraiOS (`../cxs2`) + +FraiOS (currently `cxs2`) is the **master UI blueprint**. This client-v2 project will adopt patterns from FraiOS. When making architectural decisions, refer to cxs2 as the target. + +### Target Architecture (from FraiOS) + +| Current (client-v2) | Target (FraiOS pattern) | +|---|---| +| Vite + @vitjs/vit routing | Next.js 16 App Router | +| React 18 | React 19 | +| hasura-backend-plus (JWT in localStorage) | WorkOS AuthKit (JWT in cookies, Redis sessions) | +| Hasura row-level security + `member_roles.access_list` | WorkOS FGA (Fine-Grained Authorization) | +| Plaintext datasource credentials | WorkOS Vault (encrypted credential storage) | +| URQL GraphQL client | Convex real-time database + TanStack Query 5 | +| Zustand 4 (3 stores, localStorage persist) | Zustand 5 + TanStack Query (server state separation) | +| LESS + CSS Modules + WindiCSS | Tailwind CSS 4 | + +### Key FraiOS Patterns to Adopt + +**WorkOS Authentication:** +- AuthKit login → JWT in cookies → Redis session with sliding TTL +- `useSession()` hook via TanStack Query (replaces localStorage token management) +- Session includes `can()`/`cannot()` methods for inline permission checks +- Reference: `cxs2/src/lib/auth/session.ts` + +**WorkOS FGA (Fine-Grained Authorization):** +- `check(membershipId, permissionSlug, resourceType?, resourceId?)` with Redis caching (5min TTL) +- Batch permission checks (50 per batch) +- Roles assigned to organization memberships, not users directly +- Replaces current `access_list.config.datasources[id].cubes` system +- Reference: `cxs2/src/lib/auth/authorization.ts` + +**WorkOS Vault:** +- Encrypted storage for datasource credentials and API keys +- `vault.store()` / `vault.get()` / `vault.update()` with merge semantics and optimistic locking +- Reference: `cxs2/src/lib/services/vault.ts` + +**Convex:** +- Real-time database with reactive React hooks (`useQuery`, `useMutation`, `useAction`) +- Zod-validated function wrappers (`zQuery`, `zMutation`, `zAction`) +- Auth helpers: `getCurrentUser()`, `requireAuth()`, `requireOrgAuth()` +- FGA checks must be in Convex **actions** (not queries/mutations) since they call external APIs +- Reference: `cxs2/convex/schema.ts`, `cxs2/convex/lib/functions.ts`, `cxs2/convex/lib/auth.ts` + +**TanStack Query + Centralized Query Keys:** +- Query key factory pattern for consistent caching/invalidation +- Reference: `cxs2/src/lib/query-keys.ts` + +### Key cxs2 File Locations +- `src/lib/auth/session.ts` — Session management (Redis + WorkOS) +- `src/lib/auth/authorization.ts` — FGA client with caching +- `src/lib/services/vault.ts` — WorkOS Vault integration +- `convex/schema.ts` — Database schema +- `convex/lib/functions.ts` — Zod-wrapped query/mutation/action helpers +- `convex/lib/auth.ts` — Auth guards and user resolution +- `convex/lib/fga.ts` — FGA permission checks (action-only) +- `src/components/providers/ConvexProvider.tsx` — Custom Convex auth provider +- `src/lib/query-keys.ts` — TanStack Query key factory +- `src/contexts/team-context.tsx` — Team selection and permissions + +## Active Technologies +- TypeScript 5 + React 18 + Ant Design 5, Vite 4, LESS, CSS Modules (004-rebranding) +- N/A (no data model changes) (004-rebranding) + +## Recent Changes +- 004-rebranding: Added TypeScript 5 + React 18 + Ant Design 5, Vite 4, LESS, CSS Modules diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..c88e3485 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,49 @@ +# Build stage +FROM oven/bun:1.3.5-alpine AS builder + +# Create non-root user +RUN addgroup -g 1001 -S appgroup && \ + adduser -S appuser -u 1001 -G appgroup + +WORKDIR /app + +# Copy package files +COPY package.json bun.lock ./ +RUN chown -R appuser:appgroup /app + +# Switch to non-root user +USER appuser + +# Install dependencies +RUN bun install --frozen-lockfile + +# Copy source code (as root to ensure proper permissions) +USER root +COPY . . +RUN chown -R appuser:appgroup /app +USER appuser + +# Build the application (skip postbuild which creates archives we don't need) +RUN ./node_modules/.bin/vite build + +# Production stage - use nginx for better performance +FROM nginx:alpine + +# Install security updates +RUN apk upgrade --no-cache + +# Copy built assets from builder stage +COPY --from=builder /app/dist /usr/share/nginx/html + +# Copy nginx configuration +COPY nginx.conf /etc/nginx/conf.d/default.conf + +# Expose port 80 +EXPOSE 80 + +# Health check +HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ + CMD wget --no-verbose --tries=1 --spider http://localhost:80/health || exit 1 + +# Start nginx +CMD ["nginx", "-g", "daemon off;"] diff --git a/README.md b/README.md index fa4f7fdd..89945a2a 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ -

Synmetrix

+

FraiOS Semantic Layer

-# Synmetrix Client +# FraiOS Semantic Layer Client -This is a client-side of the Synmetrix project! +This is a client-side of the FraiOS Semantic Layer project! ## Requirements Before using the client-side of the project, ensure that you have the following components installed: - **NodeJS:** Version 20.8.1 or higher. -- **Synmetrix Backend:** Ensure the [Synmetrix backend](https://github.com/mlcraft-io/mlcraft/) is properly set up and running. +- **FraiOS Backend:** Ensure the [FraiOS backend](https://github.com/smartdataHQ/synmetrix/) is properly set up and running. ## Installation To install the client-side of the project, follow these steps: ```bash -# Clone the Synmetrix Client repository -git clone https://github.com/mlcraft-io/client-v2 +# Clone the FraiOS Semantic Layer Client repository +git clone https://github.com/smartdataHQ/client-v2 # Navigate to the project directory cd client-v2 @@ -29,15 +29,15 @@ yarn yarn start ``` -After completing these steps, open your web browser and go to [](http://localhost:8000) to access the Synmetrix client. +After completing these steps, open your web browser and go to [](http://localhost:8000) to access the FraiOS Semantic Layer client. ## Usage -For detailed guidance on utilizing the Synmetrix client and exploring its features, please consult the [Synmetrix Documentation](https://docs.synmetrix.org/). +For detailed guidance on utilizing the FraiOS Semantic Layer client and exploring its features, please consult the [FraiOS Documentation](https://docs.fraios.com/). ## Storybook Integration -Explore the interactive UI components and functionalities of the Synmetrix client using Storybook. Storybook provides a convenient environment to showcase and test UI components in isolation. +Explore the interactive UI components and functionalities of the FraiOS Semantic Layer client using Storybook. Storybook provides a convenient environment to showcase and test UI components in isolation. To launch Storybook, use the following command: @@ -48,7 +48,7 @@ Once the command is executed, navigate to [](http://localhost:6007) ## Code Linting -Maintain code consistency and quality in the Synmetrix client by implementing linting. Follow these steps to configure linting in Visual Studio Code (VS Code): +Maintain code consistency and quality in the FraiOS Semantic Layer client by implementing linting. Follow these steps to configure linting in Visual Studio Code (VS Code): ### Requirements: @@ -85,7 +85,7 @@ For a detailed understanding of Conventional Commits, refer to the [Conventional ## Component Structure -In the Synmetrix project, components follow a consistent structure to enhance maintainability and organization. Each component typically consists of the following files: +In the FraiOS Semantic Layer project, components follow a consistent structure to enhance maintainability and organization. Each component typically consists of the following files: 1. **index.tsx:** The main file containing the component's implementation. This file includes the React component code. @@ -113,7 +113,7 @@ Here's an example directory structure for a component named `ExampleComponent`: ## Testing -Ensure the reliability and correctness of the Synmetrix client by utilizing testing functionalities powered by Vitest. Vitest provides a robust testing framework to validate the behavior of your components and functionalities. +Ensure the reliability and correctness of the FraiOS Semantic Layer client by utilizing testing functionalities powered by Vitest. Vitest provides a robust testing framework to validate the behavior of your components and functionalities. To run tests, use the following command: @@ -125,13 +125,13 @@ Executing this command will initiate the testing suite, allowing you to assess t ## Build -Efficiently build and package the Synmetrix client with the following commands: +Efficiently build and package the FraiOS Semantic Layer client with the following commands: - **Build the Client:** ```bash yarn build ``` - This command utilizes Vite to build the Synmetrix client. + This command utilizes Vite to build the FraiOS Semantic Layer client. - **Post-Build Tasks:** ```bash @@ -151,6 +151,6 @@ Efficiently build and package the Synmetrix client with the following commands: ``` This command previews the built client locally using Vite. -Incorporate these commands into your workflow to streamline the build process and prepare the Synmetrix client for deployment. +Incorporate these commands into your workflow to streamline the build process and prepare the FraiOS Semantic Layer client for deployment. \ No newline at end of file diff --git a/bun.lock b/bun.lock new file mode 100644 index 00000000..62e4d0aa --- /dev/null +++ b/bun.lock @@ -0,0 +1,8552 @@ +{ + "lockfileVersion": 1, + "configVersion": 0, + "workspaces": { + "": { + "name": "synmetrix-client", + "dependencies": { + "@ant-design/icons": "^5.1.4", + "@ant-design/pro-card": "^2.4.1", + "@ant-design/pro-layout": "^7.12.1", + "@apollo/client": "^3.7.12", + "@monaco-editor/react": "^4.5.2", + "@urql/exchange-auth": "^2.1.6", + "@urql/exchange-retry": "^1.2.0", + "@vitjs/runtime": "^0.9.2", + "ahooks": "^3.7.8", + "antd": "^5.13.1", + "apache-arrow": "^21.1.0", + "classnames": "^2.3.2", + "copy-to-clipboard": "^3.3.3", + "cronstrue": "^2.31.0", + "dayjs": "^1.11.10", + "dequal": "^2.0.3", + "graphql": "^16.6.0", + "graphql-ws": "^5.14.0", + "i18next": "^23.2.3", + "i18next-browser-languagedetector": "^7.1.0", + "i18next-http-backend": "^2.2.1", + "immer": "^10.0.2", + "js-yaml": "^4.1.0", + "jszip": "^3.10.1", + "jwt-decode": "^3.1.2", + "marked": "^10.0.0", + "md5": "^2.3.0", + "moment": "^2.29.4", + "monaco-editor": "^0.41.0", + "nanoid": "^4.0.2", + "prismjs": "^1.29.0", + "react": "^18.2.0", + "react-csv": "^2.2.2", + "react-custom-scrollbars": "^4.2.1", + "react-dom": "^18.2.0", + "react-fast-marquee": "^1.5.2", + "react-hook-form": "^7.45.1", + "react-i18next": "^13.0.1", + "react-querybuilder": "^8.14.0", + "react-resizable": "^3.0.5", + "react-responsive-masonry": "^2.1.7", + "react-responsive-modal": "^6.4.2", + "react-router-dom": "^6.15.0", + "react-table": "^7.8.0", + "react-virtualized": "^9.22.5", + "swiper": "^10.0.4", + "unchanged": "^2.2.1", + "urql": "^4.0.5", + "use-local-storage-state": "^19.1.0", + "yaml": "^2.3.4", + "zustand": "^4.4.1", + }, + "devDependencies": { + "@babel/core": "^7.21.3", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/client-preset": "^4.1.0", + "@graphql-codegen/introspection": "^4.0.0", + "@graphql-codegen/named-operations-object": "^3.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@graphql-codegen/typescript-operations": "^4.0.1", + "@graphql-codegen/typescript-urql": "^4.0.0", + "@honkhonk/vite-plugin-svgr": "^1.1.0", + "@semantic-release/commit-analyzer": "^11.1.0", + "@semantic-release/git": "^10.0.1", + "@semantic-release/github": "^9.2.6", + "@semantic-release/release-notes-generator": "^12.1.0", + "@storybook/addon-actions": "^7.4.5", + "@storybook/addon-essentials": "^7.4.5", + "@storybook/addon-interactions": "^7.4.5", + "@storybook/addon-links": "^7.4.5", + "@storybook/addon-mdx-gfm": "^7.4.5", + "@storybook/react": "^7.4.5", + "@storybook/react-vite": "^7.4.5", + "@storybook/testing-library": "^0.2.1", + "@svgx/vite-plugin-react": "^1.0.1", + "@testing-library/dom": "^9.3.3", + "@testing-library/jest-dom": "^6.1.4", + "@testing-library/react": "^14.1.0", + "@testing-library/user-event": "^14.5.1", + "@types/babel__core": "^7.20.0", + "@types/classnames": "^2.3.0", + "@types/md5": "^2.3.4", + "@types/node": "^18.16.0", + "@types/prismjs": "^1.26.1", + "@types/react": "^18.2.0", + "@types/react-csv": "^1.1.6", + "@types/react-custom-scrollbars": "^4.0.13", + "@types/react-dom": "^18.2.0", + "@types/react-resizable": "^3.0.6", + "@types/react-responsive-masonry": "^2.1.3", + "@types/react-table": "^7.7.15", + "@types/react-virtualized": "^9.21.22", + "@typescript-eslint/eslint-plugin": "^5.59.1", + "@typescript-eslint/parser": "^5.59.1", + "@umijs/fabric": "^2.14.1", + "@vitejs/plugin-react": "^5.2.0", + "@vitjs/vit": "^0.9.1", + "babel-loader": "^9.1.2", + "eslint": "^8.39.0", + "eslint-config-prettier": "^8.7.0", + "eslint-import-resolver-typescript": "^3.5.5", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jest": "^27.2.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-storybook": "^0.6.14", + "eslint-plugin-unicorn": "^46.0.0", + "graphqurl": "^1.0.1", + "husky": ">=8", + "jsdom": "^22.1.0", + "less": "^4.1.3", + "lint-staged": ">=13", + "rollup-plugin-copy": "^3.5.0", + "rollup-plugin-visualizer": "^5.9.0", + "semantic-release": "^23.0.0", + "storybook": "^7.4.5", + "typescript": "^5.0.4", + "unplugin-auto-import": "^0.15.3", + "vite": "^8.0.0", + "vite-plugin-imp": "^2.4.0", + "vite-plugin-monaco-editor": "^1.1.0", + "vite-plugin-rewrite-all": "^1.0.1", + "vite-plugin-svg-loader": "^1.0.0", + "vite-plugin-windicss": "^1.8.10", + "vitest": "^0.34.6", + "windicss": "^3.5.6", + }, + }, + }, + "packages": { + "@0no-co/graphql.web": ["@0no-co/graphql.web@1.0.4", "", {}, "sha512-W3ezhHGfO0MS1PtGloaTpg0PbaT8aZSmmaerL7idtU5F7oCI+uu25k+MsMS31BVFlp4aMkHSrNRxiD72IlK8TA=="], + + "@adobe/css-tools": ["@adobe/css-tools@4.3.1", "", {}, "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg=="], + + "@ampproject/remapping": ["@ampproject/remapping@https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" } }], + + "@ant-design/colors": ["@ant-design/colors@https://registry.npmjs.org/@ant-design/colors/-/colors-7.0.0.tgz", { "dependencies": { "@ctrl/tinycolor": "^3.4.0" } }], + + "@ant-design/cssinjs": ["@ant-design/cssinjs@1.18.2", "", { "dependencies": { "@babel/runtime": "^7.11.1", "@emotion/hash": "^0.8.0", "@emotion/unitless": "^0.7.5", "classnames": "^2.3.1", "csstype": "^3.1.3", "rc-util": "^5.35.0", "stylis": "^4.0.13" } }, "sha512-514V9rjLaFYb3v4s55/8bg2E6fb81b99s3crDZf4nSwtiDLLXs8axnIph+q2TVkY2hbJPZOn/cVsVcnLkzFy7w=="], + + "@ant-design/icons": ["@ant-design/icons@5.1.4", "", { "dependencies": { "@ant-design/colors": "^7.0.0", "@ant-design/icons-svg": "^4.2.1", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", "rc-util": "^5.31.1" } }, "sha512-YHKL7Jx3bM12OxvtiYDon04BsBT/6LGitYEqar3GljzWaAyMOAD8i/uF1Rsi5Us/YNdWWXBGSvZV2OZWMpJlcA=="], + + "@ant-design/icons-svg": ["@ant-design/icons-svg@https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz", {}], + + "@ant-design/pro-card": ["@ant-design/pro-card@https://registry.npmjs.org/@ant-design/pro-card/-/pro-card-2.4.1.tgz", { "dependencies": { "@ant-design/icons": "^5.0.0", "@ant-design/pro-provider": "^2.8.1", "@ant-design/pro-utils": "^2.8.1", "@babel/runtime": "^7.18.0", "classnames": "^2.2.6", "omit.js": "^2.0.2", "rc-resize-observer": "^1.0.0", "rc-util": "^5.4.0" } }], + + "@ant-design/pro-layout": ["@ant-design/pro-layout@https://registry.npmjs.org/@ant-design/pro-layout/-/pro-layout-7.12.1.tgz", { "dependencies": { "@ant-design/icons": "^5.0.0", "@ant-design/pro-provider": "^2.8.1", "@ant-design/pro-utils": "^2.8.1", "@babel/runtime": "^7.18.0", "@umijs/route-utils": "^4.0.0", "@umijs/use-params": "^1.0.9", "classnames": "^2.2.6", "lodash.merge": "^4.6.2", "omit.js": "^2.0.2", "path-to-regexp": "2.4.0", "rc-resize-observer": "^1.1.0", "rc-util": "^5.0.6", "swr": "^2.0.0", "use-json-comparison": "^1.0.3", "use-media-antd-query": "^1.1.0", "warning": "^4.0.3" } }], + + "@ant-design/pro-provider": ["@ant-design/pro-provider@https://registry.npmjs.org/@ant-design/pro-provider/-/pro-provider-2.8.1.tgz", { "dependencies": { "@ant-design/cssinjs": "^1.9.1", "@babel/runtime": "^7.18.0", "@ctrl/tinycolor": "^3.4.0", "rc-util": "^5.0.1", "swr": "^2.0.0" } }], + + "@ant-design/pro-utils": ["@ant-design/pro-utils@https://registry.npmjs.org/@ant-design/pro-utils/-/pro-utils-2.8.1.tgz", { "dependencies": { "@ant-design/icons": "^5.0.0", "@ant-design/pro-provider": "^2.8.1", "@babel/runtime": "^7.18.0", "classnames": "^2.2.6", "dayjs": "^1.11.4", "rc-util": "^5.0.6", "react-sortable-hoc": "^2.0.0", "swr": "^2.0.0" } }], + + "@ant-design/react-slick": ["@ant-design/react-slick@1.0.2", "", { "dependencies": { "@babel/runtime": "^7.10.4", "classnames": "^2.2.5", "json2mq": "^0.2.0", "resize-observer-polyfill": "^1.5.1", "throttle-debounce": "^5.0.0" } }, "sha512-Wj8onxL/T8KQLFFiCA4t8eIRGpRR+UPgOdac2sYzonv+i0n3kXHmvHLLiOYL655DQx2Umii9Y9nNgL7ssu5haQ=="], + + "@antfu/utils": ["@antfu/utils@https://registry.npmjs.org/@antfu/utils/-/utils-0.7.2.tgz", {}], + + "@apollo/client": ["@apollo/client@3.8.1", "", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "@wry/context": "^0.7.3", "@wry/equality": "^0.5.6", "@wry/trie": "^0.4.3", "graphql-tag": "^2.12.6", "hoist-non-react-statics": "^3.3.2", "optimism": "^0.17.5", "prop-types": "^15.7.2", "response-iterator": "^0.2.6", "symbol-observable": "^4.0.0", "ts-invariant": "^0.10.3", "tslib": "^2.3.0", "zen-observable-ts": "^1.2.5" } }, "sha512-JGGj/9bdoLEqzatRikDeN8etseY5qeFAY0vSAx/Pd0ePNsaflKzHx6V2NZ0NsGkInq+9IXXX3RLVDf0EotizMA=="], + + "@ardatan/relay-compiler": ["@ardatan/relay-compiler@https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz", { "dependencies": { "@babel/core": "^7.14.0", "@babel/generator": "^7.14.0", "@babel/parser": "^7.14.0", "@babel/runtime": "^7.0.0", "@babel/traverse": "^7.14.0", "@babel/types": "^7.0.0", "babel-preset-fbjs": "^3.4.0", "chalk": "^4.0.0", "fb-watchman": "^2.0.0", "fbjs": "^3.0.0", "glob": "^7.1.1", "immutable": "~3.7.6", "invariant": "^2.2.4", "nullthrows": "^1.1.1", "relay-runtime": "12.0.0", "signedsource": "^1.0.0", "yargs": "^15.3.1" } }], + + "@ardatan/sync-fetch": ["@ardatan/sync-fetch@https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz", { "dependencies": { "node-fetch": "^2.6.1" } }], + + "@aw-web-design/x-default-browser": ["@aw-web-design/x-default-browser@1.4.126", "", { "dependencies": { "default-browser-id": "3.0.0" } }, "sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug=="], + + "@babel/code-frame": ["@babel/code-frame@https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", { "dependencies": { "@babel/highlight": "^7.18.6" } }], + + "@babel/compat-data": ["@babel/compat-data@https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz", {}], + + "@babel/core": ["@babel/core@https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.21.4", "@babel/generator": "^7.21.4", "@babel/helper-compilation-targets": "^7.21.4", "@babel/helper-module-transforms": "^7.21.2", "@babel/helpers": "^7.21.0", "@babel/parser": "^7.21.4", "@babel/template": "^7.20.7", "@babel/traverse": "^7.21.4", "@babel/types": "^7.21.4", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.2", "semver": "^6.3.0" } }], + + "@babel/eslint-parser": ["@babel/eslint-parser@https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz", { "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", "semver": "^6.3.0" } }], + + "@babel/generator": ["@babel/generator@https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", { "dependencies": { "@babel/types": "^7.21.4", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" } }], + + "@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", { "dependencies": { "@babel/types": "^7.18.6" } }], + + "@babel/helper-builder-binary-assignment-operator-visitor": ["@babel/helper-builder-binary-assignment-operator-visitor@https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", { "dependencies": { "@babel/helper-explode-assignable-expression": "^7.18.6", "@babel/types": "^7.18.9" } }], + + "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz", { "dependencies": { "@babel/compat-data": "^7.21.4", "@babel/helper-validator-option": "^7.21.0", "browserslist": "^4.21.3", "lru-cache": "^5.1.1", "semver": "^6.3.0" } }], + + "@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.21.0", "@babel/helper-member-expression-to-functions": "^7.21.0", "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/helper-replace-supers": "^7.20.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/helper-split-export-declaration": "^7.18.6" } }], + + "@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.4.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "regexpu-core": "^5.3.1" } }], + + "@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", { "dependencies": { "@babel/helper-compilation-targets": "^7.17.7", "@babel/helper-plugin-utils": "^7.16.7", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2", "semver": "^6.1.2" } }], + + "@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", {}], + + "@babel/helper-explode-assignable-expression": ["@babel/helper-explode-assignable-expression@https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", { "dependencies": { "@babel/types": "^7.18.6" } }], + + "@babel/helper-function-name": ["@babel/helper-function-name@https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", { "dependencies": { "@babel/template": "^7.20.7", "@babel/types": "^7.21.0" } }], + + "@babel/helper-globals": ["@babel/helper-globals@7.28.0", "", {}, "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw=="], + + "@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", { "dependencies": { "@babel/types": "^7.18.6" } }], + + "@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz", { "dependencies": { "@babel/types": "^7.21.0" } }], + + "@babel/helper-module-imports": ["@babel/helper-module-imports@https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", { "dependencies": { "@babel/types": "^7.21.4" } }], + + "@babel/helper-module-transforms": ["@babel/helper-module-transforms@https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", { "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.19.1", "@babel/template": "^7.20.7", "@babel/traverse": "^7.21.2", "@babel/types": "^7.21.2" } }], + + "@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", { "dependencies": { "@babel/types": "^7.18.6" } }], + + "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", {}], + + "@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-wrap-function": "^7.18.9", "@babel/types": "^7.18.9" } }], + + "@babel/helper-replace-supers": ["@babel/helper-replace-supers@https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", { "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/template": "^7.20.7", "@babel/traverse": "^7.20.7", "@babel/types": "^7.20.7" } }], + + "@babel/helper-simple-access": ["@babel/helper-simple-access@https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", { "dependencies": { "@babel/types": "^7.20.2" } }], + + "@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", { "dependencies": { "@babel/types": "^7.20.0" } }], + + "@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", { "dependencies": { "@babel/types": "^7.18.6" } }], + + "@babel/helper-string-parser": ["@babel/helper-string-parser@https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", {}], + + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", {}], + + "@babel/helper-validator-option": ["@babel/helper-validator-option@https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", {}], + + "@babel/helper-wrap-function": ["@babel/helper-wrap-function@https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", { "dependencies": { "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", "@babel/traverse": "^7.20.5", "@babel/types": "^7.20.5" } }], + + "@babel/helpers": ["@babel/helpers@https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", { "dependencies": { "@babel/template": "^7.20.7", "@babel/traverse": "^7.21.0", "@babel/types": "^7.21.0" } }], + + "@babel/highlight": ["@babel/highlight@https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", { "dependencies": { "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }], + + "@babel/parser": ["@babel/parser@https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz", {}], + + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-proposal-optional-chaining": "^7.20.7" } }], + + "@babel/plugin-proposal-async-generator-functions": ["@babel/plugin-proposal-async-generator-functions@https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", { "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-remap-async-to-generator": "^7.18.9", "@babel/plugin-syntax-async-generators": "^7.8.4" } }], + + "@babel/plugin-proposal-class-properties": ["@babel/plugin-proposal-class-properties@https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-proposal-class-static-block": ["@babel/plugin-proposal-class-static-block@https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.21.0", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-class-static-block": "^7.14.5" } }], + + "@babel/plugin-proposal-decorators": ["@babel/plugin-proposal-decorators@https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.21.0", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-replace-supers": "^7.20.7", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/plugin-syntax-decorators": "^7.21.0" } }], + + "@babel/plugin-proposal-dynamic-import": ["@babel/plugin-proposal-dynamic-import@https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }], + + "@babel/plugin-proposal-export-namespace-from": ["@babel/plugin-proposal-export-namespace-from@https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }], + + "@babel/plugin-proposal-json-strings": ["@babel/plugin-proposal-json-strings@https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-json-strings": "^7.8.3" } }], + + "@babel/plugin-proposal-logical-assignment-operators": ["@babel/plugin-proposal-logical-assignment-operators@https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }], + + "@babel/plugin-proposal-nullish-coalescing-operator": ["@babel/plugin-proposal-nullish-coalescing-operator@https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" } }], + + "@babel/plugin-proposal-numeric-separator": ["@babel/plugin-proposal-numeric-separator@https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" } }], + + "@babel/plugin-proposal-object-rest-spread": ["@babel/plugin-proposal-object-rest-spread@https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", { "dependencies": { "@babel/compat-data": "^7.20.5", "@babel/helper-compilation-targets": "^7.20.7", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-transform-parameters": "^7.20.7" } }], + + "@babel/plugin-proposal-optional-catch-binding": ["@babel/plugin-proposal-optional-catch-binding@https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" } }], + + "@babel/plugin-proposal-optional-chaining": ["@babel/plugin-proposal-optional-chaining@https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }], + + "@babel/plugin-proposal-private-methods": ["@babel/plugin-proposal-private-methods@https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-proposal-private-property-in-object": ["@babel/plugin-proposal-private-property-in-object@https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.21.0", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }], + + "@babel/plugin-proposal-unicode-property-regex": ["@babel/plugin-proposal-unicode-property-regex@https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-syntax-async-generators": ["@babel/plugin-syntax-async-generators@https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-class-properties": ["@babel/plugin-syntax-class-properties@https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" } }], + + "@babel/plugin-syntax-class-static-block": ["@babel/plugin-syntax-class-static-block@https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" } }], + + "@babel/plugin-syntax-decorators": ["@babel/plugin-syntax-decorators@https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-syntax-dynamic-import": ["@babel/plugin-syntax-dynamic-import@https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-export-namespace-from": ["@babel/plugin-syntax-export-namespace-from@https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" } }], + + "@babel/plugin-syntax-flow": ["@babel/plugin-syntax-flow@https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.19.0" } }], + + "@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg=="], + + "@babel/plugin-syntax-import-meta": ["@babel/plugin-syntax-import-meta@7.10.4", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" } }, "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="], + + "@babel/plugin-syntax-json-strings": ["@babel/plugin-syntax-json-strings@https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-syntax-logical-assignment-operators": ["@babel/plugin-syntax-logical-assignment-operators@https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" } }], + + "@babel/plugin-syntax-nullish-coalescing-operator": ["@babel/plugin-syntax-nullish-coalescing-operator@https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-numeric-separator": ["@babel/plugin-syntax-numeric-separator@https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" } }], + + "@babel/plugin-syntax-object-rest-spread": ["@babel/plugin-syntax-object-rest-spread@https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-optional-catch-binding": ["@babel/plugin-syntax-optional-catch-binding@https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-optional-chaining": ["@babel/plugin-syntax-optional-chaining@https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" } }], + + "@babel/plugin-syntax-private-property-in-object": ["@babel/plugin-syntax-private-property-in-object@https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" } }], + + "@babel/plugin-syntax-top-level-await": ["@babel/plugin-syntax-top-level-await@https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" } }], + + "@babel/plugin-syntax-typescript": ["@babel/plugin-syntax-typescript@https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-syntax-unicode-sets-regex": ["@babel/plugin-syntax-unicode-sets-regex@7.18.6", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }, "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg=="], + + "@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.22.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-remap-async-to-generator": "^7.22.5", "@babel/plugin-syntax-async-generators": "^7.8.4" } }, "sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg=="], + + "@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", { "dependencies": { "@babel/helper-module-imports": "^7.18.6", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-remap-async-to-generator": "^7.18.9" } }], + + "@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.22.5", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ=="], + + "@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.22.5", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-class-static-block": "^7.14.5" } }, "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA=="], + + "@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-compilation-targets": "^7.20.7", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.21.0", "@babel/helper-optimise-call-expression": "^7.18.6", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-replace-supers": "^7.20.7", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } }], + + "@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/template": "^7.20.7" } }], + + "@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" } }], + + "@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }, "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ=="], + + "@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", { "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg=="], + + "@babel/plugin-transform-flow-strip-types": ["@babel/plugin-transform-flow-strip-types@https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }], + + "@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", { "dependencies": { "@babel/helper-compilation-targets": "^7.18.9", "@babel/helper-function-name": "^7.18.9", "@babel/helper-plugin-utils": "^7.18.9" } }], + + "@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-json-strings": "^7.8.3" } }, "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A=="], + + "@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" } }], + + "@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA=="], + + "@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", { "dependencies": { "@babel/helper-module-transforms": "^7.20.11", "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz", { "dependencies": { "@babel/helper-module-transforms": "^7.21.2", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-simple-access": "^7.20.2" } }], + + "@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", { "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-module-transforms": "^7.20.11", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-identifier": "^7.19.1" } }], + + "@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", { "dependencies": { "@babel/helper-module-transforms": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.20.5", "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" } }, "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA=="], + + "@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-numeric-separator": "^7.10.4" } }, "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g=="], + + "@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.22.5", "", { "dependencies": { "@babel/compat-data": "^7.22.5", "@babel/helper-compilation-targets": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-transform-parameters": "^7.22.5" } }, "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ=="], + + "@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-replace-supers": "^7.18.6" } }], + + "@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" } }, "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg=="], + + "@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.22.6", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, "sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg=="], + + "@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.22.5", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA=="], + + "@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.22.5", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-create-class-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }, "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ=="], + + "@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-react-display-name": ["@babel/plugin-transform-react-display-name@https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-react-jsx": ["@babel/plugin-transform-react-jsx@https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.0.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-jsx": "^7.18.6", "@babel/types": "^7.21.0" } }], + + "@babel/plugin-transform-react-jsx-development": ["@babel/plugin-transform-react-jsx-development@https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", { "dependencies": { "@babel/plugin-transform-react-jsx": "^7.18.6" } }], + + "@babel/plugin-transform-react-jsx-self": ["@babel/plugin-transform-react-jsx-self@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw=="], + + "@babel/plugin-transform-react-jsx-source": ["@babel/plugin-transform-react-jsx-source@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw=="], + + "@babel/plugin-transform-react-pure-annotations": ["@babel/plugin-transform-react-pure-annotations@https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "regenerator-transform": "^0.15.1" } }], + + "@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" } }], + + "@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" } }], + + "@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" } }], + + "@babel/plugin-transform-typescript": ["@babel/plugin-transform-typescript@https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.21.0", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-typescript": "^7.20.0" } }], + + "@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" } }], + + "@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A=="], + + "@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" } }], + + "@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg=="], + + "@babel/preset-env": ["@babel/preset-env@https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.4.tgz", { "dependencies": { "@babel/compat-data": "^7.21.4", "@babel/helper-compilation-targets": "^7.21.4", "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-option": "^7.21.0", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", "@babel/plugin-proposal-async-generator-functions": "^7.20.7", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.21.0", "@babel/plugin-proposal-dynamic-import": "^7.18.6", "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@babel/plugin-proposal-json-strings": "^7.18.6", "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", "@babel/plugin-proposal-optional-chaining": "^7.21.0", "@babel/plugin-proposal-private-methods": "^7.18.6", "@babel/plugin-proposal-private-property-in-object": "^7.21.0", "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-transform-arrow-functions": "^7.20.7", "@babel/plugin-transform-async-to-generator": "^7.20.7", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", "@babel/plugin-transform-block-scoping": "^7.21.0", "@babel/plugin-transform-classes": "^7.21.0", "@babel/plugin-transform-computed-properties": "^7.20.7", "@babel/plugin-transform-destructuring": "^7.21.3", "@babel/plugin-transform-dotall-regex": "^7.18.6", "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", "@babel/plugin-transform-for-of": "^7.21.0", "@babel/plugin-transform-function-name": "^7.18.9", "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", "@babel/plugin-transform-modules-amd": "^7.20.11", "@babel/plugin-transform-modules-commonjs": "^7.21.2", "@babel/plugin-transform-modules-systemjs": "^7.20.11", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", "@babel/plugin-transform-parameters": "^7.21.3", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.20.5", "@babel/plugin-transform-reserved-words": "^7.18.6", "@babel/plugin-transform-shorthand-properties": "^7.18.6", "@babel/plugin-transform-spread": "^7.20.7", "@babel/plugin-transform-sticky-regex": "^7.18.6", "@babel/plugin-transform-template-literals": "^7.18.9", "@babel/plugin-transform-typeof-symbol": "^7.18.9", "@babel/plugin-transform-unicode-escapes": "^7.18.10", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", "@babel/types": "^7.21.4", "babel-plugin-polyfill-corejs2": "^0.3.3", "babel-plugin-polyfill-corejs3": "^0.6.0", "babel-plugin-polyfill-regenerator": "^0.4.1", "core-js-compat": "^3.25.1", "semver": "^6.3.0" } }], + + "@babel/preset-flow": ["@babel/preset-flow@https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.21.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-option": "^7.21.0", "@babel/plugin-transform-flow-strip-types": "^7.21.0" } }], + + "@babel/preset-modules": ["@babel/preset-modules@https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" } }], + + "@babel/preset-react": ["@babel/preset-react@https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-transform-react-display-name": "^7.18.6", "@babel/plugin-transform-react-jsx": "^7.18.6", "@babel/plugin-transform-react-jsx-development": "^7.18.6", "@babel/plugin-transform-react-pure-annotations": "^7.18.6" } }], + + "@babel/preset-typescript": ["@babel/preset-typescript@https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.4.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-option": "^7.21.0", "@babel/plugin-syntax-jsx": "^7.21.4", "@babel/plugin-transform-modules-commonjs": "^7.21.2", "@babel/plugin-transform-typescript": "^7.21.3" } }], + + "@babel/register": ["@babel/register@https://registry.npmjs.org/@babel/register/-/register-7.21.0.tgz", { "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", "make-dir": "^2.1.0", "pirates": "^4.0.5", "source-map-support": "^0.5.16" } }], + + "@babel/regjsgen": ["@babel/regjsgen@https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", {}], + + "@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "@babel/template": ["@babel/template@https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", { "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7" } }], + + "@babel/traverse": ["@babel/traverse@https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz", { "dependencies": { "@babel/code-frame": "^7.21.4", "@babel/generator": "^7.21.4", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.21.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/parser": "^7.21.4", "@babel/types": "^7.21.4", "debug": "^4.1.0", "globals": "^11.1.0" } }], + + "@babel/types": ["@babel/types@https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz", { "dependencies": { "@babel/helper-string-parser": "^7.19.4", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } }], + + "@base2/pretty-print-object": ["@base2/pretty-print-object@https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz", {}], + + "@bcoe/v8-coverage": ["@bcoe/v8-coverage@https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", {}], + + "@bedrock-layout/use-forwarded-ref": ["@bedrock-layout/use-forwarded-ref@1.6.1", "", { "dependencies": { "@bedrock-layout/use-stateful-ref": "^1.4.1" } }, "sha512-GD9A9AFLzFNjr7k6fgerSqxfwDWl+wsPS11PErOKe1zkVz0y7RGC9gzlOiX/JrgpyB3NFHWIuGtoOQqifJQQpw=="], + + "@bedrock-layout/use-stateful-ref": ["@bedrock-layout/use-stateful-ref@1.4.1", "", {}, "sha512-4eKO2KdQEXcR5LI4QcxqlJykJUDQJWDeWYAukIn6sRQYoabcfI5kDl61PUi6FR6o8VFgQ8IEP7HleKqWlSe8SQ=="], + + "@colors/colors": ["@colors/colors@https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", {}], + + "@cronvel/get-pixels": ["@cronvel/get-pixels@https://registry.npmjs.org/@cronvel/get-pixels/-/get-pixels-3.4.1.tgz", { "dependencies": { "jpeg-js": "^0.4.4", "ndarray": "^1.0.19", "ndarray-pack": "^1.1.1", "node-bitmap": "0.0.1", "omggif": "^1.0.10", "pngjs": "^6.0.0" } }], + + "@ctrl/tinycolor": ["@ctrl/tinycolor@3.6.1", "", {}, "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA=="], + + "@discoveryjs/json-ext": ["@discoveryjs/json-ext@https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", {}], + + "@emnapi/core": ["@emnapi/core@1.9.0", "", { "dependencies": { "@emnapi/wasi-threads": "1.2.0", "tslib": "^2.4.0" } }, "sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w=="], + + "@emnapi/runtime": ["@emnapi/runtime@1.9.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw=="], + + "@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.2.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg=="], + + "@emotion/hash": ["@emotion/hash@https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", {}], + + "@emotion/unitless": ["@emotion/unitless@https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", {}], + + "@emotion/use-insertion-effect-with-fallbacks": ["@emotion/use-insertion-effect-with-fallbacks@https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz", {}], + + "@esbuild/android-arm": ["@esbuild/android-arm@0.18.16", "", {}, "sha512-gCHjjQmA8L0soklKbLKA6pgsLk1byULuHe94lkZDzcO3/Ta+bbeewJioEn1Fr7kgy9NWNFy/C+MrBwC6I/WCug=="], + + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.18.16", "", {}, "sha512-wsCqSPqLz+6Ov+OM4EthU43DyYVVyfn15S4j1bJzylDpc1r1jZFFfJQNfDuT8SlgwuqpmpJXK4uPlHGw6ve7eA=="], + + "@esbuild/android-x64": ["@esbuild/android-x64@0.18.16", "", {}, "sha512-ldsTXolyA3eTQ1//4DS+E15xl0H/3DTRJaRL0/0PgkqDsI0fV/FlOtD+h0u/AUJr+eOTlZv4aC9gvfppo3C4sw=="], + + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.18.16", "", {}, "sha512-aBxruWCII+OtluORR/KvisEw0ALuw/qDQWvkoosA+c/ngC/Kwk0lLaZ+B++LLS481/VdydB2u6tYpWxUfnLAIw=="], + + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.18.16", "", {}, "sha512-6w4Dbue280+rp3LnkgmriS1icOUZDyPuZo/9VsuMUTns7SYEiOaJ7Ca1cbhu9KVObAWfmdjUl4gwy9TIgiO5eA=="], + + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.18.16", "", {}, "sha512-x35fCebhe9s979DGKbVAwXUOcTmCIE32AIqB9CB1GralMIvxdnMLAw5CnID17ipEw9/3MvDsusj/cspYt2ZLNQ=="], + + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.18.16", "", {}, "sha512-YM98f+PeNXF3GbxIJlUsj+McUWG1irguBHkszCIwfr3BXtXZsXo0vqybjUDFfu9a8Wr7uUD/YSmHib+EeGAFlg=="], + + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.18.16", "", {}, "sha512-b5ABb+5Ha2C9JkeZXV+b+OruR1tJ33ePmv9ZwMeETSEKlmu/WJ45XTTG+l6a2KDsQtJJ66qo/hbSGBtk0XVLHw=="], + + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.18.16", "", {}, "sha512-XIqhNUxJiuy+zsR77+H5Z2f7s4YRlriSJKtvx99nJuG5ATuJPjmZ9n0ANgnGlPCpXGSReFpgcJ7O3SMtzIFeiQ=="], + + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.18.16", "", {}, "sha512-no+pfEpwnRvIyH+txbBAWtjxPU9grslmTBfsmDndj7bnBmr55rOo/PfQmRfz7Qg9isswt1FP5hBbWb23fRWnow=="], + + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.18.16", "", {}, "sha512-Zbnczs9ZXjmo0oZSS0zbNlJbcwKXa/fcNhYQjahDs4Xg18UumpXG/lwM2lcSvHS3mTrRyCYZvJbmzYc4laRI1g=="], + + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.18.16", "", {}, "sha512-YMF7hih1HVR/hQVa/ot4UVffc5ZlrzEb3k2ip0nZr1w6fnYypll9td2qcoMLvd3o8j3y6EbJM3MyIcXIVzXvQQ=="], + + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.18.16", "", {}, "sha512-Wkz++LZ29lDwUyTSEnzDaaP5OveOgTU69q9IyIw9WqLRxM4BjTBjz9un4G6TOvehWpf/J3gYVFN96TjGHrbcNQ=="], + + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.18.16", "", {}, "sha512-LFMKZ30tk78/mUv1ygvIP+568bwf4oN6reG/uczXnz6SvFn4e2QUFpUpZY9iSJT6Qpgstrhef/nMykIXZtZWGQ=="], + + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.18.16", "", {}, "sha512-3ZC0BgyYHYKfZo3AV2/66TD/I9tlSBaW7eWTEIkrQQKfJIifKMMttXl9FrAg+UT0SGYsCRLI35Gwdmm96vlOjg=="], + + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.18.16", "", {}, "sha512-xu86B3647DihHJHv/wx3NCz2Dg1gjQ8bbf9cVYZzWKY+gsvxYmn/lnVlqDRazObc3UMwoHpUhNYaZset4X8IPA=="], + + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.18.16", "", {}, "sha512-uVAgpimx9Ffw3xowtg/7qQPwHFx94yCje+DoBx+LNm2ePDpQXHrzE+Sb0Si2VBObYz+LcRps15cq+95YM7gkUw=="], + + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.18.16", "", {}, "sha512-6OjCQM9wf7z8/MBi6BOWaTL2AS/SZudsZtBziXMtNI8r/U41AxS9x7jn0ATOwVy08OotwkPqGRMkpPR2wcTJXA=="], + + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.18.16", "", {}, "sha512-ZoNkruFYJp9d1LbUYCh8awgQDvB9uOMZqlQ+gGEZR7v6C+N6u7vPr86c+Chih8niBR81Q/bHOSKGBK3brJyvkQ=="], + + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.18.16", "", {}, "sha512-+j4anzQ9hrs+iqO+/wa8UE6TVkKua1pXUb0XWFOx0FiAj6R9INJ+WE//1/Xo6FG1vB5EpH3ko+XcgwiDXTxcdw=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.18.16", "", {}, "sha512-5PFPmq3sSKTp9cT9dzvI67WNfRZGvEVctcZa1KGjDDu4n3H8k59Inbk0du1fz0KrAbKKNpJbdFXQMDUz7BG4rQ=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.18.16", "", {}, "sha512-sCIVrrtcWN5Ua7jYXNG1xD199IalrbfV2+0k/2Zf2OyV2FtnQnMgdzgpRAbi4AWlKJj1jkX+M+fEGPQj6BQB4w=="], + + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", { "dependencies": { "eslint-visitor-keys": "^3.3.0" } }], + + "@eslint-community/regexpp": ["@eslint-community/regexpp@https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz", {}], + + "@eslint/eslintrc": ["@eslint/eslintrc@https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.5.2", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }], + + "@eslint/js": ["@eslint/js@https://registry.npmjs.org/@eslint/js/-/js-8.40.0.tgz", {}], + + "@fal-works/esbuild-plugin-global-externals": ["@fal-works/esbuild-plugin-global-externals@https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", {}], + + "@floating-ui/core": ["@floating-ui/core@1.4.1", "", { "dependencies": { "@floating-ui/utils": "^0.1.1" } }, "sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ=="], + + "@floating-ui/dom": ["@floating-ui/dom@1.5.1", "", { "dependencies": { "@floating-ui/core": "^1.4.1", "@floating-ui/utils": "^0.1.1" } }, "sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw=="], + + "@floating-ui/react-dom": ["@floating-ui/react-dom@2.0.1", "", { "dependencies": { "@floating-ui/dom": "^1.3.0" } }, "sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA=="], + + "@floating-ui/utils": ["@floating-ui/utils@0.1.1", "", {}, "sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw=="], + + "@graphql-codegen/add": ["@graphql-codegen/add@5.0.0", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "tslib": "~2.5.0" } }, "sha512-ynWDOsK2yxtFHwcJTB9shoSkUd7YXd6ZE57f0nk7W5cu/nAgxZZpEsnTPEpZB/Mjf14YRGe2uJHQ7AfElHjqUQ=="], + + "@graphql-codegen/cli": ["@graphql-codegen/cli@5.0.0", "", { "dependencies": { "@babel/generator": "^7.18.13", "@babel/template": "^7.18.10", "@babel/types": "^7.18.13", "@graphql-codegen/core": "^4.0.0", "@graphql-codegen/plugin-helpers": "^5.0.1", "@graphql-tools/apollo-engine-loader": "^8.0.0", "@graphql-tools/code-file-loader": "^8.0.0", "@graphql-tools/git-loader": "^8.0.0", "@graphql-tools/github-loader": "^8.0.0", "@graphql-tools/graphql-file-loader": "^8.0.0", "@graphql-tools/json-file-loader": "^8.0.0", "@graphql-tools/load": "^8.0.0", "@graphql-tools/prisma-loader": "^8.0.0", "@graphql-tools/url-loader": "^8.0.0", "@graphql-tools/utils": "^10.0.0", "@whatwg-node/fetch": "^0.8.0", "chalk": "^4.1.0", "cosmiconfig": "^8.1.3", "debounce": "^1.2.0", "detect-indent": "^6.0.0", "graphql-config": "^5.0.2", "inquirer": "^8.0.0", "is-glob": "^4.0.1", "jiti": "^1.17.1", "json-to-pretty-yaml": "^1.2.2", "listr2": "^4.0.5", "log-symbols": "^4.0.0", "micromatch": "^4.0.5", "shell-quote": "^1.7.3", "string-env-interpolation": "^1.0.1", "ts-log": "^2.2.3", "tslib": "^2.4.0", "yaml": "^2.3.1", "yargs": "^17.0.0" } }, "sha512-A7J7+be/a6e+/ul2KI5sfJlpoqeqwX8EzktaKCeduyVKgOLA6W5t+NUGf6QumBDXU8PEOqXk3o3F+RAwCWOiqA=="], + + "@graphql-codegen/client-preset": ["@graphql-codegen/client-preset@4.1.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/template": "^7.20.7", "@graphql-codegen/add": "^5.0.0", "@graphql-codegen/gql-tag-operations": "4.0.1", "@graphql-codegen/plugin-helpers": "^5.0.1", "@graphql-codegen/typed-document-node": "^5.0.1", "@graphql-codegen/typescript": "^4.0.1", "@graphql-codegen/typescript-operations": "^4.0.1", "@graphql-codegen/visitor-plugin-common": "^4.0.1", "@graphql-tools/documents": "^1.0.0", "@graphql-tools/utils": "^10.0.0", "@graphql-typed-document-node/core": "3.2.0", "tslib": "~2.5.0" } }, "sha512-/3Ymb/fjxIF1+HGmaI1YwSZbWsrZAWMSQjh3dU425eBjctjsVQ6gzGRr+l/gE5F1mtmCf+vlbTAT03heAc/QIw=="], + + "@graphql-codegen/core": ["@graphql-codegen/core@4.0.0", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-tools/schema": "^10.0.0", "@graphql-tools/utils": "^10.0.0", "tslib": "~2.5.0" } }, "sha512-JAGRn49lEtSsZVxeIlFVIRxts2lWObR+OQo7V2LHDJ7ohYYw3ilv7nJ8pf8P4GTg/w6ptcYdSdVVdkI8kUHB/Q=="], + + "@graphql-codegen/gql-tag-operations": ["@graphql-codegen/gql-tag-operations@4.0.1", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "@graphql-tools/utils": "^10.0.0", "auto-bind": "~4.0.0", "tslib": "~2.5.0" } }, "sha512-qF6wIbBzW8BNT+wiVsBxrYOs2oYcsxQ7mRvCpfEI3HnNZMAST/uX76W8MqFEJvj4mw7NIDv7xYJAcAZIWM5LWw=="], + + "@graphql-codegen/introspection": ["@graphql-codegen/introspection@4.0.0", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "^4.0.0", "tslib": "~2.5.0" } }, "sha512-t9g3AkK99dfHblMWtG4ynUM9+A7JrWq5110zSpNV2wlSnv0+bRKagDW8gozwgXfR5i1IIG8QDjJZ6VgXQVqCZw=="], + + "@graphql-codegen/named-operations-object": ["@graphql-codegen/named-operations-object@3.0.0", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^3.0.0", "change-case-all": "1.0.15", "tslib": "~2.6.0" } }, "sha512-M9MKeTd7GINJQDV2iDvVjOJrLusU9om9rkizl6+z7xRiABA1cVz7s/trwi1hRHOpAE7Qe/k7ykRopRHysqzw5A=="], + + "@graphql-codegen/plugin-helpers": ["@graphql-codegen/plugin-helpers@5.0.1", "", { "dependencies": { "@graphql-tools/utils": "^10.0.0", "change-case-all": "1.0.15", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", "tslib": "~2.5.0" } }, "sha512-6L5sb9D8wptZhnhLLBcheSPU7Tg//DGWgc5tQBWX46KYTOTQHGqDpv50FxAJJOyFVJrveN9otWk9UT9/yfY4ww=="], + + "@graphql-codegen/schema-ast": ["@graphql-codegen/schema-ast@4.0.0", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-tools/utils": "^10.0.0", "tslib": "~2.5.0" } }, "sha512-WIzkJFa9Gz28FITAPILbt+7A8+yzOyd1NxgwFh7ie+EmO9a5zQK6UQ3U/BviirguXCYnn+AR4dXsoDrSrtRA1g=="], + + "@graphql-codegen/typed-document-node": ["@graphql-codegen/typed-document-node@5.0.1", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "change-case-all": "1.0.15", "tslib": "~2.5.0" } }, "sha512-VFkhCuJnkgtbbgzoCAwTdJe2G1H6sd3LfCrDqWUrQe53y2ukfSb5Ov1PhAIkCBStKCMQBUY9YgGz9GKR40qQ8g=="], + + "@graphql-codegen/typescript": ["@graphql-codegen/typescript@4.0.1", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/schema-ast": "^4.0.0", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" } }, "sha512-3YziQ21dCVdnHb+Us1uDb3pA6eG5Chjv0uTK+bt9dXeMlwYBU8MbtzvQTo4qvzWVC1AxSOKj0rgfNu1xCXqJyA=="], + + "@graphql-codegen/typescript-operations": ["@graphql-codegen/typescript-operations@4.0.1", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-codegen/typescript": "^4.0.1", "@graphql-codegen/visitor-plugin-common": "4.0.1", "auto-bind": "~4.0.0", "tslib": "~2.5.0" } }, "sha512-GpUWWdBVUec/Zqo23aFLBMrXYxN2irypHqDcKjN78JclDPdreasAEPcIpMfqf4MClvpmvDLy4ql+djVAwmkjbw=="], + + "@graphql-codegen/typescript-urql": ["@graphql-codegen/typescript-urql@4.0.0", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^3.0.0", "@graphql-codegen/visitor-plugin-common": "2.13.1", "auto-bind": "~4.0.0", "tslib": "~2.6.0" } }, "sha512-l15f44zxU5r1yiIpzLzgDQf2JLmTT+ZrFv7D4kQVAAXquPRN+Bdei1V9VAcatISb5bcHNxmdrXIRMtWKPwVwTg=="], + + "@graphql-codegen/visitor-plugin-common": ["@graphql-codegen/visitor-plugin-common@4.0.1", "", { "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", "@graphql-tools/optimize": "^2.0.0", "@graphql-tools/relay-operation-optimizer": "^7.0.0", "@graphql-tools/utils": "^10.0.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.15", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.5.0" } }, "sha512-Bi/1z0nHg4QMsAqAJhds+ForyLtk7A3HQOlkrZNm3xEkY7lcBzPtiOTLBtvziwopBsXUxqeSwVjOOFPLS5Yw1Q=="], + + "@graphql-tools/apollo-engine-loader": ["@graphql-tools/apollo-engine-loader@8.0.0", "", { "dependencies": { "@ardatan/sync-fetch": "^0.0.1", "@graphql-tools/utils": "^10.0.0", "@whatwg-node/fetch": "^0.9.0", "tslib": "^2.4.0" } }, "sha512-axQTbN5+Yxs1rJ6cWQBOfw3AEeC+fvIuZSfJLPLLvFJLj4pUm9fhxey/g6oQZAAQJqKPfw+tLDUQvnfvRK8Kmg=="], + + "@graphql-tools/batch-execute": ["@graphql-tools/batch-execute@9.0.2", "", { "dependencies": { "@graphql-tools/utils": "^10.0.5", "dataloader": "^2.2.2", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }, "sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ=="], + + "@graphql-tools/code-file-loader": ["@graphql-tools/code-file-loader@8.0.3", "", { "dependencies": { "@graphql-tools/graphql-tag-pluck": "8.1.0", "@graphql-tools/utils": "^10.0.0", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }, "sha512-gVnnlWs0Ua+5FkuHHEriFUOI3OIbHv6DS1utxf28n6NkfGMJldC4j0xlJRY0LS6dWK34IGYgD4HelKYz2l8KiA=="], + + "@graphql-tools/delegate": ["@graphql-tools/delegate@10.0.3", "", { "dependencies": { "@graphql-tools/batch-execute": "^9.0.1", "@graphql-tools/executor": "^1.0.0", "@graphql-tools/schema": "^10.0.0", "@graphql-tools/utils": "^10.0.5", "dataloader": "^2.2.2", "tslib": "^2.5.0" } }, "sha512-Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw=="], + + "@graphql-tools/documents": ["@graphql-tools/documents@1.0.0", "", { "dependencies": { "lodash.sortby": "^4.7.0", "tslib": "^2.4.0" } }, "sha512-rHGjX1vg/nZ2DKqRGfDPNC55CWZBMldEVcH+91BThRa6JeT80NqXknffLLEZLRUxyikCfkwMsk6xR3UNMqG0Rg=="], + + "@graphql-tools/executor": ["@graphql-tools/executor@1.2.0", "", { "dependencies": { "@graphql-tools/utils": "^10.0.0", "@graphql-typed-document-node/core": "3.2.0", "@repeaterjs/repeater": "^3.0.4", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }, "sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg=="], + + "@graphql-tools/executor-graphql-ws": ["@graphql-tools/executor-graphql-ws@1.1.0", "", { "dependencies": { "@graphql-tools/utils": "^10.0.2", "@types/ws": "^8.0.0", "graphql-ws": "^5.14.0", "isomorphic-ws": "^5.0.0", "tslib": "^2.4.0", "ws": "^8.13.0" } }, "sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg=="], + + "@graphql-tools/executor-http": ["@graphql-tools/executor-http@1.0.3", "", { "dependencies": { "@graphql-tools/utils": "^10.0.2", "@repeaterjs/repeater": "^3.0.4", "@whatwg-node/fetch": "^0.9.0", "extract-files": "^11.0.0", "meros": "^1.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }, "sha512-5WZIMBevRaxMabZ8U2Ty0dTUPy/PpeYSlMNEmC/YJjKKykgSfc/AwSejx2sE4FFKZ0I2kxRKRenyoWMHRAV49Q=="], + + "@graphql-tools/executor-legacy-ws": ["@graphql-tools/executor-legacy-ws@1.0.4", "", { "dependencies": { "@graphql-tools/utils": "^10.0.0", "@types/ws": "^8.0.0", "isomorphic-ws": "5.0.0", "tslib": "^2.4.0", "ws": "8.14.2" } }, "sha512-b7aGuRekZDS+m3af3BIvMKxu15bmVPMt5eGQVuP2v5pxmbaPTh+iv5mx9b3Plt32z5Ke5tycBnNm5urSFtW8ng=="], + + "@graphql-tools/git-loader": ["@graphql-tools/git-loader@8.0.3", "", { "dependencies": { "@graphql-tools/graphql-tag-pluck": "8.1.0", "@graphql-tools/utils": "^10.0.0", "is-glob": "4.0.3", "micromatch": "^4.0.4", "tslib": "^2.4.0", "unixify": "^1.0.0" } }, "sha512-Iz9KbRUAkuOe8JGTS0qssyJ+D5Snle17W+z9anwWrLFrkBhHrRFUy5AdjZqgJuhls0x30QkZBnnCtnHDBdQ4nA=="], + + "@graphql-tools/github-loader": ["@graphql-tools/github-loader@8.0.0", "", { "dependencies": { "@ardatan/sync-fetch": "^0.0.1", "@graphql-tools/executor-http": "^1.0.0", "@graphql-tools/graphql-tag-pluck": "^8.0.0", "@graphql-tools/utils": "^10.0.0", "@whatwg-node/fetch": "^0.9.0", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }, "sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA=="], + + "@graphql-tools/graphql-file-loader": ["@graphql-tools/graphql-file-loader@8.0.0", "", { "dependencies": { "@graphql-tools/import": "7.0.0", "@graphql-tools/utils": "^10.0.0", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }, "sha512-wRXj9Z1IFL3+zJG1HWEY0S4TXal7+s1vVhbZva96MSp0kbb/3JBF7j0cnJ44Eq0ClccMgGCDFqPFXty4JlpaPg=="], + + "@graphql-tools/graphql-tag-pluck": ["@graphql-tools/graphql-tag-pluck@8.1.0", "", { "dependencies": { "@babel/core": "^7.22.9", "@babel/parser": "^7.16.8", "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", "@graphql-tools/utils": "^10.0.0", "tslib": "^2.4.0" } }, "sha512-kt5l6H/7QxQcIaewInTcune6NpATojdFEW98/8xWcgmy7dgXx5vU9e0AicFZIH+ewGyZzTpwFqO2RI03roxj2w=="], + + "@graphql-tools/import": ["@graphql-tools/import@7.0.0", "", { "dependencies": { "@graphql-tools/utils": "^10.0.0", "resolve-from": "5.0.0", "tslib": "^2.4.0" } }, "sha512-NVZiTO8o1GZs6OXzNfjB+5CtQtqsZZpQOq+Uu0w57kdUkT4RlQKlwhT8T81arEsbV55KpzkpFsOZP7J1wdmhBw=="], + + "@graphql-tools/json-file-loader": ["@graphql-tools/json-file-loader@8.0.0", "", { "dependencies": { "@graphql-tools/utils": "^10.0.0", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }, "sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg=="], + + "@graphql-tools/load": ["@graphql-tools/load@8.0.0", "", { "dependencies": { "@graphql-tools/schema": "^10.0.0", "@graphql-tools/utils": "^10.0.0", "p-limit": "3.1.0", "tslib": "^2.4.0" } }, "sha512-Cy874bQJH0FP2Az7ELPM49iDzOljQmK1PPH6IuxsWzLSTxwTqd8dXA09dcVZrI7/LsN26heTY2R8q2aiiv0GxQ=="], + + "@graphql-tools/merge": ["@graphql-tools/merge@9.0.0", "", { "dependencies": { "@graphql-tools/utils": "^10.0.0", "tslib": "^2.4.0" } }, "sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q=="], + + "@graphql-tools/optimize": ["@graphql-tools/optimize@2.0.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg=="], + + "@graphql-tools/prisma-loader": ["@graphql-tools/prisma-loader@8.0.2", "", { "dependencies": { "@graphql-tools/url-loader": "^8.0.0", "@graphql-tools/utils": "^10.0.8", "@types/js-yaml": "^4.0.0", "@types/json-stable-stringify": "^1.0.32", "@whatwg-node/fetch": "^0.9.0", "chalk": "^4.1.0", "debug": "^4.3.1", "dotenv": "^16.0.0", "graphql-request": "^6.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "jose": "^5.0.0", "js-yaml": "^4.0.0", "json-stable-stringify": "^1.0.1", "lodash": "^4.17.20", "scuid": "^1.1.0", "tslib": "^2.4.0", "yaml-ast-parser": "^0.0.43" } }, "sha512-8d28bIB0bZ9Bj0UOz9sHagVPW+6AHeqvGljjERtwCnWl8OCQw2c2pNboYXISLYUG5ub76r4lDciLLTU+Ks7Q0w=="], + + "@graphql-tools/relay-operation-optimizer": ["@graphql-tools/relay-operation-optimizer@7.0.0", "", { "dependencies": { "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "^10.0.0", "tslib": "^2.4.0" } }, "sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw=="], + + "@graphql-tools/schema": ["@graphql-tools/schema@10.0.0", "", { "dependencies": { "@graphql-tools/merge": "^9.0.0", "@graphql-tools/utils": "^10.0.0", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }, "sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg=="], + + "@graphql-tools/url-loader": ["@graphql-tools/url-loader@8.0.0", "", { "dependencies": { "@ardatan/sync-fetch": "^0.0.1", "@graphql-tools/delegate": "^10.0.0", "@graphql-tools/executor-graphql-ws": "^1.0.0", "@graphql-tools/executor-http": "^1.0.0", "@graphql-tools/executor-legacy-ws": "^1.0.0", "@graphql-tools/utils": "^10.0.0", "@graphql-tools/wrap": "^10.0.0", "@types/ws": "^8.0.0", "@whatwg-node/fetch": "^0.9.0", "isomorphic-ws": "^5.0.0", "tslib": "^2.4.0", "value-or-promise": "^1.0.11", "ws": "^8.12.0" } }, "sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA=="], + + "@graphql-tools/utils": ["@graphql-tools/utils@10.0.8", "", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "cross-inspect": "1.0.0", "dset": "^3.1.2", "tslib": "^2.4.0" } }, "sha512-yjyA8ycSa1WRlJqyX/aLqXeE5DvF/H02+zXMUFnCzIDrj0UvLMUrxhmVFnMK0Q2n3bh4uuTeY3621m5za9ovXw=="], + + "@graphql-tools/wrap": ["@graphql-tools/wrap@10.0.1", "", { "dependencies": { "@graphql-tools/delegate": "^10.0.3", "@graphql-tools/schema": "^10.0.0", "@graphql-tools/utils": "^10.0.0", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }, "sha512-Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg=="], + + "@graphql-typed-document-node/core": ["@graphql-typed-document-node/core@https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", {}], + + "@honkhonk/vite-plugin-svgr": ["@honkhonk/vite-plugin-svgr@https://registry.npmjs.org/@honkhonk/vite-plugin-svgr/-/vite-plugin-svgr-1.1.0.tgz", { "dependencies": { "@svgr/core": "^5.5.0" } }], + + "@humanwhocodes/config-array": ["@humanwhocodes/config-array@https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", { "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", "minimatch": "^3.0.5" } }], + + "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", {}], + + "@humanwhocodes/object-schema": ["@humanwhocodes/object-schema@https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", {}], + + "@isaacs/cliui": ["@isaacs/cliui@8.0.2", "", { "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" } }, "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="], + + "@isaacs/string-locale-compare": ["@isaacs/string-locale-compare@1.1.0", "", {}, "sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ=="], + + "@istanbuljs/load-nyc-config": ["@istanbuljs/load-nyc-config@https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", { "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" } }], + + "@istanbuljs/schema": ["@istanbuljs/schema@https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", {}], + + "@jest/schemas": ["@jest/schemas@29.6.3", "", { "dependencies": { "@sinclair/typebox": "^0.27.8" } }, "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA=="], + + "@jest/transform": ["@jest/transform@https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", { "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^29.5.0", "@jridgewell/trace-mapping": "^0.3.15", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^29.5.0", "jest-regex-util": "^29.4.3", "jest-util": "^29.5.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", "write-file-atomic": "^4.0.2" } }], + + "@jest/types": ["@jest/types@27.5.1", "", { "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^16.0.0", "chalk": "^4.0.0" } }, "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="], + + "@joshwooding/vite-plugin-react-docgen-typescript": ["@joshwooding/vite-plugin-react-docgen-typescript@https://registry.npmjs.org/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.2.1.tgz", { "dependencies": { "glob": "^7.2.0", "glob-promise": "^4.2.0", "magic-string": "^0.27.0", "react-docgen-typescript": "^2.2.2" } }], + + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", { "dependencies": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } }], + + "@jridgewell/remapping": ["@jridgewell/remapping@2.3.5", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ=="], + + "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", {}], + + "@jridgewell/set-array": ["@jridgewell/set-array@https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", {}], + + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", {}], + + "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", { "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" } }], + + "@juggle/resize-observer": ["@juggle/resize-observer@https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", {}], + + "@mdx-js/react": ["@mdx-js/react@https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz", { "dependencies": { "@types/mdx": "^2.0.0", "@types/react": ">=16" } }], + + "@monaco-editor/loader": ["@monaco-editor/loader@1.3.3", "", { "dependencies": { "state-local": "^1.0.6" } }, "sha512-6KKF4CTzcJiS8BJwtxtfyYt9shBiEv32ateQ9T4UVogwn4HM/uPo9iJd2Dmbkpz8CM6Y0PDUpjnZzCwC+eYo2Q=="], + + "@monaco-editor/react": ["@monaco-editor/react@4.5.2", "", { "dependencies": { "@monaco-editor/loader": "^1.3.3" } }, "sha512-emcWu6vg1OpXPiYll4aPOaXe8bwYB4UaaNTwtArFLgMoNGBzRZb2Xn0Bra2HMIFM7QLgs7fCGunHO5LkfT2LBA=="], + + "@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.1.1", "", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@tybys/wasm-util": "^0.10.1" } }, "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A=="], + + "@ndelangen/get-tarball": ["@ndelangen/get-tarball@https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.7.tgz", { "dependencies": { "gunzip-maybe": "^1.4.2", "pump": "^3.0.0", "tar-fs": "^2.1.1" } }], + + "@nicolo-ribaudo/eslint-scope-5-internals": ["@nicolo-ribaudo/eslint-scope-5-internals@https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", { "dependencies": { "eslint-scope": "5.1.1" } }], + + "@nodelib/fs.scandir": ["@nodelib/fs.scandir@https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }], + + "@nodelib/fs.stat": ["@nodelib/fs.stat@https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", {}], + + "@nodelib/fs.walk": ["@nodelib/fs.walk@https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }], + + "@npmcli/agent": ["@npmcli/agent@2.2.0", "", { "dependencies": { "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "lru-cache": "^10.0.1", "socks-proxy-agent": "^8.0.1" } }, "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q=="], + + "@npmcli/arborist": ["@npmcli/arborist@7.3.0", "", { "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/fs": "^3.1.0", "@npmcli/installed-package-contents": "^2.0.2", "@npmcli/map-workspaces": "^3.0.2", "@npmcli/metavuln-calculator": "^7.0.0", "@npmcli/name-from-folder": "^2.0.0", "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", "@npmcli/query": "^3.0.1", "@npmcli/run-script": "^7.0.2", "bin-links": "^4.0.1", "cacache": "^18.0.0", "common-ancestor-path": "^1.0.1", "hosted-git-info": "^7.0.1", "json-parse-even-better-errors": "^3.0.0", "json-stringify-nice": "^1.1.4", "minimatch": "^9.0.0", "nopt": "^7.0.0", "npm-install-checks": "^6.2.0", "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", "npm-registry-fetch": "^16.0.0", "npmlog": "^7.0.1", "pacote": "^17.0.4", "parse-conflict-json": "^3.0.0", "proc-log": "^3.0.0", "promise-all-reject-late": "^1.0.0", "promise-call-limit": "^1.0.2", "read-package-json-fast": "^3.0.2", "semver": "^7.3.7", "ssri": "^10.0.5", "treeverse": "^3.0.0", "walk-up-path": "^3.0.1" } }, "sha512-ZElIE9L14fEYiL4KqgqRHmo8fRKiTSOFU3hVS1mNm0zJE7hu4FHmof+OFsA7fAAXfkNDJrDByvD0o7Le0ISHMw=="], + + "@npmcli/config": ["@npmcli/config@8.1.0", "", { "dependencies": { "@npmcli/map-workspaces": "^3.0.2", "ci-info": "^4.0.0", "ini": "^4.1.0", "nopt": "^7.0.0", "proc-log": "^3.0.0", "read-package-json-fast": "^3.0.2", "semver": "^7.3.5", "walk-up-path": "^3.0.1" } }, "sha512-61LNEybTFaa9Z/f8y6X9s2Blc75aijZK67LxqC5xicBcfkw8M/88nYrRXGXxAUKm6GRlxTZ216dp1UK2+TbaYw=="], + + "@npmcli/disparity-colors": ["@npmcli/disparity-colors@3.0.0", "", { "dependencies": { "ansi-styles": "^4.3.0" } }, "sha512-5R/z157/f20Fi0Ou4ZttL51V0xz0EdPEOauFtPCEYOLInDBRCj1/TxOJ5aGTrtShxEshN2d+hXb9ZKSi5RLBcg=="], + + "@npmcli/fs": ["@npmcli/fs@3.1.0", "", { "dependencies": { "semver": "^7.3.5" } }, "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w=="], + + "@npmcli/git": ["@npmcli/git@5.0.4", "", { "dependencies": { "@npmcli/promise-spawn": "^7.0.0", "lru-cache": "^10.0.1", "npm-pick-manifest": "^9.0.0", "proc-log": "^3.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", "which": "^4.0.0" } }, "sha512-nr6/WezNzuYUppzXRaYu/W4aT5rLxdXqEFupbh6e/ovlYFQ8hpu1UUPV3Ir/YTl+74iXl2ZOMlGzudh9ZPUchQ=="], + + "@npmcli/installed-package-contents": ["@npmcli/installed-package-contents@2.0.2", "", { "dependencies": { "npm-bundled": "^3.0.0", "npm-normalize-package-bin": "^3.0.0" } }, "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ=="], + + "@npmcli/map-workspaces": ["@npmcli/map-workspaces@3.0.4", "", { "dependencies": { "@npmcli/name-from-folder": "^2.0.0", "glob": "^10.2.2", "minimatch": "^9.0.0", "read-package-json-fast": "^3.0.0" } }, "sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg=="], + + "@npmcli/metavuln-calculator": ["@npmcli/metavuln-calculator@7.0.0", "", { "dependencies": { "cacache": "^18.0.0", "json-parse-even-better-errors": "^3.0.0", "pacote": "^17.0.0", "semver": "^7.3.5" } }, "sha512-Pw0tyX02VkpqlIQlG2TeiJNsdrecYeUU0ubZZa9pi3N37GCsxI+en43u4hYFdq+eSx1A9a9vwFAUyqEtKFsbHQ=="], + + "@npmcli/name-from-folder": ["@npmcli/name-from-folder@2.0.0", "", {}, "sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg=="], + + "@npmcli/node-gyp": ["@npmcli/node-gyp@3.0.0", "", {}, "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA=="], + + "@npmcli/package-json": ["@npmcli/package-json@5.0.0", "", { "dependencies": { "@npmcli/git": "^5.0.0", "glob": "^10.2.2", "hosted-git-info": "^7.0.0", "json-parse-even-better-errors": "^3.0.0", "normalize-package-data": "^6.0.0", "proc-log": "^3.0.0", "semver": "^7.5.3" } }, "sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g=="], + + "@npmcli/promise-spawn": ["@npmcli/promise-spawn@7.0.1", "", { "dependencies": { "which": "^4.0.0" } }, "sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg=="], + + "@npmcli/query": ["@npmcli/query@3.0.1", "", { "dependencies": { "postcss-selector-parser": "^6.0.10" } }, "sha512-0jE8iHBogf/+bFDj+ju6/UMLbJ39c8h6nSe6qile+dB7PJ0iV3gNqcb2vtt6WWCBrxv9uAjzUT/8vroluulidA=="], + + "@npmcli/run-script": ["@npmcli/run-script@7.0.3", "", { "dependencies": { "@npmcli/node-gyp": "^3.0.0", "@npmcli/promise-spawn": "^7.0.0", "node-gyp": "^10.0.0", "read-package-json-fast": "^3.0.0", "which": "^4.0.0" } }, "sha512-ZMWGLHpzMq3rBGIwPyeaoaleaLMvrBrH8nugHxTi5ACkJZXTxXPtVuEH91ifgtss5hUwJQ2VDnzDBWPmz78rvg=="], + + "@oclif/command": ["@oclif/command@https://registry.npmjs.org/@oclif/command/-/command-1.8.0.tgz", { "dependencies": { "@oclif/config": "^1.15.1", "@oclif/errors": "^1.3.3", "@oclif/parser": "^3.8.3", "@oclif/plugin-help": "^3", "debug": "^4.1.1", "semver": "^7.3.2" } }], + + "@oclif/config": ["@oclif/config@https://registry.npmjs.org/@oclif/config/-/config-1.17.0.tgz", { "dependencies": { "@oclif/errors": "^1.3.3", "@oclif/parser": "^3.8.0", "debug": "^4.1.1", "globby": "^11.0.1", "is-wsl": "^2.1.1", "tslib": "^2.0.0" } }], + + "@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.4.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }], + + "@oclif/help": ["@oclif/help@https://registry.npmjs.org/@oclif/help/-/help-1.0.5.tgz", { "dependencies": { "@oclif/config": "1.18.6", "@oclif/errors": "1.3.6", "chalk": "^4.1.2", "indent-string": "^4.0.0", "lodash": "^4.17.21", "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "widest-line": "^3.1.0", "wrap-ansi": "^6.2.0" } }], + + "@oclif/linewrap": ["@oclif/linewrap@https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz", {}], + + "@oclif/parser": ["@oclif/parser@https://registry.npmjs.org/@oclif/parser/-/parser-3.8.10.tgz", { "dependencies": { "@oclif/errors": "^1.3.6", "@oclif/linewrap": "^1.0.0", "chalk": "^4.1.0", "tslib": "^2.5.0" } }], + + "@oclif/plugin-help": ["@oclif/plugin-help@https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.2.1.tgz", { "dependencies": { "@oclif/command": "^1.5.20", "@oclif/config": "^1.15.1", "@oclif/errors": "^1.2.2", "chalk": "^2.4.1", "indent-string": "^4.0.0", "lodash.template": "^4.4.0", "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "widest-line": "^3.1.0", "wrap-ansi": "^4.0.0" } }], + + "@oclif/screen": ["@oclif/screen@https://registry.npmjs.org/@oclif/screen/-/screen-1.0.4.tgz", {}], + + "@octokit/auth-token": ["@octokit/auth-token@4.0.0", "", {}, "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA=="], + + "@octokit/core": ["@octokit/core@5.0.2", "", { "dependencies": { "@octokit/auth-token": "^4.0.0", "@octokit/graphql": "^7.0.0", "@octokit/request": "^8.0.2", "@octokit/request-error": "^5.0.0", "@octokit/types": "^12.0.0", "before-after-hook": "^2.2.0", "universal-user-agent": "^6.0.0" } }, "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg=="], + + "@octokit/endpoint": ["@octokit/endpoint@9.0.4", "", { "dependencies": { "@octokit/types": "^12.0.0", "universal-user-agent": "^6.0.0" } }, "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw=="], + + "@octokit/graphql": ["@octokit/graphql@7.0.2", "", { "dependencies": { "@octokit/request": "^8.0.1", "@octokit/types": "^12.0.0", "universal-user-agent": "^6.0.0" } }, "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q=="], + + "@octokit/openapi-types": ["@octokit/openapi-types@19.1.0", "", {}, "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw=="], + + "@octokit/plugin-paginate-rest": ["@octokit/plugin-paginate-rest@9.1.5", "", { "dependencies": { "@octokit/types": "^12.4.0" } }, "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg=="], + + "@octokit/plugin-retry": ["@octokit/plugin-retry@6.0.1", "", { "dependencies": { "@octokit/request-error": "^5.0.0", "@octokit/types": "^12.0.0", "bottleneck": "^2.15.3" } }, "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog=="], + + "@octokit/plugin-throttling": ["@octokit/plugin-throttling@8.1.3", "", { "dependencies": { "@octokit/types": "^12.2.0", "bottleneck": "^2.15.3" } }, "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A=="], + + "@octokit/request": ["@octokit/request@8.1.6", "", { "dependencies": { "@octokit/endpoint": "^9.0.0", "@octokit/request-error": "^5.0.0", "@octokit/types": "^12.0.0", "universal-user-agent": "^6.0.0" } }, "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ=="], + + "@octokit/request-error": ["@octokit/request-error@5.0.1", "", { "dependencies": { "@octokit/types": "^12.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" } }, "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ=="], + + "@octokit/types": ["@octokit/types@12.4.0", "", { "dependencies": { "@octokit/openapi-types": "^19.1.0" } }, "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ=="], + + "@oxc-project/runtime": ["@oxc-project/runtime@0.115.0", "", {}, "sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ=="], + + "@oxc-project/types": ["@oxc-project/types@0.115.0", "", {}, "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw=="], + + "@peculiar/asn1-schema": ["@peculiar/asn1-schema@https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.6.tgz", { "dependencies": { "asn1js": "^3.0.5", "pvtsutils": "^1.3.2", "tslib": "^2.4.0" } }], + + "@peculiar/json-schema": ["@peculiar/json-schema@https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz", { "dependencies": { "tslib": "^2.0.0" } }], + + "@peculiar/webcrypto": ["@peculiar/webcrypto@https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.3.tgz", { "dependencies": { "@peculiar/asn1-schema": "^2.3.6", "@peculiar/json-schema": "^1.1.12", "pvtsutils": "^1.3.2", "tslib": "^2.5.0", "webcrypto-core": "^1.7.7" } }], + + "@pkgjs/parseargs": ["@pkgjs/parseargs@0.11.0", "", {}, "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="], + + "@pkgr/utils": ["@pkgr/utils@https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", { "dependencies": { "cross-spawn": "^7.0.3", "is-glob": "^4.0.3", "open": "^8.4.0", "picocolors": "^1.0.0", "tiny-glob": "^0.2.9", "tslib": "^2.4.0" } }], + + "@pnpm/config.env-replace": ["@pnpm/config.env-replace@1.1.0", "", {}, "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w=="], + + "@pnpm/network.ca-file": ["@pnpm/network.ca-file@1.0.2", "", { "dependencies": { "graceful-fs": "4.2.10" } }, "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="], + + "@pnpm/npm-conf": ["@pnpm/npm-conf@2.2.2", "", { "dependencies": { "@pnpm/config.env-replace": "^1.1.0", "@pnpm/network.ca-file": "^1.0.1", "config-chain": "^1.1.11" } }, "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA=="], + + "@radix-ui/number": ["@radix-ui/number@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg=="], + + "@radix-ui/primitive": ["@radix-ui/primitive@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw=="], + + "@radix-ui/react-arrow": ["@radix-ui/react-arrow@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" } }, "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA=="], + + "@radix-ui/react-collection": ["@radix-ui/react-collection@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-slot": "1.0.2" } }, "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA=="], + + "@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw=="], + + "@radix-ui/react-context": ["@radix-ui/react-context@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg=="], + + "@radix-ui/react-direction": ["@radix-ui/react-direction@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA=="], + + "@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1", "@radix-ui/react-use-escape-keydown": "1.0.3" } }, "sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg=="], + + "@radix-ui/react-focus-guards": ["@radix-ui/react-focus-guards@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA=="], + + "@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1" } }, "sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ=="], + + "@radix-ui/react-id": ["@radix-ui/react-id@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-layout-effect": "1.0.1" } }, "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ=="], + + "@radix-ui/react-popper": ["@radix-ui/react-popper@1.1.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@floating-ui/react-dom": "^2.0.0", "@radix-ui/react-arrow": "1.0.3", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1", "@radix-ui/react-use-layout-effect": "1.0.1", "@radix-ui/react-use-rect": "1.0.1", "@radix-ui/react-use-size": "1.0.1", "@radix-ui/rect": "1.0.1" } }, "sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg=="], + + "@radix-ui/react-portal": ["@radix-ui/react-portal@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" } }, "sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA=="], + + "@radix-ui/react-primitive": ["@radix-ui/react-primitive@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-slot": "1.0.2" } }, "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g=="], + + "@radix-ui/react-roving-focus": ["@radix-ui/react-roving-focus@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-collection": "1.0.3", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-direction": "1.0.1", "@radix-ui/react-id": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1", "@radix-ui/react-use-controllable-state": "1.0.1" } }, "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ=="], + + "@radix-ui/react-select": ["@radix-ui/react-select@1.2.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/number": "1.0.1", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-collection": "1.0.3", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-direction": "1.0.1", "@radix-ui/react-dismissable-layer": "1.0.4", "@radix-ui/react-focus-guards": "1.0.1", "@radix-ui/react-focus-scope": "1.0.3", "@radix-ui/react-id": "1.0.1", "@radix-ui/react-popper": "1.1.2", "@radix-ui/react-portal": "1.0.3", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-slot": "1.0.2", "@radix-ui/react-use-callback-ref": "1.0.1", "@radix-ui/react-use-controllable-state": "1.0.1", "@radix-ui/react-use-layout-effect": "1.0.1", "@radix-ui/react-use-previous": "1.0.1", "@radix-ui/react-visually-hidden": "1.0.3", "aria-hidden": "^1.1.1", "react-remove-scroll": "2.5.5" } }, "sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw=="], + + "@radix-ui/react-separator": ["@radix-ui/react-separator@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" } }, "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw=="], + + "@radix-ui/react-slot": ["@radix-ui/react-slot@1.0.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1" } }, "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg=="], + + "@radix-ui/react-toggle": ["@radix-ui/react-toggle@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-controllable-state": "1.0.1" } }, "sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg=="], + + "@radix-ui/react-toggle-group": ["@radix-ui/react-toggle-group@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-direction": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-roving-focus": "1.0.4", "@radix-ui/react-toggle": "1.0.3", "@radix-ui/react-use-controllable-state": "1.0.1" } }, "sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A=="], + + "@radix-ui/react-toolbar": ["@radix-ui/react-toolbar@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-direction": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-roving-focus": "1.0.4", "@radix-ui/react-separator": "1.0.3", "@radix-ui/react-toggle-group": "1.0.4" } }, "sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q=="], + + "@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], + + "@radix-ui/react-use-controllable-state": ["@radix-ui/react-use-controllable-state@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-callback-ref": "1.0.1" } }, "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA=="], + + "@radix-ui/react-use-escape-keydown": ["@radix-ui/react-use-escape-keydown@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-callback-ref": "1.0.1" } }, "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg=="], + + "@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ=="], + + "@radix-ui/react-use-previous": ["@radix-ui/react-use-previous@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw=="], + + "@radix-ui/react-use-rect": ["@radix-ui/react-use-rect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/rect": "1.0.1" } }, "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw=="], + + "@radix-ui/react-use-size": ["@radix-ui/react-use-size@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-layout-effect": "1.0.1" } }, "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g=="], + + "@radix-ui/react-visually-hidden": ["@radix-ui/react-visually-hidden@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" } }, "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA=="], + + "@radix-ui/rect": ["@radix-ui/rect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ=="], + + "@rc-component/color-picker": ["@rc-component/color-picker@1.5.1", "", { "dependencies": { "@babel/runtime": "^7.23.6", "@ctrl/tinycolor": "^3.6.1", "classnames": "^2.2.6", "rc-util": "^5.38.1" } }, "sha512-onyAFhWKXuG4P162xE+7IgaJkPkwM94XlOYnQuu69XdXWMfxpeFi6tpJBsieIMV7EnyLV5J3lDzdLiFeK0iEBA=="], + + "@rc-component/context": ["@rc-component/context@1.4.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "rc-util": "^5.27.0" } }, "sha512-kFcNxg9oLRMoL3qki0OMxK+7g5mypjgaaJp/pkOis/6rVxma9nJBF/8kCIuTYHUQNr0ii7MxqE33wirPZLJQ2w=="], + + "@rc-component/mini-decimal": ["@rc-component/mini-decimal@1.1.0", "", { "dependencies": { "@babel/runtime": "^7.18.0" } }, "sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ=="], + + "@rc-component/mutate-observer": ["@rc-component/mutate-observer@1.1.0", "", { "dependencies": { "@babel/runtime": "^7.18.0", "classnames": "^2.3.2", "rc-util": "^5.24.4" } }, "sha512-QjrOsDXQusNwGZPf4/qRQasg7UFEj06XiCJ8iuiq/Io7CrHrgVi6Uuetw60WAMG1799v+aM8kyc+1L/GBbHSlw=="], + + "@rc-component/portal": ["@rc-component/portal@1.1.2", "", { "dependencies": { "@babel/runtime": "^7.18.0", "classnames": "^2.3.2", "rc-util": "^5.24.4" } }, "sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg=="], + + "@rc-component/tour": ["@rc-component/tour@1.12.2", "", { "dependencies": { "@babel/runtime": "^7.18.0", "@rc-component/portal": "^1.0.0-9", "@rc-component/trigger": "^1.3.6", "classnames": "^2.3.2", "rc-util": "^5.24.4" } }, "sha512-2he76Iwf0cVchI70dHCowR5DCWpPRY9+foNoO1h+TD2cZbsGSoEk+m3jEaFPh4ChXYhdzsxp+0siz8/br91JhA=="], + + "@rc-component/trigger": ["@rc-component/trigger@1.18.2", "", { "dependencies": { "@babel/runtime": "^7.23.2", "@rc-component/portal": "^1.1.0", "classnames": "^2.3.2", "rc-motion": "^2.0.0", "rc-resize-observer": "^1.3.1", "rc-util": "^5.38.0" } }, "sha512-jRLYgFgjLEPq3MvS87fIhcfuywFSRDaDrYw1FLku7Cm4esszvzTbA0JBsyacAyLrK9rF3TiHFcvoEDMzoD3CTA=="], + + "@react-querybuilder/core": ["@react-querybuilder/core@8.14.0", "", { "dependencies": { "@ts-jison/lexer": "0.4.1-alpha.1", "@ts-jison/parser": "0.4.1-alpha.1", "immer": "^11.1.3", "numeric-quantity": "^2.1.0" }, "peerDependencies": { "drizzle-orm": ">=0.38.0", "json-logic-js": ">=2", "sequelize": ">=6" }, "optionalPeers": ["drizzle-orm", "json-logic-js", "sequelize"] }, "sha512-j1pIY0Yyn/dXu9ZST/DVY7TqRmIO1hY/mZ8653DaeHaDzUF37tOdkm/NQDU9RfM0KXIWsJY5zlvYAR1DypZ+7g=="], + + "@reduxjs/toolkit": ["@reduxjs/toolkit@2.11.2", "", { "dependencies": { "@standard-schema/spec": "^1.0.0", "@standard-schema/utils": "^0.3.0", "immer": "^11.0.0", "redux": "^5.0.1", "redux-thunk": "^3.1.0", "reselect": "^5.1.0" }, "peerDependencies": { "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" }, "optionalPeers": ["react", "react-redux"] }, "sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ=="], + + "@remix-run/router": ["@remix-run/router@1.8.0", "", {}, "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg=="], + + "@repeaterjs/repeater": ["@repeaterjs/repeater@https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz", {}], + + "@rgrove/parse-xml": ["@rgrove/parse-xml@https://registry.npmjs.org/@rgrove/parse-xml/-/parse-xml-3.0.0.tgz", {}], + + "@rolldown/binding-android-arm64": ["@rolldown/binding-android-arm64@1.0.0-rc.9", "", { "os": "android", "cpu": "arm64" }, "sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg=="], + + "@rolldown/binding-darwin-arm64": ["@rolldown/binding-darwin-arm64@1.0.0-rc.9", "", { "os": "darwin", "cpu": "arm64" }, "sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ=="], + + "@rolldown/binding-darwin-x64": ["@rolldown/binding-darwin-x64@1.0.0-rc.9", "", { "os": "darwin", "cpu": "x64" }, "sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg=="], + + "@rolldown/binding-freebsd-x64": ["@rolldown/binding-freebsd-x64@1.0.0-rc.9", "", { "os": "freebsd", "cpu": "x64" }, "sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q=="], + + "@rolldown/binding-linux-arm-gnueabihf": ["@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", "", { "os": "linux", "cpu": "arm" }, "sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ=="], + + "@rolldown/binding-linux-arm64-gnu": ["@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", "", { "os": "linux", "cpu": "arm64" }, "sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg=="], + + "@rolldown/binding-linux-arm64-musl": ["@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", "", { "os": "linux", "cpu": "arm64" }, "sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg=="], + + "@rolldown/binding-linux-ppc64-gnu": ["@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", "", { "os": "linux", "cpu": "ppc64" }, "sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w=="], + + "@rolldown/binding-linux-s390x-gnu": ["@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", "", { "os": "linux", "cpu": "s390x" }, "sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA=="], + + "@rolldown/binding-linux-x64-gnu": ["@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", "", { "os": "linux", "cpu": "x64" }, "sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg=="], + + "@rolldown/binding-linux-x64-musl": ["@rolldown/binding-linux-x64-musl@1.0.0-rc.9", "", { "os": "linux", "cpu": "x64" }, "sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA=="], + + "@rolldown/binding-openharmony-arm64": ["@rolldown/binding-openharmony-arm64@1.0.0-rc.9", "", { "os": "none", "cpu": "arm64" }, "sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog=="], + + "@rolldown/binding-wasm32-wasi": ["@rolldown/binding-wasm32-wasi@1.0.0-rc.9", "", { "dependencies": { "@napi-rs/wasm-runtime": "^1.1.1" }, "cpu": "none" }, "sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g=="], + + "@rolldown/binding-win32-arm64-msvc": ["@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", "", { "os": "win32", "cpu": "arm64" }, "sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA=="], + + "@rolldown/binding-win32-x64-msvc": ["@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", "", { "os": "win32", "cpu": "x64" }, "sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ=="], + + "@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-rc.3", "", {}, "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q=="], + + "@rollup/pluginutils": ["@rollup/pluginutils@https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^2.3.1" } }], + + "@semantic-release/commit-analyzer": ["@semantic-release/commit-analyzer@11.1.0", "", { "dependencies": { "conventional-changelog-angular": "^7.0.0", "conventional-commits-filter": "^4.0.0", "conventional-commits-parser": "^5.0.0", "debug": "^4.0.0", "import-from-esm": "^1.0.3", "lodash-es": "^4.17.21", "micromatch": "^4.0.2" } }, "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g=="], + + "@semantic-release/error": ["@semantic-release/error@3.0.0", "", {}, "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw=="], + + "@semantic-release/git": ["@semantic-release/git@10.0.1", "", { "dependencies": { "@semantic-release/error": "^3.0.0", "aggregate-error": "^3.0.0", "debug": "^4.0.0", "dir-glob": "^3.0.0", "execa": "^5.0.0", "lodash": "^4.17.4", "micromatch": "^4.0.0", "p-reduce": "^2.0.0" } }, "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w=="], + + "@semantic-release/github": ["@semantic-release/github@9.2.6", "", { "dependencies": { "@octokit/core": "^5.0.0", "@octokit/plugin-paginate-rest": "^9.0.0", "@octokit/plugin-retry": "^6.0.0", "@octokit/plugin-throttling": "^8.0.0", "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "debug": "^4.3.4", "dir-glob": "^3.0.1", "globby": "^14.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "issue-parser": "^6.0.0", "lodash-es": "^4.17.21", "mime": "^4.0.0", "p-filter": "^4.0.0", "url-join": "^5.0.0" } }, "sha512-shi+Lrf6exeNZF+sBhK+P011LSbhmIAoUEgEY6SsxF8irJ+J2stwI5jkyDQ+4gzYyDImzV6LCKdYB9FXnQRWKA=="], + + "@semantic-release/npm": ["@semantic-release/npm@11.0.2", "", { "dependencies": { "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "execa": "^8.0.0", "fs-extra": "^11.0.0", "lodash-es": "^4.17.21", "nerf-dart": "^1.0.0", "normalize-url": "^8.0.0", "npm": "^10.0.0", "rc": "^1.2.8", "read-pkg": "^9.0.0", "registry-auth-token": "^5.0.0", "semver": "^7.1.2", "tempy": "^3.0.0" } }, "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA=="], + + "@semantic-release/release-notes-generator": ["@semantic-release/release-notes-generator@12.1.0", "", { "dependencies": { "conventional-changelog-angular": "^7.0.0", "conventional-changelog-writer": "^7.0.0", "conventional-commits-filter": "^4.0.0", "conventional-commits-parser": "^5.0.0", "debug": "^4.0.0", "get-stream": "^7.0.0", "import-from-esm": "^1.0.3", "into-stream": "^7.0.0", "lodash-es": "^4.17.21", "read-pkg-up": "^11.0.0" } }, "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg=="], + + "@sigstore/bundle": ["@sigstore/bundle@2.1.1", "", { "dependencies": { "@sigstore/protobuf-specs": "^0.2.1" } }, "sha512-v3/iS+1nufZdKQ5iAlQKcCsoh0jffQyABvYIxKsZQFWc4ubuGjwZklFHpDgV6O6T7vvV78SW5NHI91HFKEcxKg=="], + + "@sigstore/core": ["@sigstore/core@0.2.0", "", {}, "sha512-THobAPPZR9pDH2CAvDLpkrYedt7BlZnsyxDe+Isq4ZmGfPy5juOFZq487vCU2EgKD7aHSiTfE/i7sN7aEdzQnA=="], + + "@sigstore/protobuf-specs": ["@sigstore/protobuf-specs@0.2.1", "", {}, "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A=="], + + "@sigstore/sign": ["@sigstore/sign@2.2.1", "", { "dependencies": { "@sigstore/bundle": "^2.1.1", "@sigstore/core": "^0.2.0", "@sigstore/protobuf-specs": "^0.2.1", "make-fetch-happen": "^13.0.0" } }, "sha512-U5sKQEj+faE1MsnLou1f4DQQHeFZay+V9s9768lw48J4pKykPj34rWyI1lsMOGJ3Mae47Ye6q3HAJvgXO21rkQ=="], + + "@sigstore/tuf": ["@sigstore/tuf@2.3.0", "", { "dependencies": { "@sigstore/protobuf-specs": "^0.2.1", "tuf-js": "^2.2.0" } }, "sha512-S98jo9cpJwO1mtQ+2zY7bOdcYyfVYCUaofCG6wWRzk3pxKHVAkSfshkfecto2+LKsx7Ovtqbgb2LS8zTRhxJ9Q=="], + + "@sigstore/verify": ["@sigstore/verify@0.1.0", "", { "dependencies": { "@sigstore/bundle": "^2.1.1", "@sigstore/core": "^0.2.0", "@sigstore/protobuf-specs": "^0.2.1" } }, "sha512-2UzMNYAa/uaz11NhvgRnIQf4gpLTJ59bhb8ESXaoSS5sxedfS+eLak8bsdMc+qpNQfITUTFoSKFx5h8umlRRiA=="], + + "@sinclair/typebox": ["@sinclair/typebox@0.27.8", "", {}, "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="], + + "@sindresorhus/is": ["@sindresorhus/is@4.6.0", "", {}, "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="], + + "@sindresorhus/merge-streams": ["@sindresorhus/merge-streams@1.0.0", "", {}, "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw=="], + + "@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], + + "@standard-schema/utils": ["@standard-schema/utils@0.3.0", "", {}, "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g=="], + + "@storybook/addon-actions": ["@storybook/addon-actions@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "polished": "^4.2.2", "prop-types": "^15.7.2", "react-inspector": "^6.0.0", "telejson": "^7.2.0", "ts-dedent": "^2.0.0", "uuid": "^9.0.0" } }, "sha512-FkjJWmPN/+duLSkRwfa2bwlwjKfY6yCXYn7CRzn3rb64B8f50NB79zAgVLHjkJh9l6T3DIlWtol6vqPHj1aRpw=="], + + "@storybook/addon-backgrounds": ["@storybook/addon-backgrounds@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "memoizerific": "^1.11.3", "ts-dedent": "^2.0.0" } }, "sha512-fTq9E1WrYH/9hwDemFVLVcaI2iSSuwWnvY/8tqGrY9xhQF5dIpeHf+z8+HWXpau7e6Z0/WiYR+1vwAcIKt95LQ=="], + + "@storybook/addon-controls": ["@storybook/addon-controls@7.4.5", "", { "dependencies": { "@storybook/blocks": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/manager-api": "7.4.5", "@storybook/node-logger": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "lodash": "^4.17.21", "ts-dedent": "^2.0.0" } }, "sha512-Mxs56jt44HIbZ4gJa0AII1U8GqEGFsvcM5Iob0ETNpxCW5Kj5iHly/4Ws0RFWPH/krrQKaLpWXaUxKmbtEzhJA=="], + + "@storybook/addon-docs": ["@storybook/addon-docs@7.4.5", "", { "dependencies": { "@jest/transform": "^29.3.1", "@mdx-js/react": "^2.1.5", "@storybook/blocks": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/csf-plugin": "7.4.5", "@storybook/csf-tools": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/mdx2-csf": "^1.0.0", "@storybook/node-logger": "7.4.5", "@storybook/postinstall": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/react-dom-shim": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "fs-extra": "^11.1.0", "remark-external-links": "^8.0.0", "remark-slug": "^6.0.0", "ts-dedent": "^2.0.0" } }, "sha512-KjFVeq8oL7ZC1gsk8iY3Nn0RrHHUpczmOTCd8FeVNmKD4vq+dkPb/8bJLy+jArmIZ8vRhknpTh6kp1BqB7qHGQ=="], + + "@storybook/addon-essentials": ["@storybook/addon-essentials@7.4.5", "", { "dependencies": { "@storybook/addon-actions": "7.4.5", "@storybook/addon-backgrounds": "7.4.5", "@storybook/addon-controls": "7.4.5", "@storybook/addon-docs": "7.4.5", "@storybook/addon-highlight": "7.4.5", "@storybook/addon-measure": "7.4.5", "@storybook/addon-outline": "7.4.5", "@storybook/addon-toolbars": "7.4.5", "@storybook/addon-viewport": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/manager-api": "7.4.5", "@storybook/node-logger": "7.4.5", "@storybook/preview-api": "7.4.5", "ts-dedent": "^2.0.0" } }, "sha512-H7zZWJXZP0UU2kXfo9zlQfjIKHuuqYBK7PZ2/SL5y08mTrbtt1BfqYScz3xRvHocaFcsBWCXdy8jJULT4KFUpw=="], + + "@storybook/addon-highlight": ["@storybook/addon-highlight@7.4.5", "", { "dependencies": { "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/preview-api": "7.4.5" } }, "sha512-6Ru411+Iis4m2weKb8kB1eEssLvCHwFqAf4fjcOC//O5Vaf5+beHYZJUm/rzD0k/oUHfLCBwDBSBY5TLRegkdA=="], + + "@storybook/addon-interactions": ["@storybook/addon-interactions@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/instrumenter": "7.4.5", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "jest-mock": "^27.0.6", "polished": "^4.2.2", "ts-dedent": "^2.2.0" } }, "sha512-KDdV/THxj38VsuOevrUefev0rZPhzqUXCgrw1Jc2PsJGidHf9d9nnB7wbA9ZFYsxTz90M/Vk5sm7i1QkMmsquA=="], + + "@storybook/addon-links": ["@storybook/addon-links@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/router": "7.4.5", "@storybook/types": "7.4.5", "prop-types": "^15.7.2", "ts-dedent": "^2.0.0" } }, "sha512-eKczq3U5KfPLaxMUzzVQQrGVtzDshUmrSEEuWKf9ZbK3mh5yVuagIBb88edgUX58vZ3TJMvqQzq1+BtUoPHQ6Q=="], + + "@storybook/addon-mdx-gfm": ["@storybook/addon-mdx-gfm@7.4.5", "", { "dependencies": { "@storybook/node-logger": "7.4.5", "remark-gfm": "^3.0.1", "ts-dedent": "^2.0.0" } }, "sha512-Yk4PSKRruGkvHvAZo7t+NlREsMr2PP7HV1I6qPI57aMJj7eo+UqyyC8UJAfnyOi6FRQD0l7nzwYzwSugPchDIg=="], + + "@storybook/addon-measure": ["@storybook/addon-measure@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/types": "7.4.5", "tiny-invariant": "^1.3.1" } }, "sha512-FQGZniTH67nC1YPR4ep0p+isgxwLaNAmIAyCZWXPRTkZssIrnXVwNgi0A2QkHdxZvxj8yXGFTOVXLWEPT9YvFQ=="], + + "@storybook/addon-outline": ["@storybook/addon-outline@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/types": "7.4.5", "ts-dedent": "^2.0.0" } }, "sha512-eOH9BZzpehUz5FXD98OLnWgzmBFMvEB2kFfw5JiO7IRx7Fan80fx/WDQuMSNDOgLBCTTvsZ4TBMMXZHpw91WAw=="], + + "@storybook/addon-toolbars": ["@storybook/addon-toolbars@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5" } }, "sha512-PZlwUTIdQ18de3zNb+627VSF4UrCGIXDdikyO9O5j2Cd0xfr5uhS6tgQ+3AT0DfUj0UIkKxilwcAt+agpNyicA=="], + + "@storybook/addon-viewport": ["@storybook/addon-viewport@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5", "memoizerific": "^1.11.3", "prop-types": "^15.7.2" } }, "sha512-SBLnUMIztVrqJ0fRCsVg9KZ29APLIxqAvTsYHF3twy5KB2naeCFuX3K9LxSH7vbROI6zHEfnPduz/Ykyvu9yUg=="], + + "@storybook/blocks": ["@storybook/blocks@7.4.5", "", { "dependencies": { "@storybook/channels": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/components": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/csf": "^0.1.0", "@storybook/docs-tools": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/manager-api": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "@types/lodash": "^4.14.167", "color-convert": "^2.0.1", "dequal": "^2.0.2", "lodash": "^4.17.21", "markdown-to-jsx": "^7.1.8", "memoizerific": "^1.11.3", "polished": "^4.2.2", "react-colorful": "^5.1.2", "telejson": "^7.2.0", "tocbot": "^4.20.1", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" } }, "sha512-FhAIkCT2HrzJcKsC3mL5+uG3GrbS23mYAT1h3iyPjCliZzxfCCI9UCMUXqYx4Z/FmAGJgpsQQXiBFZuoTHO9aQ=="], + + "@storybook/builder-manager": ["@storybook/builder-manager@7.4.5", "", { "dependencies": { "@fal-works/esbuild-plugin-global-externals": "^2.1.2", "@storybook/core-common": "7.4.5", "@storybook/manager": "7.4.5", "@storybook/node-logger": "7.4.5", "@types/ejs": "^3.1.1", "@types/find-cache-dir": "^3.2.1", "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", "browser-assert": "^1.2.1", "ejs": "^3.1.8", "esbuild": "^0.18.0", "esbuild-plugin-alias": "^0.2.1", "express": "^4.17.3", "find-cache-dir": "^3.0.0", "fs-extra": "^11.1.0", "process": "^0.11.10", "util": "^0.12.4" } }, "sha512-Jhql8iZgK9cxDmG9NSTejsj5FptHni2TBa5Sea2Uz1NIBQ0OpzNdUfYVX6TN/PEq3QrWXTrAEKPqsL2qGjOrxw=="], + + "@storybook/builder-vite": ["@storybook/builder-vite@7.4.5", "", { "dependencies": { "@storybook/channels": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/csf-plugin": "7.4.5", "@storybook/mdx2-csf": "^1.0.0", "@storybook/node-logger": "7.4.5", "@storybook/preview": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/types": "7.4.5", "@types/find-cache-dir": "^3.2.1", "browser-assert": "^1.2.1", "es-module-lexer": "^0.9.3", "express": "^4.17.3", "find-cache-dir": "^3.0.0", "fs-extra": "^11.1.0", "magic-string": "^0.30.0", "remark-external-links": "^8.0.0", "remark-slug": "^6.0.0", "rollup": "^2.25.0 || ^3.3.0" } }, "sha512-0aIMvBIx2U/DhDjdjWCW/KIG3HAJpus8NIUIvkVAUCaA7Vn8XvnSsdaRSTTxaaJReFZcIxDf7MebHSCJ0UEKqQ=="], + + "@storybook/channels": ["@storybook/channels@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "qs": "^6.10.0", "telejson": "^7.2.0", "tiny-invariant": "^1.3.1" } }, "sha512-zWPZn4CxPFXsrrSRQ9JD8GmTeWeFYgr3sTBpe23hnhYookCXVNJ6AcaXogrT9b2ALfbB6MiFDbZIHHTgIgbWpg=="], + + "@storybook/cli": ["@storybook/cli@7.4.5", "", { "dependencies": { "@babel/core": "^7.22.9", "@babel/preset-env": "^7.22.9", "@babel/types": "^7.22.5", "@ndelangen/get-tarball": "^3.0.7", "@storybook/codemod": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/core-server": "7.4.5", "@storybook/csf-tools": "7.4.5", "@storybook/node-logger": "7.4.5", "@storybook/telemetry": "7.4.5", "@storybook/types": "7.4.5", "@types/semver": "^7.3.4", "@yarnpkg/fslib": "2.10.3", "@yarnpkg/libzip": "2.3.0", "chalk": "^4.1.0", "commander": "^6.2.1", "cross-spawn": "^7.0.3", "detect-indent": "^6.1.0", "envinfo": "^7.7.3", "execa": "^5.0.0", "express": "^4.17.3", "find-up": "^5.0.0", "fs-extra": "^11.1.0", "get-npm-tarball-url": "^2.0.3", "get-port": "^5.1.1", "giget": "^1.0.0", "globby": "^11.0.2", "jscodeshift": "^0.14.0", "leven": "^3.1.0", "ora": "^5.4.1", "prettier": "^2.8.0", "prompts": "^2.4.0", "puppeteer-core": "^2.1.1", "read-pkg-up": "^7.0.1", "semver": "^7.3.7", "simple-update-notifier": "^2.0.0", "strip-json-comments": "^3.0.1", "tempy": "^1.0.1", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" } }, "sha512-PlTkcHdKCugg3pD1zkBP/oFazcZsr7F3wdEmTvygfH0Cx/sQWg5wXBZCYKmf0ONRK4RKL3LVM8DRpeYiQVEFWg=="], + + "@storybook/client-logger": ["@storybook/client-logger@7.4.5", "", { "dependencies": { "@storybook/global": "^5.0.0" } }, "sha512-Bn6eTAjhPDUfLpvuxhKkpDpOtkadfkSmkBNBZRu3r0Dzk2J1nNyKV5K6D8dOU4PFVof4z/gXYj5bktT29jKsmw=="], + + "@storybook/codemod": ["@storybook/codemod@7.4.5", "", { "dependencies": { "@babel/core": "^7.22.9", "@babel/preset-env": "^7.22.9", "@babel/types": "^7.22.5", "@storybook/csf": "^0.1.0", "@storybook/csf-tools": "7.4.5", "@storybook/node-logger": "7.4.5", "@storybook/types": "7.4.5", "@types/cross-spawn": "^6.0.2", "cross-spawn": "^7.0.3", "globby": "^11.0.2", "jscodeshift": "^0.14.0", "lodash": "^4.17.21", "prettier": "^2.8.0", "recast": "^0.23.1" } }, "sha512-gyI2xliSv4vvnfNQN+0e3tRmT7beiq8q8iGjcBtpOhA2xrStyCR7PjbOfLXtRx2I/b50MDZMRTcckzeM3BLoWQ=="], + + "@storybook/components": ["@storybook/components@7.4.5", "", { "dependencies": { "@radix-ui/react-select": "^1.2.2", "@radix-ui/react-toolbar": "^1.0.4", "@storybook/client-logger": "7.4.5", "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "memoizerific": "^1.11.3", "use-resize-observer": "^9.1.0", "util-deprecate": "^1.0.2" } }, "sha512-boskkfvMBB8CFYY9+1ofFNyKrdWXTY/ghzt7oK80dz6f2Eseo/WXK3OsCdCq5vWbLRCdbgJ8zXG8pAFi4yBsxA=="], + + "@storybook/core-client": ["@storybook/core-client@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/preview-api": "7.4.5" } }, "sha512-d/qiCUZeOKY0HX/YmomxlccxJ2NKC3ttRrAsAXzJGypClKabv20X+qbeO/E7Kp5UQxIEJx1wuwJPcnlCvjgPDA=="], + + "@storybook/core-common": ["@storybook/core-common@7.4.5", "", { "dependencies": { "@storybook/core-events": "7.4.5", "@storybook/node-logger": "7.4.5", "@storybook/types": "7.4.5", "@types/find-cache-dir": "^3.2.1", "@types/node": "^16.0.0", "@types/node-fetch": "^2.6.4", "@types/pretty-hrtime": "^1.0.0", "chalk": "^4.1.0", "esbuild": "^0.18.0", "esbuild-register": "^3.4.0", "file-system-cache": "2.3.0", "find-cache-dir": "^3.0.0", "find-up": "^5.0.0", "fs-extra": "^11.1.0", "glob": "^10.0.0", "handlebars": "^4.7.7", "lazy-universal-dotenv": "^4.0.0", "node-fetch": "^2.0.0", "picomatch": "^2.3.0", "pkg-dir": "^5.0.0", "pretty-hrtime": "^1.0.3", "resolve-from": "^5.0.0", "ts-dedent": "^2.0.0" } }, "sha512-c4pBuILMD4YhSpJ+QpKtsUZpK+/rfolwOvzXfJwlN5EpYzMz6FjVR/LyX0cCT2YLI3X5YWRoCdvMxy5Aeryb8g=="], + + "@storybook/core-events": ["@storybook/core-events@7.4.5", "", { "dependencies": { "ts-dedent": "^2.0.0" } }, "sha512-Jzy/adSC95saYCZlgXE5j7jmiMLAXYpnBFBxEtBdXwSWEBb0zt21n1nyWBEAv9s/k2gqDXlPHKHeL5Mn6y40zA=="], + + "@storybook/core-server": ["@storybook/core-server@7.4.5", "", { "dependencies": { "@aw-web-design/x-default-browser": "1.4.126", "@discoveryjs/json-ext": "^0.5.3", "@storybook/builder-manager": "7.4.5", "@storybook/channels": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/csf": "^0.1.0", "@storybook/csf-tools": "7.4.5", "@storybook/docs-mdx": "^0.1.0", "@storybook/global": "^5.0.0", "@storybook/manager": "7.4.5", "@storybook/node-logger": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/telemetry": "7.4.5", "@storybook/types": "7.4.5", "@types/detect-port": "^1.3.0", "@types/node": "^16.0.0", "@types/pretty-hrtime": "^1.0.0", "@types/semver": "^7.3.4", "better-opn": "^3.0.2", "chalk": "^4.1.0", "cli-table3": "^0.6.1", "compression": "^1.7.4", "detect-port": "^1.3.0", "express": "^4.17.3", "fs-extra": "^11.1.0", "globby": "^11.0.2", "ip": "^2.0.0", "lodash": "^4.17.21", "open": "^8.4.0", "pretty-hrtime": "^1.0.3", "prompts": "^2.4.0", "read-pkg-up": "^7.0.1", "semver": "^7.3.7", "serve-favicon": "^2.5.0", "telejson": "^7.2.0", "tiny-invariant": "^1.3.1", "ts-dedent": "^2.0.0", "util": "^0.12.4", "util-deprecate": "^1.0.2", "watchpack": "^2.2.0", "ws": "^8.2.3" } }, "sha512-cW+Qx9Ls823577bd/s9Kv4M1MdKS8mkk6/+nYbwtAwH3hkdlb077rlk/ue0X4O9NZmCrtaJ84KNrBkeDUdFyLQ=="], + + "@storybook/csf": ["@storybook/csf@https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz", { "dependencies": { "type-fest": "^2.19.0" } }], + + "@storybook/csf-plugin": ["@storybook/csf-plugin@7.4.5", "", { "dependencies": { "@storybook/csf-tools": "7.4.5", "unplugin": "^1.3.1" } }, "sha512-8p3AnwIm3xXtQhiF7OQ0rBiP/Pn5OCMHRiT4FytRnNimGaw7gxRZ2xzM608QZHQ4A8rHfmgoM2FTwgxdC15ulA=="], + + "@storybook/csf-tools": ["@storybook/csf-tools@7.4.5", "", { "dependencies": { "@babel/generator": "^7.22.9", "@babel/parser": "^7.22.7", "@babel/traverse": "^7.22.8", "@babel/types": "^7.22.5", "@storybook/csf": "^0.1.0", "@storybook/types": "7.4.5", "fs-extra": "^11.1.0", "recast": "^0.23.1", "ts-dedent": "^2.0.0" } }, "sha512-xbm5HGYvlwF0Efivx37v9rO7Exel1/Tdb/Yv/vXn4D/hQeljNVLNz4Bomfy4EQ207rRsrGDSOHEhLUbHDimnxg=="], + + "@storybook/docs-mdx": ["@storybook/docs-mdx@https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz", {}], + + "@storybook/docs-tools": ["@storybook/docs-tools@7.4.5", "", { "dependencies": { "@storybook/core-common": "7.4.5", "@storybook/preview-api": "7.4.5", "@storybook/types": "7.4.5", "@types/doctrine": "^0.0.3", "doctrine": "^3.0.0", "lodash": "^4.17.21" } }, "sha512-ctK+yGb2nvWISSvCCzj3ZhDaAb7I2BLjbxuBGTyNPvl4V9UQ9LBYzdJwR50q+DfscxdwSHMSOE/0OnzmJdaSJA=="], + + "@storybook/global": ["@storybook/global@https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", {}], + + "@storybook/instrumenter": ["@storybook/instrumenter@7.4.5", "", { "dependencies": { "@storybook/channels": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/preview-api": "7.4.5" } }, "sha512-VLFOcmG75QhWa7MtmfEybIJEz5oT2Ry8xAy/pIVhQwyBaeW0kRT0MHWkixRTtWQmJs/78FmHE3FlgMnqpa5JoA=="], + + "@storybook/manager": ["@storybook/manager@7.4.5", "", {}, "sha512-yoqVktWzzC0f8cXsxErOEUfT+VFfWV/W7soytIPQuJFqNaq+BqR5A7WCeoY7BIv3mdpRjo4GKwerCsgoHYeHhg=="], + + "@storybook/manager-api": ["@storybook/manager-api@7.4.5", "", { "dependencies": { "@storybook/channels": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", "@storybook/router": "7.4.5", "@storybook/theming": "7.4.5", "@storybook/types": "7.4.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", "semver": "^7.3.7", "store2": "^2.14.2", "telejson": "^7.2.0", "ts-dedent": "^2.0.0" } }, "sha512-8Hdh5Tutet8xRy2fAknczfvpshz09eVnLd8m34vcFceUOYvEnvDbWerufhlEzovsF4v7U32uqbDHKdKTamWEQQ=="], + + "@storybook/mdx2-csf": ["@storybook/mdx2-csf@https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.0.0.tgz", {}], + + "@storybook/node-logger": ["@storybook/node-logger@7.4.5", "", {}, "sha512-fJSykphbryuEYj1qihbaTH5oOzD4NkptRxyf2uyBrpgkr5tCTq9d7GHheqaBuIdi513dsjlcIR7z5iHxW7ZD+Q=="], + + "@storybook/postinstall": ["@storybook/postinstall@7.4.5", "", {}, "sha512-MWRjnKkUpEe2VkHNNpv3zkuMvxM2Zu9DMxFENQaEmhqUHkIFh5klfFwzhSBRexVLzIh7DA1p7mntIpY5A6lh+Q=="], + + "@storybook/preview": ["@storybook/preview@7.4.5", "", {}, "sha512-hCVFoPJP0d7vFCJKaWEsDMa6LcRFcEikQ8Cy6Vo+trS8xXwvwE+vIBqyuPozl4O/MYD9iOlzjgZFNwaUUgX0Jg=="], + + "@storybook/preview-api": ["@storybook/preview-api@7.4.5", "", { "dependencies": { "@storybook/channels": "7.4.5", "@storybook/client-logger": "7.4.5", "@storybook/core-events": "7.4.5", "@storybook/csf": "^0.1.0", "@storybook/global": "^5.0.0", "@storybook/types": "7.4.5", "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", "qs": "^6.10.0", "synchronous-promise": "^2.0.15", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" } }, "sha512-6xXQZPyilkGVddfZBI7tMbMMgOyIoZTYgTnwSPTMsXxO0f0TvtNDmGdwhn0I1nREHKfiQGpcQe6gwddEMnGtSg=="], + + "@storybook/react": ["@storybook/react@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/core-client": "7.4.5", "@storybook/docs-tools": "7.4.5", "@storybook/global": "^5.0.0", "@storybook/preview-api": "7.4.5", "@storybook/react-dom-shim": "7.4.5", "@storybook/types": "7.4.5", "@types/escodegen": "^0.0.6", "@types/estree": "^0.0.51", "@types/node": "^16.0.0", "acorn": "^7.4.1", "acorn-jsx": "^5.3.1", "acorn-walk": "^7.2.0", "escodegen": "^2.1.0", "html-tags": "^3.1.0", "lodash": "^4.17.21", "prop-types": "^15.7.2", "react-element-to-jsx-string": "^15.0.0", "ts-dedent": "^2.0.0", "type-fest": "~2.19", "util-deprecate": "^1.0.2" } }, "sha512-Tiylrs3uFO8QSvH1w3ueSxlAgh2fteH0edRVKaX01M/h47+QqEiZqq/dYkVDvLHngF+CCCwE3OY8nNe6L14Xkw=="], + + "@storybook/react-dom-shim": ["@storybook/react-dom-shim@7.4.5", "", {}, "sha512-/hGe8yuiWbT7L3ZsllmJPgxT9MEQE3k23FhliyKx6IGHsWoYaEsPYPZ9tygqtKY8RpqqMUKWz8+kbO79zUxaoQ=="], + + "@storybook/react-vite": ["@storybook/react-vite@7.4.5", "", { "dependencies": { "@joshwooding/vite-plugin-react-docgen-typescript": "0.2.1", "@rollup/pluginutils": "^5.0.2", "@storybook/builder-vite": "7.4.5", "@storybook/react": "7.4.5", "@vitejs/plugin-react": "^3.0.1", "ast-types": "^0.14.2", "magic-string": "^0.30.0", "react-docgen": "6.0.0-alpha.3" } }, "sha512-VfEktqZlSiAcM0oqUnXvQDIFM/G3pOZSW9VCcdQp2NWbsG/UVH42++ZkT0qJmQtW+Kkr8mTofLK5H1v5si5Z1A=="], + + "@storybook/router": ["@storybook/router@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "memoizerific": "^1.11.3", "qs": "^6.10.0" } }, "sha512-IM4IhiPiXsx3FAUeUOAB47uiuUS8Yd37VQcNlXLBO28GgHoTSYOrjS+VTGLIV5cAGKr8+H5pFB+q35BnlFUpkQ=="], + + "@storybook/telemetry": ["@storybook/telemetry@7.4.5", "", { "dependencies": { "@storybook/client-logger": "7.4.5", "@storybook/core-common": "7.4.5", "@storybook/csf-tools": "7.4.5", "chalk": "^4.1.0", "detect-package-manager": "^2.0.1", "fetch-retry": "^5.0.2", "fs-extra": "^11.1.0", "read-pkg-up": "^7.0.1" } }, "sha512-JbhQXZF5sqS2c7Cf+vAtuKTdTSBDco+liUP2UGQFjqdacTRLVzxyj+YY2UH4aAQn7wpmnQ67iHnqFp0+fdYmAA=="], + + "@storybook/testing-library": ["@storybook/testing-library@0.2.1", "", { "dependencies": { "@testing-library/dom": "^9.0.0", "@testing-library/user-event": "~14.4.0", "ts-dedent": "^2.2.0" } }, "sha512-AdbfLCm1C2nEFrhA3ScdicfW6Fjcorehr6RlGwECMiWwaXisnP971Wd4psqtWxlAqQo4tYBZ0f6rJ3J78JLtsg=="], + + "@storybook/theming": ["@storybook/theming@7.4.5", "", { "dependencies": { "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", "@storybook/client-logger": "7.4.5", "@storybook/global": "^5.0.0", "memoizerific": "^1.11.3" } }, "sha512-QSIJDIMzOegzlhubIBaYIovf4mlf+AVL0SmQOskPS8GZ6s9t77yUUI6gZTEjO+S4eB3djXRsfTTijQ8+z4XmRA=="], + + "@storybook/types": ["@storybook/types@7.4.5", "", { "dependencies": { "@storybook/channels": "7.4.5", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", "file-system-cache": "2.3.0" } }, "sha512-DTWFNjfRTpncjufDoUs0QnNkgHG2qThGKWL1D6sO18cYI02zWPyHWD8/cbqlvtT7XIGe3s1iUEfCTdU5GcwWBA=="], + + "@stylelint/postcss-css-in-js": ["@stylelint/postcss-css-in-js@https://registry.npmjs.org/@stylelint/postcss-css-in-js/-/postcss-css-in-js-0.37.3.tgz", { "dependencies": { "@babel/core": "^7.17.9" } }], + + "@stylelint/postcss-markdown": ["@stylelint/postcss-markdown@https://registry.npmjs.org/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz", { "dependencies": { "remark": "^13.0.0", "unist-util-find-all-after": "^3.0.2" } }], + + "@svgr/babel-plugin-add-jsx-attribute": ["@svgr/babel-plugin-add-jsx-attribute@https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", {}], + + "@svgr/babel-plugin-remove-jsx-attribute": ["@svgr/babel-plugin-remove-jsx-attribute@https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", {}], + + "@svgr/babel-plugin-remove-jsx-empty-expression": ["@svgr/babel-plugin-remove-jsx-empty-expression@https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", {}], + + "@svgr/babel-plugin-replace-jsx-attribute-value": ["@svgr/babel-plugin-replace-jsx-attribute-value@https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", {}], + + "@svgr/babel-plugin-svg-dynamic-title": ["@svgr/babel-plugin-svg-dynamic-title@https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", {}], + + "@svgr/babel-plugin-svg-em-dimensions": ["@svgr/babel-plugin-svg-em-dimensions@https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", {}], + + "@svgr/babel-plugin-transform-react-native-svg": ["@svgr/babel-plugin-transform-react-native-svg@https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", {}], + + "@svgr/babel-plugin-transform-svg-component": ["@svgr/babel-plugin-transform-svg-component@https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", {}], + + "@svgr/babel-preset": ["@svgr/babel-preset@https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", { "dependencies": { "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", "@svgr/babel-plugin-transform-svg-component": "^5.5.0" } }], + + "@svgr/core": ["@svgr/core@https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", { "dependencies": { "@svgr/plugin-jsx": "^5.5.0", "camelcase": "^6.2.0", "cosmiconfig": "^7.0.0" } }], + + "@svgr/hast-util-to-babel-ast": ["@svgr/hast-util-to-babel-ast@https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", { "dependencies": { "@babel/types": "^7.12.6" } }], + + "@svgr/plugin-jsx": ["@svgr/plugin-jsx@https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", { "dependencies": { "@babel/core": "^7.12.3", "@svgr/babel-preset": "^5.5.0", "@svgr/hast-util-to-babel-ast": "^5.5.0", "svg-parser": "^2.0.2" } }], + + "@svgx/core": ["@svgx/core@https://registry.npmjs.org/@svgx/core/-/core-1.0.1.tgz", { "dependencies": { "@types/estree": "^1.0.0", "astring": "^1.8.3", "estraverse": "^5.3.0", "estree-util-build-jsx": "^2.2.0", "estree-util-to-js": "^1.1.0", "hast-util-from-html": "^1.0.0", "hast-util-to-estree": "^2.1.0", "parse5": "~6.0.0", "svgo": "^3.0.2" } }], + + "@svgx/vite-plugin-react": ["@svgx/vite-plugin-react@https://registry.npmjs.org/@svgx/vite-plugin-react/-/vite-plugin-react-1.0.1.tgz", { "dependencies": { "@svgx/core": "^1.0.1", "vite": "^4.0.4" } }], + + "@swc/helpers": ["@swc/helpers@0.5.19", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA=="], + + "@testing-library/dom": ["@testing-library/dom@9.3.3", "", { "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", "aria-query": "5.1.3", "chalk": "^4.1.0", "dom-accessibility-api": "^0.5.9", "lz-string": "^1.5.0", "pretty-format": "^27.0.2" } }, "sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw=="], + + "@testing-library/jest-dom": ["@testing-library/jest-dom@6.1.4", "", { "dependencies": { "@adobe/css-tools": "^4.3.1", "@babel/runtime": "^7.9.2", "aria-query": "^5.0.0", "chalk": "^3.0.0", "css.escape": "^1.5.1", "dom-accessibility-api": "^0.5.6", "lodash": "^4.17.15", "redent": "^3.0.0" } }, "sha512-wpoYrCYwSZ5/AxcrjLxJmCU6I5QAJXslEeSiMQqaWmP2Kzpd1LvF/qxmAIW2qposULGWq2gw30GgVNFLSc2Jnw=="], + + "@testing-library/react": ["@testing-library/react@14.1.0", "", { "dependencies": { "@babel/runtime": "^7.12.5", "@testing-library/dom": "^9.0.0", "@types/react-dom": "^18.0.0" } }, "sha512-hcvfZEEyO0xQoZeHmUbuMs7APJCGELpilL7bY+BaJaMP57aWc6q1etFwScnoZDheYjk4ESdlzPdQ33IbsKAK/A=="], + + "@testing-library/user-event": ["@testing-library/user-event@14.5.1", "", {}, "sha512-UCcUKrUYGj7ClomOo2SpNVvx4/fkd/2BbIHDCle8A0ax+P3bU7yJwDBDrS6ZwdTMARWTGODX1hEsCcO+7beJjg=="], + + "@tootallnate/once": ["@tootallnate/once@2.0.0", "", {}, "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="], + + "@trysound/sax": ["@trysound/sax@https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", {}], + + "@ts-jison/common": ["@ts-jison/common@0.4.1-alpha.1", "", {}, "sha512-SDbHzq+UMD+V3ciKVBHwCEgVqSeyQPTCjOsd/ZNTGySUVg4x3EauR9ZcEfdVFAsYRR38XWgDI+spq5LDY46KvQ=="], + + "@ts-jison/lexer": ["@ts-jison/lexer@0.4.1-alpha.1", "", { "dependencies": { "@ts-jison/common": "^0.4.1-alpha.1" } }, "sha512-5C1Wr+wixAzn2MOFtgy7KbT6N6j9mhmbjAtyvOqZKsikKtNOQj22MM5HxT+ooRexG2NbtxnDSXYdhHR1Lg58ow=="], + + "@ts-jison/parser": ["@ts-jison/parser@0.4.1-alpha.1", "", { "dependencies": { "@ts-jison/common": "^0.4.1-alpha.1", "@ts-jison/lexer": "^0.4.1-alpha.1" } }, "sha512-xNj+qOez/7dju44LlYiTlCjxMzW5oek9EckUAElfln/GBK9vgMSk0swWcnacMr0TYbGjUQuXvL2wEgmDf5WajQ=="], + + "@tufjs/canonical-json": ["@tufjs/canonical-json@2.0.0", "", {}, "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA=="], + + "@tufjs/models": ["@tufjs/models@2.0.0", "", { "dependencies": { "@tufjs/canonical-json": "2.0.0", "minimatch": "^9.0.3" } }, "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg=="], + + "@tybys/wasm-util": ["@tybys/wasm-util@0.10.1", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg=="], + + "@types/aria-query": ["@types/aria-query@https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", {}], + + "@types/babel__core": ["@types/babel__core@https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", { "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }], + + "@types/babel__generator": ["@types/babel__generator@https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", { "dependencies": { "@babel/types": "^7.0.0" } }], + + "@types/babel__template": ["@types/babel__template@https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", { "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }], + + "@types/babel__traverse": ["@types/babel__traverse@https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", { "dependencies": { "@babel/types": "^7.3.0" } }], + + "@types/body-parser": ["@types/body-parser@https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", { "dependencies": { "@types/connect": "*", "@types/node": "*" } }], + + "@types/chai": ["@types/chai@4.3.10", "", {}, "sha512-of+ICnbqjmFCiixUnqRulbylyXQrPqIGf/B3Jax1wIF3DvSheysQxAWvqHhZiW3IQrycvokcLcFQlveGp+vyNg=="], + + "@types/chai-subset": ["@types/chai-subset@1.3.5", "", { "dependencies": { "@types/chai": "*" } }, "sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A=="], + + "@types/classnames": ["@types/classnames@https://registry.npmjs.org/@types/classnames/-/classnames-2.3.1.tgz", { "dependencies": { "classnames": "*" } }], + + "@types/command-line-args": ["@types/command-line-args@5.2.3", "", {}, "sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw=="], + + "@types/command-line-usage": ["@types/command-line-usage@5.0.4", "", {}, "sha512-BwR5KP3Es/CSht0xqBcUXS3qCAUVXwpRKsV2+arxeb65atasuXG9LykC9Ab10Cw3s2raH92ZqOeILaQbsB2ACg=="], + + "@types/connect": ["@types/connect@https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", { "dependencies": { "@types/node": "*" } }], + + "@types/cross-spawn": ["@types/cross-spawn@6.0.2", "", { "dependencies": { "@types/node": "*" } }, "sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw=="], + + "@types/debug": ["@types/debug@https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", { "dependencies": { "@types/ms": "*" } }], + + "@types/detect-port": ["@types/detect-port@https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz", {}], + + "@types/doctrine": ["@types/doctrine@https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", {}], + + "@types/ejs": ["@types/ejs@https://registry.npmjs.org/@types/ejs/-/ejs-3.1.2.tgz", {}], + + "@types/emscripten": ["@types/emscripten@1.39.6", "", {}, "sha512-H90aoynNhhkQP6DRweEjJp5vfUVdIj7tdPLsu7pq89vODD/lcugKfZOsfgwpvM6XUewEp2N5dCg1Uf3Qe55Dcg=="], + + "@types/escodegen": ["@types/escodegen@https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", {}], + + "@types/eslint": ["@types/eslint@https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", { "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }], + + "@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", {}], + + "@types/estree-jsx": ["@types/estree-jsx@https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", { "dependencies": { "@types/estree": "*" } }], + + "@types/express": ["@types/express@https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", { "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }], + + "@types/express-serve-static-core": ["@types/express-serve-static-core@https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", { "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*" } }], + + "@types/find-cache-dir": ["@types/find-cache-dir@https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", {}], + + "@types/fs-extra": ["@types/fs-extra@8.1.5", "", { "dependencies": { "@types/node": "*" } }, "sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ=="], + + "@types/glob": ["@types/glob@https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", { "dependencies": { "@types/minimatch": "*", "@types/node": "*" } }], + + "@types/graceful-fs": ["@types/graceful-fs@https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", { "dependencies": { "@types/node": "*" } }], + + "@types/hast": ["@types/hast@https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", { "dependencies": { "@types/unist": "*" } }], + + "@types/history": ["@types/history@https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", {}], + + "@types/istanbul-lib-coverage": ["@types/istanbul-lib-coverage@https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", {}], + + "@types/istanbul-lib-report": ["@types/istanbul-lib-report@https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", { "dependencies": { "@types/istanbul-lib-coverage": "*" } }], + + "@types/istanbul-reports": ["@types/istanbul-reports@https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", { "dependencies": { "@types/istanbul-lib-report": "*" } }], + + "@types/js-cookie": ["@types/js-cookie@https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.7.tgz", {}], + + "@types/js-yaml": ["@types/js-yaml@https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz", {}], + + "@types/json-schema": ["@types/json-schema@https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", {}], + + "@types/json-stable-stringify": ["@types/json-stable-stringify@https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz", {}], + + "@types/json5": ["@types/json5@https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", {}], + + "@types/lodash": ["@types/lodash@https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz", {}], + + "@types/md5": ["@types/md5@2.3.4", "", {}, "sha512-e/L4hvpCK8GavKXmP02QlNilZOj8lpmZGGA9QGMMPZjCUoKgi1B4BvhXcbruIi6r+PqzpcjLfda/tocpHFKqDA=="], + + "@types/mdast": ["@types/mdast@https://registry.npmjs.org/@types/mdast/-/mdast-3.0.11.tgz", { "dependencies": { "@types/unist": "*" } }], + + "@types/mdx": ["@types/mdx@https://registry.npmjs.org/@types/mdx/-/mdx-2.0.4.tgz", {}], + + "@types/mime": ["@types/mime@https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", {}], + + "@types/mime-types": ["@types/mime-types@https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz", {}], + + "@types/minimatch": ["@types/minimatch@https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", {}], + + "@types/minimist": ["@types/minimist@https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", {}], + + "@types/mockjs": ["@types/mockjs@https://registry.npmjs.org/@types/mockjs/-/mockjs-1.0.7.tgz", {}], + + "@types/ms": ["@types/ms@https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", {}], + + "@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-18.16.0.tgz", {}], + + "@types/node-fetch": ["@types/node-fetch@2.6.4", "", { "dependencies": { "@types/node": "*", "form-data": "^3.0.0" } }, "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg=="], + + "@types/normalize-package-data": ["@types/normalize-package-data@2.4.4", "", {}, "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="], + + "@types/parse-json": ["@types/parse-json@https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", {}], + + "@types/pretty-hrtime": ["@types/pretty-hrtime@https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", {}], + + "@types/prismjs": ["@types/prismjs@1.26.1", "", {}, "sha512-Q7jDsRbzcNHIQje15CS/piKhu6lMLb9jwjxSfEIi4KcFKXW23GoJMkwQiJ8VObyfx+VmUaDcJxXaWN+cTCjVog=="], + + "@types/prop-types": ["@types/prop-types@https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", {}], + + "@types/qs": ["@types/qs@https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", {}], + + "@types/range-parser": ["@types/range-parser@https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", {}], + + "@types/react": ["@types/react@https://registry.npmjs.org/@types/react/-/react-18.2.0.tgz", { "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", "csstype": "^3.0.2" } }], + + "@types/react-csv": ["@types/react-csv@1.1.6", "", { "dependencies": { "@types/react": "*" } }, "sha512-D8MmuwIrqVr1ilgCEhB5U7uyMeojPC+Ffr/Zg/galVEFMDy/dbmegj38Bs5hWwgC3VVjCyo9GR+YHrC1fnFm1w=="], + + "@types/react-custom-scrollbars": ["@types/react-custom-scrollbars@4.0.13", "", { "dependencies": { "@types/react": "*" } }, "sha512-t+15reWgAE1jXlrhaZoxjuH/SQf+EG0rzAzSCzTIkSiP5CDT7KhoExNPwIa6uUxtPkjc3gdW/ry7GetLEwCfGA=="], + + "@types/react-dom": ["@types/react-dom@https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.0.tgz", { "dependencies": { "@types/react": "*" } }], + + "@types/react-resizable": ["@types/react-resizable@3.0.6", "", { "dependencies": { "@types/react": "*" } }, "sha512-7BHYsFJkkmkG0v7uIub8+aVrqw6jYibpsChrrMQLp1LMV/Yyb3f4gB82kjRpN4QPXy3tWPtZ/oUVeNHbs5BusA=="], + + "@types/react-responsive-masonry": ["@types/react-responsive-masonry@2.1.3", "", { "dependencies": { "@types/react": "*" } }, "sha512-aOFUtv3QwNMmy0BgpQpvivQ/+vivMTB6ARrzf9eTSXsLzXpVnfEtjpHpSknYDnr8KaQmlgeauAj8E7wo/qMOTg=="], + + "@types/react-router": ["@types/react-router@https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", { "dependencies": { "@types/history": "^4.7.11", "@types/react": "*" } }], + + "@types/react-router-dom": ["@types/react-router-dom@https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", { "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", "@types/react-router": "*" } }], + + "@types/react-table": ["@types/react-table@7.7.15", "", { "dependencies": { "@types/react": "*" } }, "sha512-tlXKCeq4gk2xT2lB+Hbp/dO5yYZ899HwQOAp/3o3hKw8wp7ngNpdB90BNWE6kWCm5K2KzmEsHnYoJheSS5SVjg=="], + + "@types/react-virtualized": ["@types/react-virtualized@9.21.22", "", { "dependencies": { "@types/prop-types": "*", "@types/react": "*" } }, "sha512-YRifyCKnBG84+J/Hny0f3bo8BRrcNT74CvsAVpQpZcS83fdC7lP7RfzwL2ND8/ihhpnDFL1IbxJ9MpQNaKUDuQ=="], + + "@types/scheduler": ["@types/scheduler@https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", {}], + + "@types/semver": ["@types/semver@https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", {}], + + "@types/serve-static": ["@types/serve-static@https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", { "dependencies": { "@types/mime": "*", "@types/node": "*" } }], + + "@types/unist": ["@types/unist@https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", {}], + + "@types/use-sync-external-store": ["@types/use-sync-external-store@0.0.6", "", {}, "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg=="], + + "@types/ws": ["@types/ws@https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", { "dependencies": { "@types/node": "*" } }], + + "@types/yargs": ["@types/yargs@16.0.5", "", { "dependencies": { "@types/yargs-parser": "*" } }, "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ=="], + + "@types/yargs-parser": ["@types/yargs-parser@https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", {}], + + "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@5.59.5", "", { "dependencies": { "@eslint-community/regexpp": "^4.4.0", "@typescript-eslint/scope-manager": "5.59.5", "@typescript-eslint/type-utils": "5.59.5", "@typescript-eslint/utils": "5.59.5", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "natural-compare-lite": "^1.4.0", "semver": "^7.3.7", "tsutils": "^3.21.0" } }, "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg=="], + + "@typescript-eslint/experimental-utils": ["@typescript-eslint/experimental-utils@https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", { "dependencies": { "@types/json-schema": "^7.0.7", "@typescript-eslint/scope-manager": "4.33.0", "@typescript-eslint/types": "4.33.0", "@typescript-eslint/typescript-estree": "4.33.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0" } }], + + "@typescript-eslint/parser": ["@typescript-eslint/parser@5.59.5", "", { "dependencies": { "@typescript-eslint/scope-manager": "5.59.5", "@typescript-eslint/types": "5.59.5", "@typescript-eslint/typescript-estree": "5.59.5", "debug": "^4.3.4" } }, "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw=="], + + "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", { "dependencies": { "@typescript-eslint/types": "5.59.5", "@typescript-eslint/visitor-keys": "5.59.5" } }], + + "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", { "dependencies": { "@typescript-eslint/typescript-estree": "5.59.5", "@typescript-eslint/utils": "5.59.5", "debug": "^4.3.4", "tsutils": "^3.21.0" } }], + + "@typescript-eslint/types": ["@typescript-eslint/types@https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", {}], + + "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", { "dependencies": { "@typescript-eslint/types": "5.59.5", "@typescript-eslint/visitor-keys": "5.59.5", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", "semver": "^7.3.7", "tsutils": "^3.21.0" } }], + + "@typescript-eslint/utils": ["@typescript-eslint/utils@https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", "@typescript-eslint/scope-manager": "5.59.5", "@typescript-eslint/types": "5.59.5", "@typescript-eslint/typescript-estree": "5.59.5", "eslint-scope": "^5.1.1", "semver": "^7.3.7" } }], + + "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", { "dependencies": { "@typescript-eslint/types": "5.59.5", "eslint-visitor-keys": "^3.3.0" } }], + + "@umijs/fabric": ["@umijs/fabric@https://registry.npmjs.org/@umijs/fabric/-/fabric-2.14.1.tgz", { "dependencies": { "@babel/core": "^7.12.10", "@babel/eslint-parser": "^7.12.1", "@babel/plugin-proposal-class-properties": "^7.13.0", "@babel/plugin-proposal-decorators": "^7.13.5", "@babel/preset-env": "^7.12.11", "@babel/preset-react": "^7.12.10", "@babel/preset-typescript": "^7.12.7", "@typescript-eslint/eslint-plugin": "^5.8.1", "@typescript-eslint/parser": "^5.9.0", "chalk": "^4.1.1", "eslint": "^7.11.0", "eslint-config-prettier": "^8.3.0", "eslint-formatter-pretty": "^4.0.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-jest": "^24.0.1", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-react": "^7.21.5", "eslint-plugin-react-hooks": "^4.1.2", "eslint-plugin-unicorn": "^20.0.0", "fast-glob": "^3.2.4", "os-locale": "^5.0.0", "prettier": "^2.3.2", "prettier-plugin-packagejson": "2.3.0", "prettier-plugin-two-style-order": "^1.0.0", "stylelint": "^13.0.0", "stylelint-config-css-modules": "^2.2.0", "stylelint-config-prettier": "^8.0.1", "stylelint-config-standard": "^20.0.0", "stylelint-declaration-block-no-ignored-properties": "^2.1.0", "typescript": "^4.5.4" } }], + + "@umijs/route-utils": ["@umijs/route-utils@https://registry.npmjs.org/@umijs/route-utils/-/route-utils-4.0.1.tgz", {}], + + "@umijs/use-params": ["@umijs/use-params@https://registry.npmjs.org/@umijs/use-params/-/use-params-1.0.9.tgz", {}], + + "@urql/core": ["@urql/core@4.1.1", "", { "dependencies": { "@0no-co/graphql.web": "^1.0.1", "wonka": "^6.3.2" } }, "sha512-iIoAy6BY+BUZZ7KIpnMT7C9q+ULf5ZCVxGe3/i7WZSJBrQa2h1QkIMhL+8fAKmOn9gt83jSIv5drWWnhZ9izEA=="], + + "@urql/exchange-auth": ["@urql/exchange-auth@2.1.6", "", { "dependencies": { "@urql/core": ">=4.1.0", "wonka": "^6.3.2" } }, "sha512-snOlt7p5kYq0KnPDuXkKe2qW3/BucQZOElvTeo3svLQuk9JiNJVnm6ffQ6QGiGO+G3AtMrctnno1+X44fLtDuQ=="], + + "@urql/exchange-retry": ["@urql/exchange-retry@1.2.0", "", { "dependencies": { "@urql/core": ">=4.0.0", "wonka": "^6.3.2" } }, "sha512-1O/biKiVhhn0EtvDF4UOvz325K4RrLupfL8rHcmqD2TBLv4qVDWQuzx4JGa1FfqjjRb+C9TNZ6w19f32Mq85Ug=="], + + "@vitejs/plugin-react": ["@vitejs/plugin-react@5.2.0", "", { "dependencies": { "@babel/core": "^7.29.0", "@babel/plugin-transform-react-jsx-self": "^7.27.1", "@babel/plugin-transform-react-jsx-source": "^7.27.1", "@rolldown/pluginutils": "1.0.0-rc.3", "@types/babel__core": "^7.20.5", "react-refresh": "^0.18.0" }, "peerDependencies": { "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw=="], + + "@vitest/expect": ["@vitest/expect@0.34.6", "", { "dependencies": { "@vitest/spy": "0.34.6", "@vitest/utils": "0.34.6", "chai": "^4.3.10" } }, "sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw=="], + + "@vitest/runner": ["@vitest/runner@0.34.6", "", { "dependencies": { "@vitest/utils": "0.34.6", "p-limit": "^4.0.0", "pathe": "^1.1.1" } }, "sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ=="], + + "@vitest/snapshot": ["@vitest/snapshot@0.34.6", "", { "dependencies": { "magic-string": "^0.30.1", "pathe": "^1.1.1", "pretty-format": "^29.5.0" } }, "sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w=="], + + "@vitest/spy": ["@vitest/spy@0.34.6", "", { "dependencies": { "tinyspy": "^2.1.1" } }, "sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ=="], + + "@vitest/utils": ["@vitest/utils@0.34.6", "", { "dependencies": { "diff-sequences": "^29.4.3", "loupe": "^2.3.6", "pretty-format": "^29.5.0" } }, "sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A=="], + + "@vitjs/core": ["@vitjs/core@https://registry.npmjs.org/@vitjs/core/-/core-0.9.0.tgz", { "dependencies": { "lodash": "^4.17.21", "mkdirp": "^1.0.4" } }], + + "@vitjs/runtime": ["@vitjs/runtime@https://registry.npmjs.org/@vitjs/runtime/-/runtime-0.9.2.tgz", { "dependencies": { "@types/react-router-dom": "^5.3.3", "history-with-query": "^4.10.4", "react-router-dom": "^5.2.0", "use-subscription": "~1.5.1" } }], + + "@vitjs/utils": ["@vitjs/utils@https://registry.npmjs.org/@vitjs/utils/-/utils-0.9.0.tgz", {}], + + "@vitjs/vit": ["@vitjs/vit@https://registry.npmjs.org/@vitjs/vit/-/vit-0.9.1.tgz", { "dependencies": { "@ant-design/icons": "^4.6.2", "@vitjs/core": "^0.9.0", "@vitjs/utils": "^0.9.0", "chokidar": "^3.5.1", "globby": "^11.0.3", "lodash": "^4.17.21", "mockjs": "^1.1.0", "mustache": "^4.1.0", "semver": "^7.3.7", "vite-plugin-mock": "^2.4.2" } }], + + "@whatwg-node/events": ["@whatwg-node/events@https://registry.npmjs.org/@whatwg-node/events/-/events-0.0.3.tgz", {}], + + "@whatwg-node/fetch": ["@whatwg-node/fetch@https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.8.tgz", { "dependencies": { "@peculiar/webcrypto": "^1.4.0", "@whatwg-node/node-fetch": "^0.3.6", "busboy": "^1.6.0", "urlpattern-polyfill": "^8.0.0", "web-streams-polyfill": "^3.2.1" } }], + + "@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz", { "dependencies": { "@whatwg-node/events": "^0.0.3", "busboy": "^1.6.0", "fast-querystring": "^1.1.1", "fast-url-parser": "^1.1.3", "tslib": "^2.3.1" } }], + + "@windicss/config": ["@windicss/config@https://registry.npmjs.org/@windicss/config/-/config-1.8.10.tgz", { "dependencies": { "debug": "^4.3.4", "jiti": "^1.16.0", "windicss": "^3.5.6" } }], + + "@windicss/plugin-utils": ["@windicss/plugin-utils@https://registry.npmjs.org/@windicss/plugin-utils/-/plugin-utils-1.8.10.tgz", { "dependencies": { "@antfu/utils": "^0.7.2", "@windicss/config": "1.8.10", "debug": "^4.3.4", "fast-glob": "^3.2.12", "magic-string": "^0.27.0", "micromatch": "^4.0.5", "windicss": "^3.5.6" } }], + + "@wry/context": ["@wry/context@0.7.3", "", { "dependencies": { "tslib": "^2.3.0" } }, "sha512-Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA=="], + + "@wry/equality": ["@wry/equality@0.5.6", "", { "dependencies": { "tslib": "^2.3.0" } }, "sha512-D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA=="], + + "@wry/trie": ["@wry/trie@0.4.3", "", { "dependencies": { "tslib": "^2.3.0" } }, "sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w=="], + + "@yarnpkg/esbuild-plugin-pnp": ["@yarnpkg/esbuild-plugin-pnp@https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", { "dependencies": { "tslib": "^2.4.0" } }], + + "@yarnpkg/fslib": ["@yarnpkg/fslib@2.10.3", "", { "dependencies": { "@yarnpkg/libzip": "^2.3.0", "tslib": "^1.13.0" } }, "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A=="], + + "@yarnpkg/libzip": ["@yarnpkg/libzip@2.3.0", "", { "dependencies": { "@types/emscripten": "^1.39.6", "tslib": "^1.13.0" } }, "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg=="], + + "JSONStream": ["JSONStream@1.3.5", "", { "dependencies": { "jsonparse": "^1.2.0", "through": ">=2.2.7 <3" } }, "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ=="], + + "abab": ["abab@2.0.6", "", {}, "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="], + + "abbrev": ["abbrev@2.0.0", "", {}, "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ=="], + + "accepts": ["accepts@https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", { "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }], + + "acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", {}], + + "acorn-jsx": ["acorn-jsx@https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", {}], + + "acorn-walk": ["acorn-walk@https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", {}], + + "add-px-to-style": ["add-px-to-style@1.0.0", "", {}, "sha512-YMyxSlXpPjD8uWekCQGuN40lV4bnZagUwqa2m/uFv1z/tNImSk9fnXVMUI5qwME/zzI3MMQRvjZ+69zyfSSyew=="], + + "address": ["address@https://registry.npmjs.org/address/-/address-1.2.2.tgz", {}], + + "agent-base": ["agent-base@7.1.0", "", { "dependencies": { "debug": "^4.3.4" } }, "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg=="], + + "aggregate-error": ["aggregate-error@https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", { "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" } }], + + "ahooks": ["ahooks@3.7.8", "", { "dependencies": { "@babel/runtime": "^7.21.0", "@types/js-cookie": "^2.x.x", "ahooks-v3-count": "^1.0.0", "dayjs": "^1.9.1", "intersection-observer": "^0.12.0", "js-cookie": "^2.x.x", "lodash": "^4.17.21", "resize-observer-polyfill": "^1.5.1", "screenfull": "^5.0.0", "tslib": "^2.4.1" } }, "sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA=="], + + "ahooks-v3-count": ["ahooks-v3-count@https://registry.npmjs.org/ahooks-v3-count/-/ahooks-v3-count-1.0.0.tgz", {}], + + "ajv": ["ajv@https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }], + + "ajv-formats": ["ajv-formats@https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", { "dependencies": { "ajv": "^8.0.0" } }], + + "ajv-keywords": ["ajv-keywords@https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", { "dependencies": { "fast-deep-equal": "^3.1.3" } }], + + "ansi-colors": ["ansi-colors@https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", {}], + + "ansi-escapes": ["ansi-escapes@https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", { "dependencies": { "type-fest": "^0.21.3" } }], + + "ansi-regex": ["ansi-regex@https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", {}], + + "ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", { "dependencies": { "color-convert": "^2.0.1" } }], + + "ansicolors": ["ansicolors@https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", {}], + + "antd": ["antd@5.13.1", "", { "dependencies": { "@ant-design/colors": "^7.0.2", "@ant-design/cssinjs": "^1.18.2", "@ant-design/icons": "^5.2.6", "@ant-design/react-slick": "~1.0.2", "@ctrl/tinycolor": "^3.6.1", "@rc-component/color-picker": "~1.5.1", "@rc-component/mutate-observer": "^1.1.0", "@rc-component/tour": "~1.12.1", "@rc-component/trigger": "^1.18.2", "classnames": "^2.5.1", "copy-to-clipboard": "^3.3.3", "dayjs": "^1.11.10", "qrcode.react": "^3.1.0", "rc-cascader": "~3.21.0", "rc-checkbox": "~3.1.0", "rc-collapse": "~3.7.2", "rc-dialog": "~9.3.4", "rc-drawer": "~7.0.0", "rc-dropdown": "~4.1.0", "rc-field-form": "~1.41.0", "rc-image": "~7.5.1", "rc-input": "~1.4.3", "rc-input-number": "~8.6.1", "rc-mentions": "~2.10.1", "rc-menu": "~9.12.4", "rc-motion": "^2.9.0", "rc-notification": "~5.3.0", "rc-pagination": "~4.0.4", "rc-picker": "~3.14.6", "rc-progress": "~3.5.1", "rc-rate": "~2.12.0", "rc-resize-observer": "^1.4.0", "rc-segmented": "~2.2.2", "rc-select": "~14.11.0", "rc-slider": "~10.5.0", "rc-steps": "~6.0.1", "rc-switch": "~4.1.0", "rc-table": "~7.37.0", "rc-tabs": "~14.0.0", "rc-textarea": "~1.6.3", "rc-tooltip": "~6.1.3", "rc-tree": "~5.8.2", "rc-tree-select": "~5.17.0", "rc-upload": "~4.5.2", "rc-util": "^5.38.1", "scroll-into-view-if-needed": "^3.1.0", "throttle-debounce": "^5.0.0" } }, "sha512-/qAPsr6UyJPSFZQD9G7kW98GelH2Bajli+1q7CRW4IinYQ0R0UVJckFX11emByhiU4Jd4WNH/hOO+fZtp0eVDA=="], + + "anymatch": ["anymatch@https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }], + + "apache-arrow": ["apache-arrow@21.1.0", "", { "dependencies": { "@swc/helpers": "^0.5.11", "@types/command-line-args": "^5.2.3", "@types/command-line-usage": "^5.0.4", "@types/node": "^24.0.3", "command-line-args": "^6.0.1", "command-line-usage": "^7.0.1", "flatbuffers": "^25.1.24", "json-bignum": "^0.0.3", "tslib": "^2.6.2" }, "bin": { "arrow2csv": "bin/arrow2csv.js" } }, "sha512-kQrYLxhC+NTVVZ4CCzGF6L/uPVOzJmD1T3XgbiUnP7oTeVFOFgEUu6IKNwCDkpFoBVqDKQivlX4RUFqqnWFlEA=="], + + "app-root-dir": ["app-root-dir@https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", {}], + + "aproba": ["aproba@2.0.0", "", {}, "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="], + + "archy": ["archy@1.0.0", "", {}, "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw=="], + + "are-we-there-yet": ["are-we-there-yet@4.0.2", "", {}, "sha512-ncSWAawFhKMJDTdoAeOV+jyW1VCMj5QIAwULIBV0SSR7B/RLPPEQiknKcg/RIIZlUQrxELpsxMiTUoAQ4sIUyg=="], + + "argparse": ["argparse@https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", {}], + + "argv-formatter": ["argv-formatter@1.0.0", "", {}, "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw=="], + + "aria-hidden": ["aria-hidden@1.2.3", "", { "dependencies": { "tslib": "^2.0.0" } }, "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ=="], + + "aria-query": ["aria-query@5.1.3", "", { "dependencies": { "deep-equal": "^2.0.5" } }, "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ=="], + + "array-back": ["array-back@6.2.2", "", {}, "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw=="], + + "array-buffer-byte-length": ["array-buffer-byte-length@https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", { "dependencies": { "call-bind": "^1.0.2", "is-array-buffer": "^3.0.1" } }], + + "array-flatten": ["array-flatten@https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", {}], + + "array-ify": ["array-ify@1.0.0", "", {}, "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng=="], + + "array-includes": ["array-includes@https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4", "get-intrinsic": "^1.1.3", "is-string": "^1.0.7" } }], + + "array-tree-filter": ["array-tree-filter@2.1.0", "", {}, "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw=="], + + "array-union": ["array-union@https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", {}], + + "array.prototype.flat": ["array.prototype.flat@https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4", "es-shim-unscopables": "^1.0.0" } }], + + "array.prototype.flatmap": ["array.prototype.flatmap@https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4", "es-shim-unscopables": "^1.0.0" } }], + + "array.prototype.tosorted": ["array.prototype.tosorted@https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4", "es-shim-unscopables": "^1.0.0", "get-intrinsic": "^1.1.3" } }], + + "arrify": ["arrify@https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", {}], + + "asap": ["asap@https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", {}], + + "asn1js": ["asn1js@https://registry.npmjs.org/asn1js/-/asn1js-3.0.5.tgz", { "dependencies": { "pvtsutils": "^1.3.2", "pvutils": "^1.1.3", "tslib": "^2.4.0" } }], + + "assert": ["assert@https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", { "dependencies": { "es6-object-assign": "^1.1.0", "is-nan": "^1.2.1", "object-is": "^1.0.1", "util": "^0.12.0" } }], + + "assertion-error": ["assertion-error@1.1.0", "", {}, "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="], + + "ast-types": ["ast-types@https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", { "dependencies": { "tslib": "^2.0.1" } }], + + "astral-regex": ["astral-regex@https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", {}], + + "astring": ["astring@https://registry.npmjs.org/astring/-/astring-1.8.4.tgz", {}], + + "async": ["async@https://registry.npmjs.org/async/-/async-3.2.4.tgz", {}], + + "async-limiter": ["async-limiter@https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", {}], + + "async-validator": ["async-validator@4.2.5", "", {}, "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg=="], + + "asynckit": ["asynckit@https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", {}], + + "auto-bind": ["auto-bind@https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz", {}], + + "autoprefixer": ["autoprefixer@https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", { "dependencies": { "browserslist": "^4.12.0", "caniuse-lite": "^1.0.30001109", "normalize-range": "^0.1.2", "num2fraction": "^1.2.2", "picocolors": "^0.2.1", "postcss": "^7.0.32", "postcss-value-parser": "^4.1.0" } }], + + "available-typed-arrays": ["available-typed-arrays@https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", {}], + + "babel-core": ["babel-core@https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", {}], + + "babel-loader": ["babel-loader@https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", { "dependencies": { "find-cache-dir": "^3.3.2", "schema-utils": "^4.0.0" } }], + + "babel-plugin-istanbul": ["babel-plugin-istanbul@https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" } }], + + "babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", { "dependencies": { "@babel/compat-data": "^7.17.7", "@babel/helper-define-polyfill-provider": "^0.3.3", "semver": "^6.1.1" } }], + + "babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3", "core-js-compat": "^3.25.1" } }], + + "babel-plugin-polyfill-regenerator": ["babel-plugin-polyfill-regenerator@https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3" } }], + + "babel-plugin-syntax-trailing-function-commas": ["babel-plugin-syntax-trailing-function-commas@https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", {}], + + "babel-preset-fbjs": ["babel-preset-fbjs@https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", { "dependencies": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", "@babel/plugin-syntax-class-properties": "^7.0.0", "@babel/plugin-syntax-flow": "^7.0.0", "@babel/plugin-syntax-jsx": "^7.0.0", "@babel/plugin-syntax-object-rest-spread": "^7.0.0", "@babel/plugin-transform-arrow-functions": "^7.0.0", "@babel/plugin-transform-block-scoped-functions": "^7.0.0", "@babel/plugin-transform-block-scoping": "^7.0.0", "@babel/plugin-transform-classes": "^7.0.0", "@babel/plugin-transform-computed-properties": "^7.0.0", "@babel/plugin-transform-destructuring": "^7.0.0", "@babel/plugin-transform-flow-strip-types": "^7.0.0", "@babel/plugin-transform-for-of": "^7.0.0", "@babel/plugin-transform-function-name": "^7.0.0", "@babel/plugin-transform-literals": "^7.0.0", "@babel/plugin-transform-member-expression-literals": "^7.0.0", "@babel/plugin-transform-modules-commonjs": "^7.0.0", "@babel/plugin-transform-object-super": "^7.0.0", "@babel/plugin-transform-parameters": "^7.0.0", "@babel/plugin-transform-property-literals": "^7.0.0", "@babel/plugin-transform-react-display-name": "^7.0.0", "@babel/plugin-transform-react-jsx": "^7.0.0", "@babel/plugin-transform-shorthand-properties": "^7.0.0", "@babel/plugin-transform-spread": "^7.0.0", "@babel/plugin-transform-template-literals": "^7.0.0", "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" } }], + + "backo2": ["backo2@https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", {}], + + "bail": ["bail@https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", {}], + + "balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", {}], + + "base64-js": ["base64-js@https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", {}], + + "baseline-browser-mapping": ["baseline-browser-mapping@2.10.7", "", { "bin": { "baseline-browser-mapping": "dist/cli.cjs" } }, "sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw=="], + + "before-after-hook": ["before-after-hook@2.2.3", "", {}, "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ=="], + + "better-opn": ["better-opn@3.0.2", "", { "dependencies": { "open": "^8.0.4" } }, "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ=="], + + "big-integer": ["big-integer@https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", {}], + + "bin-links": ["bin-links@4.0.3", "", { "dependencies": { "cmd-shim": "^6.0.0", "npm-normalize-package-bin": "^3.0.0", "read-cmd-shim": "^4.0.0", "write-file-atomic": "^5.0.0" } }, "sha512-obsRaULtJurnfox/MDwgq6Yo9kzbv1CPTk/1/s7Z/61Lezc8IKkFCOXNeVLXz0456WRzBQmSsDWlai2tIhBsfA=="], + + "binary-extensions": ["binary-extensions@https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", {}], + + "bl": ["bl@https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", { "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }], + + "body-parser": ["body-parser@https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", { "dependencies": { "bytes": "3.0.0", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "~1.1.1", "http-errors": "~1.6.2", "iconv-lite": "0.4.19", "on-finished": "~2.3.0", "qs": "6.5.1", "raw-body": "2.3.2", "type-is": "~1.6.15" } }], + + "body-scroll-lock": ["body-scroll-lock@3.1.5", "", {}, "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg=="], + + "boolbase": ["boolbase@https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", {}], + + "bottleneck": ["bottleneck@2.19.5", "", {}, "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw=="], + + "bplist-parser": ["bplist-parser@https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", { "dependencies": { "big-integer": "^1.6.44" } }], + + "brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }], + + "braces": ["braces@https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", { "dependencies": { "fill-range": "^7.0.1" } }], + + "browser-assert": ["browser-assert@https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", {}], + + "browserify-zlib": ["browserify-zlib@https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", { "dependencies": { "pako": "~0.2.0" } }], + + "browserslist": ["browserslist@https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", { "dependencies": { "caniuse-lite": "^1.0.30001449", "electron-to-chromium": "^1.4.284", "node-releases": "^2.0.8", "update-browserslist-db": "^1.0.10" } }], + + "bser": ["bser@https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", { "dependencies": { "node-int64": "^0.4.0" } }], + + "buffer": ["buffer@https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }], + + "buffer-crc32": ["buffer-crc32@https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", {}], + + "buffer-from": ["buffer-from@https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", {}], + + "builtin-modules": ["builtin-modules@https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", {}], + + "builtins": ["builtins@5.0.1", "", { "dependencies": { "semver": "^7.0.0" } }, "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ=="], + + "busboy": ["busboy@https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", { "dependencies": { "streamsearch": "^1.1.0" } }], + + "bytes": ["bytes@https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", {}], + + "c8": ["c8@https://registry.npmjs.org/c8/-/c8-7.13.0.tgz", { "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@istanbuljs/schema": "^0.1.3", "find-up": "^5.0.0", "foreground-child": "^2.0.0", "istanbul-lib-coverage": "^3.2.0", "istanbul-lib-report": "^3.0.0", "istanbul-reports": "^3.1.4", "rimraf": "^3.0.2", "test-exclude": "^6.0.0", "v8-to-istanbul": "^9.0.0", "yargs": "^16.2.0", "yargs-parser": "^20.2.9" } }], + + "cac": ["cac@6.7.14", "", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="], + + "cacache": ["cacache@18.0.2", "", { "dependencies": { "@npmcli/fs": "^3.1.0", "fs-minipass": "^3.0.0", "glob": "^10.2.2", "lru-cache": "^10.0.1", "minipass": "^7.0.3", "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "p-map": "^4.0.0", "ssri": "^10.0.0", "tar": "^6.1.11", "unique-filename": "^3.0.0" } }, "sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw=="], + + "call-bind": ["call-bind@https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", { "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" } }], + + "callsites": ["callsites@https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", {}], + + "camel-case": ["camel-case@https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", { "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" } }], + + "camelcase": ["camelcase@https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", {}], + + "camelcase-keys": ["camelcase-keys@https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", { "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", "quick-lru": "^4.0.1" } }], + + "caniuse-lite": ["caniuse-lite@https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz", {}], + + "capital-case": ["capital-case@https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", { "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3", "upper-case-first": "^2.0.2" } }], + + "cardinal": ["cardinal@https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", { "dependencies": { "ansicolors": "~0.3.2", "redeyed": "~2.1.0" } }], + + "ccount": ["ccount@https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", {}], + + "chai": ["chai@4.3.10", "", { "dependencies": { "assertion-error": "^1.1.0", "check-error": "^1.0.3", "deep-eql": "^4.1.3", "get-func-name": "^2.0.2", "loupe": "^2.3.6", "pathval": "^1.1.1", "type-detect": "^4.0.8" } }, "sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g=="], + + "chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }], + + "chalk-template": ["chalk-template@0.4.0", "", { "dependencies": { "chalk": "^4.1.2" } }, "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg=="], + + "change-case": ["change-case@https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", { "dependencies": { "camel-case": "^4.1.2", "capital-case": "^1.0.4", "constant-case": "^3.0.4", "dot-case": "^3.0.4", "header-case": "^2.0.4", "no-case": "^3.0.4", "param-case": "^3.0.4", "pascal-case": "^3.1.2", "path-case": "^3.0.4", "sentence-case": "^3.0.4", "snake-case": "^3.0.4", "tslib": "^2.0.3" } }], + + "change-case-all": ["change-case-all@https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz", { "dependencies": { "change-case": "^4.1.2", "is-lower-case": "^2.0.2", "is-upper-case": "^2.0.2", "lower-case": "^2.0.2", "lower-case-first": "^2.0.2", "sponge-case": "^1.0.1", "swap-case": "^2.0.2", "title-case": "^3.0.3", "upper-case": "^2.0.2", "upper-case-first": "^2.0.2" } }], + + "char-regex": ["char-regex@1.0.2", "", {}, "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="], + + "character-entities": ["character-entities@https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", {}], + + "character-entities-legacy": ["character-entities-legacy@https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", {}], + + "character-reference-invalid": ["character-reference-invalid@https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", {}], + + "chardet": ["chardet@https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", {}], + + "charenc": ["charenc@0.0.2", "", {}, "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA=="], + + "check-error": ["check-error@1.0.3", "", { "dependencies": { "get-func-name": "^2.0.2" } }, "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg=="], + + "chokidar": ["chokidar@https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }], + + "chownr": ["chownr@https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", {}], + + "chroma-js": ["chroma-js@https://registry.npmjs.org/chroma-js/-/chroma-js-2.4.2.tgz", {}], + + "ci-info": ["ci-info@https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", {}], + + "cidr-regex": ["cidr-regex@4.0.3", "", { "dependencies": { "ip-regex": "^5.0.0" } }, "sha512-HOwDIy/rhKeMf6uOzxtv7FAbrz8zPjmVKfSpM+U7/bNBXC5rtOyr758jxcptiSx6ZZn5LOhPJT5WWxPAGDV8dw=="], + + "classnames": ["classnames@https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", {}], + + "clean-regexp": ["clean-regexp@https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", { "dependencies": { "escape-string-regexp": "^1.0.5" } }], + + "clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", {}], + + "cli-columns": ["cli-columns@4.0.0", "", { "dependencies": { "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }, "sha512-XW2Vg+w+L9on9wtwKpyzluIPCWXjaBahI7mTcYjx+BVIYD9c3yqcv/yKC7CmdCZat4rq2yiE1UMSJC5ivKfMtQ=="], + + "cli-cursor": ["cli-cursor@https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", { "dependencies": { "restore-cursor": "^3.1.0" } }], + + "cli-spinners": ["cli-spinners@https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.8.0.tgz", {}], + + "cli-table3": ["cli-table3@https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", { "dependencies": { "string-width": "^4.2.0" }, "optionalDependencies": { "@colors/colors": "1.5.0" } }], + + "cli-truncate": ["cli-truncate@https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", { "dependencies": { "slice-ansi": "^5.0.0", "string-width": "^5.0.0" } }], + + "cli-ux": ["cli-ux@https://registry.npmjs.org/cli-ux/-/cli-ux-4.9.3.tgz", { "dependencies": { "@oclif/errors": "^1.2.2", "@oclif/linewrap": "^1.0.0", "@oclif/screen": "^1.0.3", "ansi-escapes": "^3.1.0", "ansi-styles": "^3.2.1", "cardinal": "^2.1.1", "chalk": "^2.4.1", "clean-stack": "^2.0.0", "extract-stack": "^1.0.0", "fs-extra": "^7.0.0", "hyperlinker": "^1.0.0", "indent-string": "^3.2.0", "is-wsl": "^1.1.0", "lodash": "^4.17.11", "password-prompt": "^1.0.7", "semver": "^5.6.0", "strip-ansi": "^5.0.0", "supports-color": "^5.5.0", "supports-hyperlinks": "^1.0.1", "treeify": "^1.1.0", "tslib": "^1.9.3" } }], + + "cli-width": ["cli-width@https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", {}], + + "cliui": ["cliui@https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "clone": ["clone@https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", {}], + + "clone-deep": ["clone-deep@https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", { "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", "shallow-clone": "^3.0.0" } }], + + "clone-regexp": ["clone-regexp@https://registry.npmjs.org/clone-regexp/-/clone-regexp-2.2.0.tgz", { "dependencies": { "is-regexp": "^2.0.0" } }], + + "clsx": ["clsx@1.2.1", "", {}, "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg=="], + + "cmd-shim": ["cmd-shim@6.0.2", "", {}, "sha512-+FFYbB0YLaAkhkcrjkyNLYDiOsFSfRjwjY19LXk/psmMx1z00xlCv7hhQoTGXXIKi+YXHL/iiFo8NqMVQX9nOw=="], + + "color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", { "dependencies": { "color-name": "~1.1.4" } }], + + "color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", {}], + + "color-support": ["color-support@1.1.3", "", {}, "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="], + + "colorette": ["colorette@1.4.0", "", {}, "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="], + + "columnify": ["columnify@1.6.0", "", { "dependencies": { "strip-ansi": "^6.0.1", "wcwidth": "^1.0.0" } }, "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q=="], + + "combined-stream": ["combined-stream@https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", { "dependencies": { "delayed-stream": "~1.0.0" } }], + + "comma-separated-tokens": ["comma-separated-tokens@https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", {}], + + "command-line-args": ["command-line-args@6.0.1", "", { "dependencies": { "array-back": "^6.2.2", "find-replace": "^5.0.2", "lodash.camelcase": "^4.3.0", "typical": "^7.2.0" }, "peerDependencies": { "@75lb/nature": "latest" }, "optionalPeers": ["@75lb/nature"] }, "sha512-Jr3eByUjqyK0qd8W0SGFW1nZwqCaNCtbXjRo2cRJC1OYxWl3MZ5t1US3jq+cO4sPavqgw4l9BMGX0CBe+trepg=="], + + "command-line-usage": ["command-line-usage@7.0.4", "", { "dependencies": { "array-back": "^6.2.2", "chalk-template": "^0.4.0", "table-layout": "^4.1.1", "typical": "^7.3.0" } }, "sha512-85UdvzTNx/+s5CkSgBm/0hzP80RFHAa7PsfeADE5ezZF3uHz3/Tqj9gIKGT9PTtpycc3Ua64T0oVulGfKxzfqg=="], + + "commander": ["commander@https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", {}], + + "common-ancestor-path": ["common-ancestor-path@1.0.1", "", {}, "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w=="], + + "common-tags": ["common-tags@https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", {}], + + "commondir": ["commondir@https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", {}], + + "compare-func": ["compare-func@2.0.0", "", { "dependencies": { "array-ify": "^1.0.0", "dot-prop": "^5.1.0" } }, "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA=="], + + "compressible": ["compressible@https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", { "dependencies": { "mime-db": ">= 1.43.0 < 2" } }], + + "compression": ["compression@https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", { "dependencies": { "accepts": "~1.3.5", "bytes": "3.0.0", "compressible": "~2.0.16", "debug": "2.6.9", "on-headers": "~1.0.2", "safe-buffer": "5.1.2", "vary": "~1.1.2" } }], + + "compute-scroll-into-view": ["compute-scroll-into-view@3.1.0", "", {}, "sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg=="], + + "concat-map": ["concat-map@https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", {}], + + "concat-stream": ["concat-stream@https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", { "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }], + + "config-chain": ["config-chain@1.1.13", "", { "dependencies": { "ini": "^1.3.4", "proto-list": "~1.2.1" } }, "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ=="], + + "connect": ["connect@https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", { "dependencies": { "debug": "2.6.9", "finalhandler": "1.1.2", "parseurl": "~1.3.3", "utils-merge": "1.0.1" } }], + + "connect-history-api-fallback": ["connect-history-api-fallback@1.6.0", "", {}, "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="], + + "console-control-strings": ["console-control-strings@1.1.0", "", {}, "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="], + + "constant-case": ["constant-case@https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", { "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3", "upper-case": "^2.0.2" } }], + + "content-disposition": ["content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", {}], + + "content-type": ["content-type@https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", {}], + + "conventional-changelog-angular": ["conventional-changelog-angular@7.0.0", "", { "dependencies": { "compare-func": "^2.0.0" } }, "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ=="], + + "conventional-changelog-writer": ["conventional-changelog-writer@7.0.1", "", { "dependencies": { "conventional-commits-filter": "^4.0.0", "handlebars": "^4.7.7", "json-stringify-safe": "^5.0.1", "meow": "^12.0.1", "semver": "^7.5.2", "split2": "^4.0.0" } }, "sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA=="], + + "conventional-commits-filter": ["conventional-commits-filter@4.0.0", "", {}, "sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A=="], + + "conventional-commits-parser": ["conventional-commits-parser@5.0.0", "", { "dependencies": { "JSONStream": "^1.3.5", "is-text-path": "^2.0.0", "meow": "^12.0.1", "split2": "^4.0.0" } }, "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA=="], + + "convert-source-map": ["convert-source-map@https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", {}], + + "cookie": ["cookie@https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", {}], + + "cookie-signature": ["cookie-signature@https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", {}], + + "copy-anything": ["copy-anything@https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", { "dependencies": { "is-what": "^3.14.1" } }], + + "copy-to-clipboard": ["copy-to-clipboard@https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", { "dependencies": { "toggle-selection": "^1.0.6" } }], + + "core-js-compat": ["core-js-compat@https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", { "dependencies": { "browserslist": "^4.21.5" } }], + + "core-util-is": ["core-util-is@https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", {}], + + "cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" } }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], + + "cronstrue": ["cronstrue@2.31.0", "", {}, "sha512-A1cyfGyLSRdvT9MNn/pggoCTlvxnJyiCUItU9XHSXk89ZyK2YY9q9q7Rf4j8NhV9YwN1BjB0wimZlvKYb/9Bwg=="], + + "cross-fetch": ["cross-fetch@3.1.6", "", { "dependencies": { "node-fetch": "^2.6.11" } }, "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g=="], + + "cross-inspect": ["cross-inspect@1.0.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ=="], + + "cross-spawn": ["cross-spawn@https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }], + + "crypt": ["crypt@0.0.2", "", {}, "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow=="], + + "crypto-random-string": ["crypto-random-string@4.0.0", "", { "dependencies": { "type-fest": "^1.0.1" } }, "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="], + + "css-select": ["css-select@https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", { "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" } }], + + "css-tree": ["css-tree@https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", { "dependencies": { "mdn-data": "2.0.14", "source-map": "^0.6.1" } }], + + "css-what": ["css-what@https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", {}], + + "css.escape": ["css.escape@1.5.1", "", {}, "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg=="], + + "cssesc": ["cssesc@https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", {}], + + "csso": ["csso@https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", { "dependencies": { "css-tree": "^1.1.2" } }], + + "cssstyle": ["cssstyle@3.0.0", "", { "dependencies": { "rrweb-cssom": "^0.6.0" } }, "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg=="], + + "csstype": ["csstype@https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", {}], + + "curriable": ["curriable@1.3.0", "", {}, "sha512-7kfjDPRSF+pguU0TlfSFBMCd8XlmF29ZAiXcq/zaN4LhZvWdvV0Y72AvaWFqInXZG9Yg1kA1UMkpE9lFBKMpQA=="], + + "cwise-compiler": ["cwise-compiler@https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", { "dependencies": { "uniq": "^1.0.0" } }], + + "data-urls": ["data-urls@4.0.0", "", { "dependencies": { "abab": "^2.0.6", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^12.0.0" } }, "sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g=="], + + "dataloader": ["dataloader@https://registry.npmjs.org/dataloader/-/dataloader-2.2.2.tgz", {}], + + "dayjs": ["dayjs@1.11.10", "", {}, "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="], + + "debounce": ["debounce@https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", {}], + + "debug": ["debug@https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", { "dependencies": { "ms": "2.1.2" } }], + + "decamelize": ["decamelize@https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", {}], + + "decamelize-keys": ["decamelize-keys@https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", { "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" } }], + + "decimal.js": ["decimal.js@10.4.3", "", {}, "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="], + + "decode-named-character-reference": ["decode-named-character-reference@https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", { "dependencies": { "character-entities": "^2.0.0" } }], + + "decode-uri-component": ["decode-uri-component@https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", {}], + + "deep-eql": ["deep-eql@4.1.3", "", { "dependencies": { "type-detect": "^4.0.0" } }, "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw=="], + + "deep-equal": ["deep-equal@https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", { "dependencies": { "call-bind": "^1.0.2", "es-get-iterator": "^1.1.2", "get-intrinsic": "^1.1.3", "is-arguments": "^1.1.1", "is-array-buffer": "^3.0.1", "is-date-object": "^1.0.5", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "isarray": "^2.0.5", "object-is": "^1.1.5", "object-keys": "^1.1.1", "object.assign": "^4.1.4", "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4", "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", "which-typed-array": "^1.1.9" } }], + + "deep-extend": ["deep-extend@0.6.0", "", {}, "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="], + + "deep-is": ["deep-is@https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", {}], + + "default-browser-id": ["default-browser-id@https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", { "dependencies": { "bplist-parser": "^0.2.0", "untildify": "^4.0.0" } }], + + "defaults": ["defaults@https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", { "dependencies": { "clone": "^1.0.2" } }], + + "define-lazy-prop": ["define-lazy-prop@https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", {}], + + "define-properties": ["define-properties@https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", { "dependencies": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }], + + "defu": ["defu@https://registry.npmjs.org/defu/-/defu-6.1.2.tgz", {}], + + "del": ["del@https://registry.npmjs.org/del/-/del-6.1.1.tgz", { "dependencies": { "globby": "^11.0.1", "graceful-fs": "^4.2.4", "is-glob": "^4.0.1", "is-path-cwd": "^2.2.0", "is-path-inside": "^3.0.2", "p-map": "^4.0.0", "rimraf": "^3.0.2", "slash": "^3.0.0" } }], + + "delayed-stream": ["delayed-stream@https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", {}], + + "depd": ["depd@https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", {}], + + "dependency-graph": ["dependency-graph@https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", {}], + + "deprecation": ["deprecation@2.3.1", "", {}, "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ=="], + + "dequal": ["dequal@2.0.3", "", {}, "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="], + + "destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", {}], + + "detect-indent": ["detect-indent@https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", {}], + + "detect-libc": ["detect-libc@2.1.2", "", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="], + + "detect-newline": ["detect-newline@https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", {}], + + "detect-node-es": ["detect-node-es@1.1.0", "", {}, "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ=="], + + "detect-package-manager": ["detect-package-manager@https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", { "dependencies": { "execa": "^5.1.1" } }], + + "detect-port": ["detect-port@https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", { "dependencies": { "address": "^1.0.1", "debug": "4" } }], + + "diff": ["diff@https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", {}], + + "diff-sequences": ["diff-sequences@29.6.3", "", {}, "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q=="], + + "dir-glob": ["dir-glob@https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", { "dependencies": { "path-type": "^4.0.0" } }], + + "doctrine": ["doctrine@https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", { "dependencies": { "esutils": "^2.0.2" } }], + + "dom-accessibility-api": ["dom-accessibility-api@https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", {}], + + "dom-css": ["dom-css@2.1.0", "", { "dependencies": { "add-px-to-style": "1.0.0", "prefix-style": "2.0.1", "to-camel-case": "1.0.0" } }, "sha512-w9kU7FAbaSh3QKijL6n59ofAhkkmMJ31GclJIz/vyQdjogfyxcB6Zf8CZyibOERI5o0Hxz30VmJS7+7r5fEj2Q=="], + + "dom-helpers": ["dom-helpers@5.2.1", "", { "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="], + + "dom-serializer": ["dom-serializer@https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }], + + "domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", {}], + + "domexception": ["domexception@4.0.0", "", { "dependencies": { "webidl-conversions": "^7.0.0" } }, "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw=="], + + "domhandler": ["domhandler@https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", { "dependencies": { "domelementtype": "^2.2.0" } }], + + "domutils": ["domutils@https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", { "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }], + + "dot-case": ["dot-case@https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", { "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }], + + "dot-prop": ["dot-prop@5.3.0", "", { "dependencies": { "is-obj": "^2.0.0" } }, "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q=="], + + "dotenv": ["dotenv@https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", {}], + + "dotenv-expand": ["dotenv-expand@https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", {}], + + "dset": ["dset@https://registry.npmjs.org/dset/-/dset-3.1.2.tgz", {}], + + "duplexer2": ["duplexer2@0.1.4", "", { "dependencies": { "readable-stream": "^2.0.2" } }, "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA=="], + + "duplexify": ["duplexify@https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", { "dependencies": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" } }], + + "eastasianwidth": ["eastasianwidth@https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", {}], + + "ee-first": ["ee-first@https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", {}], + + "ejs": ["ejs@https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", { "dependencies": { "jake": "^10.8.5" } }], + + "electron-to-chromium": ["electron-to-chromium@https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.371.tgz", {}], + + "emoji-regex": ["emoji-regex@https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", {}], + + "emojilib": ["emojilib@2.4.0", "", {}, "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw=="], + + "encodeurl": ["encodeurl@https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", {}], + + "encoding": ["encoding@0.1.13", "", { "dependencies": { "iconv-lite": "^0.6.2" } }, "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="], + + "end-of-stream": ["end-of-stream@https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", { "dependencies": { "once": "^1.4.0" } }], + + "enhanced-resolve": ["enhanced-resolve@https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }], + + "enquirer": ["enquirer@https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", { "dependencies": { "ansi-colors": "^4.1.1" } }], + + "entities": ["entities@https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", {}], + + "env-ci": ["env-ci@11.0.0", "", { "dependencies": { "execa": "^8.0.0", "java-properties": "^1.0.2" } }, "sha512-apikxMgkipkgTvMdRT9MNqWx5VLOci79F4VBd7Op/7OPjjoanjdAvn6fglMCCEf/1bAh8eOiuEVCUs4V3qP3nQ=="], + + "env-paths": ["env-paths@2.2.1", "", {}, "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="], + + "envinfo": ["envinfo@https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", {}], + + "err-code": ["err-code@2.0.3", "", {}, "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="], + + "errno": ["errno@https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", { "dependencies": { "prr": "~1.0.1" } }], + + "error-ex": ["error-ex@https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", { "dependencies": { "is-arrayish": "^0.2.1" } }], + + "es-abstract": ["es-abstract@https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", { "dependencies": { "array-buffer-byte-length": "^1.0.0", "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.5", "get-intrinsic": "^1.2.0", "get-symbol-description": "^1.0.0", "globalthis": "^1.0.3", "gopd": "^1.0.1", "has": "^1.0.3", "has-property-descriptors": "^1.0.0", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "internal-slot": "^1.0.5", "is-array-buffer": "^3.0.2", "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", "is-typed-array": "^1.1.10", "is-weakref": "^1.0.2", "object-inspect": "^1.12.3", "object-keys": "^1.1.1", "object.assign": "^4.1.4", "regexp.prototype.flags": "^1.4.3", "safe-regex-test": "^1.0.0", "string.prototype.trim": "^1.2.7", "string.prototype.trimend": "^1.0.6", "string.prototype.trimstart": "^1.0.6", "typed-array-length": "^1.0.4", "unbox-primitive": "^1.0.2", "which-typed-array": "^1.1.9" } }], + + "es-get-iterator": ["es-get-iterator@https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", { "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", "has-symbols": "^1.0.3", "is-arguments": "^1.1.1", "is-map": "^2.0.2", "is-set": "^2.0.2", "is-string": "^1.0.7", "isarray": "^2.0.5", "stop-iteration-iterator": "^1.0.0" } }], + + "es-module-lexer": ["es-module-lexer@https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", {}], + + "es-set-tostringtag": ["es-set-tostringtag@https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", { "dependencies": { "get-intrinsic": "^1.1.3", "has": "^1.0.3", "has-tostringtag": "^1.0.0" } }], + + "es-shim-unscopables": ["es-shim-unscopables@https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", { "dependencies": { "has": "^1.0.3" } }], + + "es-to-primitive": ["es-to-primitive@https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", { "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" } }], + + "es6-object-assign": ["es6-object-assign@https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", {}], + + "esbuild": ["esbuild@0.18.16", "", { "optionalDependencies": { "@esbuild/android-arm": "0.18.16", "@esbuild/android-arm64": "0.18.16", "@esbuild/android-x64": "0.18.16", "@esbuild/darwin-arm64": "0.18.16", "@esbuild/darwin-x64": "0.18.16", "@esbuild/freebsd-arm64": "0.18.16", "@esbuild/freebsd-x64": "0.18.16", "@esbuild/linux-arm": "0.18.16", "@esbuild/linux-arm64": "0.18.16", "@esbuild/linux-ia32": "0.18.16", "@esbuild/linux-loong64": "0.18.16", "@esbuild/linux-mips64el": "0.18.16", "@esbuild/linux-ppc64": "0.18.16", "@esbuild/linux-riscv64": "0.18.16", "@esbuild/linux-s390x": "0.18.16", "@esbuild/linux-x64": "0.18.16", "@esbuild/netbsd-x64": "0.18.16", "@esbuild/openbsd-x64": "0.18.16", "@esbuild/sunos-x64": "0.18.16", "@esbuild/win32-arm64": "0.18.16", "@esbuild/win32-ia32": "0.18.16", "@esbuild/win32-x64": "0.18.16" } }, "sha512-1xLsOXrDqwdHxyXb/x/SOyg59jpf/SH7YMvU5RNSU7z3TInaASNJWNFJ6iRvLvLETZMasF3d1DdZLg7sgRimRQ=="], + + "esbuild-android-64": ["esbuild-android-64@0.14.54", "", {}, "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ=="], + + "esbuild-android-arm64": ["esbuild-android-arm64@0.14.54", "", {}, "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg=="], + + "esbuild-darwin-64": ["esbuild-darwin-64@https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", {}], + + "esbuild-darwin-arm64": ["esbuild-darwin-arm64@0.14.54", "", {}, "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw=="], + + "esbuild-freebsd-64": ["esbuild-freebsd-64@0.14.54", "", {}, "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg=="], + + "esbuild-freebsd-arm64": ["esbuild-freebsd-arm64@0.14.54", "", {}, "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q=="], + + "esbuild-linux-32": ["esbuild-linux-32@0.14.54", "", {}, "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw=="], + + "esbuild-linux-64": ["esbuild-linux-64@0.14.54", "", {}, "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg=="], + + "esbuild-linux-arm": ["esbuild-linux-arm@0.14.54", "", {}, "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw=="], + + "esbuild-linux-arm64": ["esbuild-linux-arm64@0.14.54", "", {}, "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig=="], + + "esbuild-linux-mips64le": ["esbuild-linux-mips64le@0.14.54", "", {}, "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw=="], + + "esbuild-linux-ppc64le": ["esbuild-linux-ppc64le@0.14.54", "", {}, "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ=="], + + "esbuild-linux-riscv64": ["esbuild-linux-riscv64@0.14.54", "", {}, "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg=="], + + "esbuild-linux-s390x": ["esbuild-linux-s390x@0.14.54", "", {}, "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA=="], + + "esbuild-netbsd-64": ["esbuild-netbsd-64@0.14.54", "", {}, "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w=="], + + "esbuild-openbsd-64": ["esbuild-openbsd-64@0.14.54", "", {}, "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw=="], + + "esbuild-plugin-alias": ["esbuild-plugin-alias@https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", {}], + + "esbuild-register": ["esbuild-register@https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz", { "dependencies": { "debug": "^4.3.4" } }], + + "esbuild-sunos-64": ["esbuild-sunos-64@0.14.54", "", {}, "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw=="], + + "esbuild-windows-32": ["esbuild-windows-32@0.14.54", "", {}, "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w=="], + + "esbuild-windows-64": ["esbuild-windows-64@0.14.54", "", {}, "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ=="], + + "esbuild-windows-arm64": ["esbuild-windows-arm64@0.14.54", "", {}, "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg=="], + + "escalade": ["escalade@https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", {}], + + "escape-html": ["escape-html@https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", {}], + + "escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", {}], + + "escodegen": ["escodegen@2.1.0", "", { "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w=="], + + "eslint": ["eslint@8.40.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.4.0", "@eslint/eslintrc": "^2.0.3", "@eslint/js": "8.40.0", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.2.0", "eslint-visitor-keys": "^3.4.1", "espree": "^9.5.2", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.1", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0" } }, "sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ=="], + + "eslint-ast-utils": ["eslint-ast-utils@https://registry.npmjs.org/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz", { "dependencies": { "lodash.get": "^4.4.2", "lodash.zip": "^4.2.0" } }], + + "eslint-config-prettier": ["eslint-config-prettier@https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", {}], + + "eslint-formatter-pretty": ["eslint-formatter-pretty@https://registry.npmjs.org/eslint-formatter-pretty/-/eslint-formatter-pretty-4.1.0.tgz", { "dependencies": { "@types/eslint": "^7.2.13", "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", "eslint-rule-docs": "^1.1.5", "log-symbols": "^4.0.0", "plur": "^4.0.0", "string-width": "^4.2.0", "supports-hyperlinks": "^2.0.0" } }], + + "eslint-import-resolver-node": ["eslint-import-resolver-node@https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", { "dependencies": { "debug": "^3.2.7", "is-core-module": "^2.11.0", "resolve": "^1.22.1" } }], + + "eslint-import-resolver-typescript": ["eslint-import-resolver-typescript@https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", { "dependencies": { "debug": "^4.3.4", "enhanced-resolve": "^5.12.0", "eslint-module-utils": "^2.7.4", "get-tsconfig": "^4.5.0", "globby": "^13.1.3", "is-core-module": "^2.11.0", "is-glob": "^4.0.3", "synckit": "^0.8.5" } }], + + "eslint-module-utils": ["eslint-module-utils@https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", { "dependencies": { "debug": "^3.2.7" } }], + + "eslint-plugin-babel": ["eslint-plugin-babel@https://registry.npmjs.org/eslint-plugin-babel/-/eslint-plugin-babel-5.3.1.tgz", { "dependencies": { "eslint-rule-composer": "^0.3.0" } }], + + "eslint-plugin-import": ["eslint-plugin-import@https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", { "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", "array.prototype.flatmap": "^1.3.1", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.7", "eslint-module-utils": "^2.7.4", "has": "^1.0.3", "is-core-module": "^2.11.0", "is-glob": "^4.0.3", "minimatch": "^3.1.2", "object.values": "^1.1.6", "resolve": "^1.22.1", "semver": "^6.3.0", "tsconfig-paths": "^3.14.1" } }], + + "eslint-plugin-jest": ["eslint-plugin-jest@https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz", { "dependencies": { "@typescript-eslint/utils": "^5.10.0" } }], + + "eslint-plugin-promise": ["eslint-plugin-promise@https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", {}], + + "eslint-plugin-react": ["eslint-plugin-react@https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", { "dependencies": { "array-includes": "^3.1.6", "array.prototype.flatmap": "^1.3.1", "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", "object.entries": "^1.1.6", "object.fromentries": "^2.0.6", "object.hasown": "^1.1.2", "object.values": "^1.1.6", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.4", "semver": "^6.3.0", "string.prototype.matchall": "^4.0.8" } }], + + "eslint-plugin-react-hooks": ["eslint-plugin-react-hooks@https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", {}], + + "eslint-plugin-storybook": ["eslint-plugin-storybook@0.6.14", "", { "dependencies": { "@storybook/csf": "^0.0.1", "@typescript-eslint/utils": "^5.45.0", "requireindex": "^1.1.0", "ts-dedent": "^2.2.0" } }, "sha512-IeYigPur/MvESNDo43Z+Z5UvlcEVnt0dDZmnw1odi9X2Th1R3bpGyOZsHXb9bp1pFecOpRUuoMG5xdID2TwwOg=="], + + "eslint-plugin-unicorn": ["eslint-plugin-unicorn@https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", { "dependencies": { "@babel/helper-validator-identifier": "^7.19.1", "@eslint-community/eslint-utils": "^4.1.2", "ci-info": "^3.6.1", "clean-regexp": "^1.0.0", "esquery": "^1.4.0", "indent-string": "^4.0.0", "is-builtin-module": "^3.2.0", "jsesc": "^3.0.2", "lodash": "^4.17.21", "pluralize": "^8.0.0", "read-pkg-up": "^7.0.1", "regexp-tree": "^0.1.24", "regjsparser": "^0.9.1", "safe-regex": "^2.1.1", "semver": "^7.3.8", "strip-indent": "^3.0.0" } }], + + "eslint-rule-composer": ["eslint-rule-composer@https://registry.npmjs.org/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz", {}], + + "eslint-rule-docs": ["eslint-rule-docs@https://registry.npmjs.org/eslint-rule-docs/-/eslint-rule-docs-1.1.235.tgz", {}], + + "eslint-scope": ["eslint-scope@https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }], + + "eslint-template-visitor": ["eslint-template-visitor@https://registry.npmjs.org/eslint-template-visitor/-/eslint-template-visitor-2.3.2.tgz", { "dependencies": { "@babel/core": "^7.12.16", "@babel/eslint-parser": "^7.12.16", "eslint-visitor-keys": "^2.0.0", "esquery": "^1.3.1", "multimap": "^1.1.0" } }], + + "eslint-utils": ["eslint-utils@https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", { "dependencies": { "eslint-visitor-keys": "^1.1.0" } }], + + "eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", {}], + + "espree": ["espree@https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", { "dependencies": { "acorn": "^8.8.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" } }], + + "esprima": ["esprima@https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", {}], + + "esquery": ["esquery@https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", { "dependencies": { "estraverse": "^5.1.0" } }], + + "esrecurse": ["esrecurse@https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", { "dependencies": { "estraverse": "^5.2.0" } }], + + "estraverse": ["estraverse@https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", {}], + + "estree-to-babel": ["estree-to-babel@https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", { "dependencies": { "@babel/traverse": "^7.1.6", "@babel/types": "^7.2.0", "c8": "^7.6.0" } }], + + "estree-util-attach-comments": ["estree-util-attach-comments@https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", { "dependencies": { "@types/estree": "^1.0.0" } }], + + "estree-util-build-jsx": ["estree-util-build-jsx@https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", { "dependencies": { "@types/estree-jsx": "^1.0.0", "estree-util-is-identifier-name": "^2.0.0", "estree-walker": "^3.0.0" } }], + + "estree-util-is-identifier-name": ["estree-util-is-identifier-name@https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", {}], + + "estree-util-to-js": ["estree-util-to-js@https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", { "dependencies": { "@types/estree-jsx": "^1.0.0", "astring": "^1.8.0", "source-map": "^0.7.0" } }], + + "estree-walker": ["estree-walker@https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", {}], + + "esutils": ["esutils@https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", {}], + + "etag": ["etag@https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", {}], + + "eventemitter3": ["eventemitter3@https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", {}], + + "execa": ["execa@https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }], + + "execall": ["execall@https://registry.npmjs.org/execall/-/execall-2.0.0.tgz", { "dependencies": { "clone-regexp": "^2.1.0" } }], + + "exponential-backoff": ["exponential-backoff@3.1.1", "", {}, "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw=="], + + "express": ["express@https://registry.npmjs.org/express/-/express-4.16.3.tgz", { "dependencies": { "accepts": "~1.3.5", "array-flatten": "1.1.1", "body-parser": "1.18.2", "content-disposition": "0.5.2", "content-type": "~1.0.4", "cookie": "0.3.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "~1.1.2", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.1.1", "fresh": "0.5.2", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "~2.3.0", "parseurl": "~1.3.2", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.3", "qs": "6.5.1", "range-parser": "~1.2.0", "safe-buffer": "5.1.1", "send": "0.16.2", "serve-static": "1.13.2", "setprototypeof": "1.1.0", "statuses": "~1.4.0", "type-is": "~1.6.16", "utils-merge": "1.0.1", "vary": "~1.1.2" } }], + + "extend": ["extend@https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", {}], + + "external-editor": ["external-editor@https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", { "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" } }], + + "extract-files": ["extract-files@https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz", {}], + + "extract-stack": ["extract-stack@https://registry.npmjs.org/extract-stack/-/extract-stack-1.0.0.tgz", {}], + + "extract-zip": ["extract-zip@https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", { "dependencies": { "concat-stream": "^1.6.2", "debug": "^2.6.9", "mkdirp": "^0.5.4", "yauzl": "^2.10.0" } }], + + "fast-decode-uri-component": ["fast-decode-uri-component@https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz", {}], + + "fast-deep-equal": ["fast-deep-equal@https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", {}], + + "fast-glob": ["fast-glob@https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }], + + "fast-json-stable-stringify": ["fast-json-stable-stringify@https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", {}], + + "fast-levenshtein": ["fast-levenshtein@https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", {}], + + "fast-querystring": ["fast-querystring@https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.1.tgz", { "dependencies": { "fast-decode-uri-component": "^1.0.1" } }], + + "fast-url-parser": ["fast-url-parser@https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", { "dependencies": { "punycode": "^1.3.2" } }], + + "fastest-levenshtein": ["fastest-levenshtein@https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", {}], + + "fastq": ["fastq@https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", { "dependencies": { "reusify": "^1.0.4" } }], + + "fb-watchman": ["fb-watchman@https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", { "dependencies": { "bser": "2.1.1" } }], + + "fbjs": ["fbjs@https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", { "dependencies": { "cross-fetch": "^3.1.5", "fbjs-css-vars": "^1.0.0", "loose-envify": "^1.0.0", "object-assign": "^4.1.0", "promise": "^7.1.1", "setimmediate": "^1.0.5", "ua-parser-js": "^0.7.30" } }], + + "fbjs-css-vars": ["fbjs-css-vars@https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", {}], + + "fd-slicer": ["fd-slicer@https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", { "dependencies": { "pend": "~1.2.0" } }], + + "fdir": ["fdir@6.5.0", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="], + + "fetch-retry": ["fetch-retry@https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.4.tgz", {}], + + "figures": ["figures@6.0.1", "", { "dependencies": { "is-unicode-supported": "^2.0.0" } }, "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ=="], + + "file-entry-cache": ["file-entry-cache@https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", { "dependencies": { "flat-cache": "^3.0.4" } }], + + "file-system-cache": ["file-system-cache@2.3.0", "", { "dependencies": { "fs-extra": "11.1.1", "ramda": "0.29.0" } }, "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ=="], + + "filelist": ["filelist@https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", { "dependencies": { "minimatch": "^5.0.1" } }], + + "fill-range": ["fill-range@https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", { "dependencies": { "to-regex-range": "^5.0.1" } }], + + "filter-obj": ["filter-obj@https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", {}], + + "finalhandler": ["finalhandler@https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "~2.3.0", "parseurl": "~1.3.2", "statuses": "~1.4.0", "unpipe": "~1.0.0" } }], + + "find-cache-dir": ["find-cache-dir@https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", { "dependencies": { "commondir": "^1.0.1", "make-dir": "^3.0.2", "pkg-dir": "^4.1.0" } }], + + "find-replace": ["find-replace@5.0.2", "", { "peerDependencies": { "@75lb/nature": "latest" }, "optionalPeers": ["@75lb/nature"] }, "sha512-Y45BAiE3mz2QsrN2fb5QEtO4qb44NcS7en/0y9PEVsg351HsLeVclP8QPMH79Le9sH3rs5RSwJu99W0WPZO43Q=="], + + "find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }], + + "find-up-simple": ["find-up-simple@1.0.0", "", {}, "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw=="], + + "find-versions": ["find-versions@5.1.0", "", { "dependencies": { "semver-regex": "^4.0.5" } }, "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg=="], + + "flat-cache": ["flat-cache@https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", { "dependencies": { "flatted": "^3.1.0", "rimraf": "^3.0.2" } }], + + "flatbuffers": ["flatbuffers@25.9.23", "", {}, "sha512-MI1qs7Lo4Syw0EOzUl0xjs2lsoeqFku44KpngfIduHBYvzm8h2+7K8YMQh1JtVVVrUvhLpNwqVi4DERegUJhPQ=="], + + "flatted": ["flatted@https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", {}], + + "flow-parser": ["flow-parser@https://registry.npmjs.org/flow-parser/-/flow-parser-0.204.1.tgz", {}], + + "for-each": ["for-each@https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", { "dependencies": { "is-callable": "^1.1.3" } }], + + "foreground-child": ["foreground-child@3.1.1", "", { "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" } }, "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg=="], + + "form-data": ["form-data@4.0.0", "", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww=="], + + "forwarded": ["forwarded@https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", {}], + + "fresh": ["fresh@https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", {}], + + "from2": ["from2@2.3.0", "", { "dependencies": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" } }, "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g=="], + + "fs-constants": ["fs-constants@https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", {}], + + "fs-extra": ["fs-extra@https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }], + + "fs-minipass": ["fs-minipass@3.0.3", "", { "dependencies": { "minipass": "^7.0.3" } }, "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw=="], + + "fs.realpath": ["fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", {}], + + "fsevents": ["fsevents@2.3.3", "", {}, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + + "function-bind": ["function-bind@https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", {}], + + "function.prototype.name": ["function.prototype.name@https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", "es-abstract": "^1.19.0", "functions-have-names": "^1.2.2" } }], + + "functional-red-black-tree": ["functional-red-black-tree@https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", {}], + + "functions-have-names": ["functions-have-names@https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", {}], + + "gauge": ["gauge@5.0.1", "", { "dependencies": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.3", "console-control-strings": "^1.1.0", "has-unicode": "^2.0.1", "signal-exit": "^4.0.1", "string-width": "^4.2.3", "strip-ansi": "^6.0.1", "wide-align": "^1.1.5" } }, "sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ=="], + + "gensync": ["gensync@https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", {}], + + "get-caller-file": ["get-caller-file@https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", {}], + + "get-func-name": ["get-func-name@2.0.2", "", {}, "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ=="], + + "get-intrinsic": ["get-intrinsic@https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", { "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" } }], + + "get-nonce": ["get-nonce@1.0.1", "", {}, "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q=="], + + "get-npm-tarball-url": ["get-npm-tarball-url@https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz", {}], + + "get-package-type": ["get-package-type@https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", {}], + + "get-port": ["get-port@https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", {}], + + "get-stdin": ["get-stdin@https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", {}], + + "get-stream": ["get-stream@7.0.1", "", {}, "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ=="], + + "get-symbol-description": ["get-symbol-description@https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", { "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" } }], + + "get-tsconfig": ["get-tsconfig@https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.5.0.tgz", {}], + + "giget": ["giget@https://registry.npmjs.org/giget/-/giget-1.1.2.tgz", { "dependencies": { "colorette": "^2.0.19", "defu": "^6.1.2", "https-proxy-agent": "^5.0.1", "mri": "^1.2.0", "node-fetch-native": "^1.0.2", "pathe": "^1.1.0", "tar": "^6.1.13" } }], + + "git-hooks-list": ["git-hooks-list@https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-1.0.3.tgz", {}], + + "git-log-parser": ["git-log-parser@1.2.0", "", { "dependencies": { "argv-formatter": "~1.0.0", "spawn-error-forwarder": "~1.0.0", "split2": "~1.0.0", "stream-combiner2": "~1.1.1", "through2": "~2.0.0", "traverse": "~0.6.6" } }, "sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA=="], + + "github-slugger": ["github-slugger@https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", {}], + + "glob": ["glob@10.3.3", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.0.3", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw=="], + + "glob-parent": ["glob-parent@https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", { "dependencies": { "is-glob": "^4.0.3" } }], + + "glob-promise": ["glob-promise@https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz", { "dependencies": { "@types/glob": "^7.1.3" } }], + + "glob-to-regexp": ["glob-to-regexp@https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", {}], + + "global-modules": ["global-modules@https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", { "dependencies": { "global-prefix": "^3.0.0" } }], + + "global-prefix": ["global-prefix@https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", { "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" } }], + + "globals": ["globals@https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", { "dependencies": { "type-fest": "^0.20.2" } }], + + "globalthis": ["globalthis@https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", { "dependencies": { "define-properties": "^1.1.3" } }], + + "globalyzer": ["globalyzer@https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", {}], + + "globby": ["globby@14.0.0", "", { "dependencies": { "@sindresorhus/merge-streams": "^1.0.0", "fast-glob": "^3.3.2", "ignore": "^5.2.4", "path-type": "^5.0.0", "slash": "^5.1.0", "unicorn-magic": "^0.1.0" } }, "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ=="], + + "globjoin": ["globjoin@https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", {}], + + "globrex": ["globrex@https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", {}], + + "gonzales-pe": ["gonzales-pe@https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.3.0.tgz", { "dependencies": { "minimist": "^1.2.5" } }], + + "gopd": ["gopd@https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", { "dependencies": { "get-intrinsic": "^1.1.3" } }], + + "graceful-fs": ["graceful-fs@https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", {}], + + "grapheme-splitter": ["grapheme-splitter@https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", {}], + + "graphql": ["graphql@https://registry.npmjs.org/graphql/-/graphql-16.6.0.tgz", {}], + + "graphql-config": ["graphql-config@5.0.3", "", { "dependencies": { "@graphql-tools/graphql-file-loader": "^8.0.0", "@graphql-tools/json-file-loader": "^8.0.0", "@graphql-tools/load": "^8.0.0", "@graphql-tools/merge": "^9.0.0", "@graphql-tools/url-loader": "^8.0.0", "@graphql-tools/utils": "^10.0.0", "cosmiconfig": "^8.1.0", "jiti": "^1.18.2", "minimatch": "^4.2.3", "string-env-interpolation": "^1.0.1", "tslib": "^2.4.0" } }, "sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ=="], + + "graphql-language-service-interface": ["graphql-language-service-interface@https://registry.npmjs.org/graphql-language-service-interface/-/graphql-language-service-interface-2.10.2.tgz", { "dependencies": { "graphql-config": "^4.1.0", "graphql-language-service-parser": "^1.10.4", "graphql-language-service-types": "^1.8.7", "graphql-language-service-utils": "^2.7.1", "vscode-languageserver-types": "^3.15.1" } }], + + "graphql-language-service-parser": ["graphql-language-service-parser@https://registry.npmjs.org/graphql-language-service-parser/-/graphql-language-service-parser-1.10.4.tgz", { "dependencies": { "graphql-language-service-types": "^1.8.7" } }], + + "graphql-language-service-types": ["graphql-language-service-types@https://registry.npmjs.org/graphql-language-service-types/-/graphql-language-service-types-1.8.7.tgz", { "dependencies": { "graphql-config": "^4.1.0", "vscode-languageserver-types": "^3.15.1" } }], + + "graphql-language-service-utils": ["graphql-language-service-utils@https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-2.5.1.tgz", { "dependencies": { "graphql-language-service-types": "^1.8.0", "nullthrows": "^1.0.0" } }], + + "graphql-request": ["graphql-request@https://registry.npmjs.org/graphql-request/-/graphql-request-6.0.0.tgz", { "dependencies": { "@graphql-typed-document-node/core": "^3.2.0", "cross-fetch": "^3.1.5" } }], + + "graphql-tag": ["graphql-tag@2.12.6", "", { "dependencies": { "tslib": "^2.1.0" } }, "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg=="], + + "graphql-ws": ["graphql-ws@5.14.0", "", {}, "sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g=="], + + "graphqurl": ["graphqurl@https://registry.npmjs.org/graphqurl/-/graphqurl-1.0.1.tgz", { "dependencies": { "@oclif/command": "1.8.0", "@oclif/config": "1.17.0", "@oclif/errors": "1.3.4", "@oclif/plugin-help": "3.2.1", "cli-ux": "^4.7.3", "express": "4.16.3", "graphql": "15.4.0", "graphql-language-service-interface": "^2.8.2", "graphql-language-service-utils": "2.5.1", "isomorphic-fetch": "3.0.0", "isomorphic-ws": "4.0.1", "open": "7.3.1", "subscriptions-transport-ws": "0.9.18", "terminal-kit": "^1.45.4", "ws": "7.4.2" } }], + + "gunzip-maybe": ["gunzip-maybe@https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", { "dependencies": { "browserify-zlib": "^0.1.4", "is-deflate": "^1.0.0", "is-gzip": "^1.0.0", "peek-stream": "^1.1.0", "pumpify": "^1.3.3", "through2": "^2.0.3" } }], + + "handlebars": ["handlebars@https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", { "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.0", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, "optionalDependencies": { "uglify-js": "^3.1.4" } }], + + "hard-rejection": ["hard-rejection@https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", {}], + + "has": ["has@https://registry.npmjs.org/has/-/has-1.0.3.tgz", { "dependencies": { "function-bind": "^1.1.1" } }], + + "has-bigints": ["has-bigints@https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", {}], + + "has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", {}], + + "has-property-descriptors": ["has-property-descriptors@https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", { "dependencies": { "get-intrinsic": "^1.1.1" } }], + + "has-proto": ["has-proto@https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", {}], + + "has-symbols": ["has-symbols@https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", {}], + + "has-tostringtag": ["has-tostringtag@https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", { "dependencies": { "has-symbols": "^1.0.2" } }], + + "has-unicode": ["has-unicode@2.0.1", "", {}, "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="], + + "hasown": ["hasown@2.0.0", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA=="], + + "hast-util-from-html": ["hast-util-from-html@https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-1.0.1.tgz", { "dependencies": { "@types/hast": "^2.0.0", "hast-util-from-parse5": "^7.0.0", "parse5": "^7.0.0", "vfile": "^5.0.0" } }], + + "hast-util-from-parse5": ["hast-util-from-parse5@https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", { "dependencies": { "@types/hast": "^2.0.0", "@types/unist": "^2.0.0", "hastscript": "^7.0.0", "property-information": "^6.0.0", "vfile": "^5.0.0", "vfile-location": "^4.0.0", "web-namespaces": "^2.0.0" } }], + + "hast-util-parse-selector": ["hast-util-parse-selector@https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", { "dependencies": { "@types/hast": "^2.0.0" } }], + + "hast-util-to-estree": ["hast-util-to-estree@https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.3.2.tgz", { "dependencies": { "@types/estree": "^1.0.0", "@types/estree-jsx": "^1.0.0", "@types/hast": "^2.0.0", "@types/unist": "^2.0.0", "comma-separated-tokens": "^2.0.0", "estree-util-attach-comments": "^2.0.0", "estree-util-is-identifier-name": "^2.0.0", "hast-util-whitespace": "^2.0.0", "mdast-util-mdx-expression": "^1.0.0", "mdast-util-mdxjs-esm": "^1.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0", "style-to-object": "^0.4.1", "unist-util-position": "^4.0.0", "zwitch": "^2.0.0" } }], + + "hast-util-whitespace": ["hast-util-whitespace@https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", {}], + + "hastscript": ["hastscript@https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", { "dependencies": { "@types/hast": "^2.0.0", "comma-separated-tokens": "^2.0.0", "hast-util-parse-selector": "^3.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0" } }], + + "header-case": ["header-case@https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", { "dependencies": { "capital-case": "^1.0.4", "tslib": "^2.0.3" } }], + + "history": ["history@https://registry.npmjs.org/history/-/history-4.10.1.tgz", { "dependencies": { "@babel/runtime": "^7.1.2", "loose-envify": "^1.2.0", "resolve-pathname": "^3.0.0", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0", "value-equal": "^1.0.1" } }], + + "history-with-query": ["history-with-query@https://registry.npmjs.org/history-with-query/-/history-with-query-4.10.4.tgz", { "dependencies": { "@babel/runtime": "^7.1.2", "loose-envify": "^1.2.0", "query-string": "^6.11.0", "resolve-pathname": "^3.0.0", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0", "value-equal": "^1.0.1" } }], + + "hoist-non-react-statics": ["hoist-non-react-statics@3.3.2", "", { "dependencies": { "react-is": "^16.7.0" } }, "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="], + + "hook-std": ["hook-std@3.0.0", "", {}, "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw=="], + + "hosted-git-info": ["hosted-git-info@7.0.1", "", { "dependencies": { "lru-cache": "^10.0.1" } }, "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA=="], + + "html-encoding-sniffer": ["html-encoding-sniffer@3.0.0", "", { "dependencies": { "whatwg-encoding": "^2.0.0" } }, "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA=="], + + "html-escaper": ["html-escaper@https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", {}], + + "html-parse-stringify": ["html-parse-stringify@3.0.1", "", { "dependencies": { "void-elements": "3.1.0" } }, "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg=="], + + "html-tags": ["html-tags@https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", {}], + + "htmlparser2": ["htmlparser2@https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", { "dependencies": { "domelementtype": "^1.3.1", "domhandler": "^2.3.0", "domutils": "^1.5.1", "entities": "^1.1.1", "inherits": "^2.0.1", "readable-stream": "^3.1.1" } }], + + "http-cache-semantics": ["http-cache-semantics@4.1.1", "", {}, "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="], + + "http-errors": ["http-errors@https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }], + + "http-proxy-agent": ["http-proxy-agent@7.0.0", "", { "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" } }, "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ=="], + + "https-proxy-agent": ["https-proxy-agent@7.0.2", "", { "dependencies": { "agent-base": "^7.0.2", "debug": "4" } }, "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA=="], + + "human-signals": ["human-signals@https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", {}], + + "husky": ["husky@https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", {}], + + "hyperlinker": ["hyperlinker@https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz", {}], + + "i18next": ["i18next@23.2.3", "", { "dependencies": { "@babel/runtime": "^7.22.5" } }, "sha512-5spO7L0rNmW0jFuNhz+gfirlFt1anle4mTy4+gFkgsH0+T3R5++4oncBrzeKa7v8pweRyGBoGmOpboqlxovg6A=="], + + "i18next-browser-languagedetector": ["i18next-browser-languagedetector@7.1.0", "", { "dependencies": { "@babel/runtime": "^7.19.4" } }, "sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA=="], + + "i18next-http-backend": ["i18next-http-backend@2.2.1", "", { "dependencies": { "cross-fetch": "3.1.6" } }, "sha512-ZXIdn/8NJIBJ0X4hzXfc3STYxKrCKh1fYjji9HPyIpEJfvTvy8/ZlTl8RuTizzCPj2ZcWrfaecyOMKs6bQ7u5A=="], + + "iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }], + + "ieee754": ["ieee754@https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", {}], + + "ignore": ["ignore@https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", {}], + + "ignore-walk": ["ignore-walk@6.0.4", "", { "dependencies": { "minimatch": "^9.0.0" } }, "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw=="], + + "image-size": ["image-size@https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", {}], + + "immediate": ["immediate@3.0.6", "", {}, "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="], + + "immer": ["immer@10.0.2", "", {}, "sha512-Rx3CqeqQ19sxUtYV9CU911Vhy8/721wRFnJv3REVGWUmoAcIwzifTsdmJte/MV+0/XpM35LZdQMBGkRIoLPwQA=="], + + "immutable": ["immutable@https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", {}], + + "import-fresh": ["import-fresh@3.3.0", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="], + + "import-from": ["import-from@https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", {}], + + "import-from-esm": ["import-from-esm@1.3.3", "", { "dependencies": { "debug": "^4.3.4", "import-meta-resolve": "^4.0.0" } }, "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ=="], + + "import-lazy": ["import-lazy@https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", {}], + + "import-meta-resolve": ["import-meta-resolve@4.0.0", "", {}, "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA=="], + + "import-modules": ["import-modules@https://registry.npmjs.org/import-modules/-/import-modules-2.1.0.tgz", {}], + + "imurmurhash": ["imurmurhash@https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", {}], + + "indent-string": ["indent-string@https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", {}], + + "index-to-position": ["index-to-position@0.1.2", "", {}, "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g=="], + + "inflight": ["inflight@https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", { "dependencies": { "once": "^1.3.0", "wrappy": "1" } }], + + "inherits": ["inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", {}], + + "ini": ["ini@4.1.1", "", {}, "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g=="], + + "init-package-json": ["init-package-json@6.0.0", "", { "dependencies": { "npm-package-arg": "^11.0.0", "promzard": "^1.0.0", "read": "^2.0.0", "read-package-json": "^7.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4", "validate-npm-package-name": "^5.0.0" } }, "sha512-AmXD+Aht5iZGo/y1KUtZSUQ1SltesXHxQuc7qeNz0eUGx/8WgkHeeQLSFdM8l9YpmnnamGIbAxVdAs2xoLRKRQ=="], + + "inline-style-parser": ["inline-style-parser@https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", {}], + + "inquirer": ["inquirer@https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", { "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.21", "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6", "wrap-ansi": "^7.0.0" } }], + + "internal-slot": ["internal-slot@https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", { "dependencies": { "get-intrinsic": "^1.2.0", "has": "^1.0.3", "side-channel": "^1.0.4" } }], + + "intersection-observer": ["intersection-observer@https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.12.2.tgz", {}], + + "into-stream": ["into-stream@7.0.0", "", { "dependencies": { "from2": "^2.3.0", "p-is-promise": "^3.0.0" } }, "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw=="], + + "invariant": ["invariant@https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", { "dependencies": { "loose-envify": "^1.0.0" } }], + + "invert-kv": ["invert-kv@https://registry.npmjs.org/invert-kv/-/invert-kv-3.0.1.tgz", {}], + + "iota-array": ["iota-array@https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", {}], + + "ip": ["ip@https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", {}], + + "ip-regex": ["ip-regex@5.0.0", "", {}, "sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw=="], + + "ipaddr.js": ["ipaddr.js@https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", {}], + + "irregular-plurals": ["irregular-plurals@https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", {}], + + "is-absolute": ["is-absolute@https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", { "dependencies": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" } }], + + "is-absolute-url": ["is-absolute-url@https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", {}], + + "is-alphabetical": ["is-alphabetical@https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", {}], + + "is-alphanumerical": ["is-alphanumerical@https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", { "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" } }], + + "is-arguments": ["is-arguments@https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", { "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }], + + "is-array-buffer": ["is-array-buffer@https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", { "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.0", "is-typed-array": "^1.1.10" } }], + + "is-arrayish": ["is-arrayish@https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", {}], + + "is-bigint": ["is-bigint@https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", { "dependencies": { "has-bigints": "^1.0.1" } }], + + "is-binary-path": ["is-binary-path@https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", { "dependencies": { "binary-extensions": "^2.0.0" } }], + + "is-boolean-object": ["is-boolean-object@https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", { "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }], + + "is-buffer": ["is-buffer@https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", {}], + + "is-builtin-module": ["is-builtin-module@https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", { "dependencies": { "builtin-modules": "^3.3.0" } }], + + "is-callable": ["is-callable@https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", {}], + + "is-cidr": ["is-cidr@5.0.3", "", { "dependencies": { "cidr-regex": "4.0.3" } }, "sha512-lKkM0tmz07dAxNsr8Ii9MGreExa9ZR34N9j8mTG5op824kcwBqinZPowNjcVWWc7j+jR8XAMMItOmBkniN0jOA=="], + + "is-core-module": ["is-core-module@https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", { "dependencies": { "has": "^1.0.3" } }], + + "is-date-object": ["is-date-object@https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", { "dependencies": { "has-tostringtag": "^1.0.0" } }], + + "is-decimal": ["is-decimal@https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", {}], + + "is-deflate": ["is-deflate@https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", {}], + + "is-docker": ["is-docker@https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", {}], + + "is-extglob": ["is-extglob@https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", {}], + + "is-fullwidth-code-point": ["is-fullwidth-code-point@https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", {}], + + "is-generator-function": ["is-generator-function@https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", { "dependencies": { "has-tostringtag": "^1.0.0" } }], + + "is-glob": ["is-glob@https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", { "dependencies": { "is-extglob": "^2.1.1" } }], + + "is-gzip": ["is-gzip@https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", {}], + + "is-hexadecimal": ["is-hexadecimal@https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", {}], + + "is-interactive": ["is-interactive@https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", {}], + + "is-lambda": ["is-lambda@1.0.1", "", {}, "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="], + + "is-lower-case": ["is-lower-case@https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "is-map": ["is-map@https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", {}], + + "is-nan": ["is-nan@https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", { "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3" } }], + + "is-negative-zero": ["is-negative-zero@https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", {}], + + "is-number": ["is-number@https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", {}], + + "is-number-object": ["is-number-object@https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", { "dependencies": { "has-tostringtag": "^1.0.0" } }], + + "is-obj": ["is-obj@2.0.0", "", {}, "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="], + + "is-path-cwd": ["is-path-cwd@https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", {}], + + "is-path-inside": ["is-path-inside@https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", {}], + + "is-plain-obj": ["is-plain-obj@https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", {}], + + "is-plain-object": ["is-plain-object@3.0.1", "", {}, "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g=="], + + "is-potential-custom-element-name": ["is-potential-custom-element-name@1.0.1", "", {}, "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="], + + "is-regex": ["is-regex@https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", { "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }], + + "is-regexp": ["is-regexp@https://registry.npmjs.org/is-regexp/-/is-regexp-2.1.0.tgz", {}], + + "is-relative": ["is-relative@https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", { "dependencies": { "is-unc-path": "^1.0.0" } }], + + "is-set": ["is-set@https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", {}], + + "is-shared-array-buffer": ["is-shared-array-buffer@https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", { "dependencies": { "call-bind": "^1.0.2" } }], + + "is-stream": ["is-stream@https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", {}], + + "is-string": ["is-string@https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", { "dependencies": { "has-tostringtag": "^1.0.0" } }], + + "is-symbol": ["is-symbol@https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", { "dependencies": { "has-symbols": "^1.0.2" } }], + + "is-text-path": ["is-text-path@2.0.0", "", { "dependencies": { "text-extensions": "^2.0.0" } }, "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw=="], + + "is-typed-array": ["is-typed-array@https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", { "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-tostringtag": "^1.0.0" } }], + + "is-typedarray": ["is-typedarray@https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", {}], + + "is-unc-path": ["is-unc-path@https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", { "dependencies": { "unc-path-regex": "^0.1.2" } }], + + "is-unicode-supported": ["is-unicode-supported@https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", {}], + + "is-upper-case": ["is-upper-case@https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "is-weakmap": ["is-weakmap@https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", {}], + + "is-weakref": ["is-weakref@https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", { "dependencies": { "call-bind": "^1.0.2" } }], + + "is-weakset": ["is-weakset@https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", { "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" } }], + + "is-what": ["is-what@https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", {}], + + "is-windows": ["is-windows@https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", {}], + + "is-wsl": ["is-wsl@https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", { "dependencies": { "is-docker": "^2.0.0" } }], + + "isarray": ["isarray@https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", {}], + + "isexe": ["isexe@https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", {}], + + "isobject": ["isobject@https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", {}], + + "isomorphic-fetch": ["isomorphic-fetch@https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", { "dependencies": { "node-fetch": "^2.6.1", "whatwg-fetch": "^3.4.1" } }], + + "isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", {}], + + "issue-parser": ["issue-parser@6.0.0", "", { "dependencies": { "lodash.capitalize": "^4.2.1", "lodash.escaperegexp": "^4.1.2", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "lodash.uniqby": "^4.7.0" } }, "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA=="], + + "istanbul-lib-coverage": ["istanbul-lib-coverage@https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", {}], + + "istanbul-lib-instrument": ["istanbul-lib-instrument@https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", { "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" } }], + + "istanbul-lib-report": ["istanbul-lib-report@https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", { "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", "supports-color": "^7.1.0" } }], + + "istanbul-reports": ["istanbul-reports@https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", { "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" } }], + + "iterall": ["iterall@https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz", {}], + + "jackspeak": ["jackspeak@2.2.1", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw=="], + + "jake": ["jake@https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", { "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" } }], + + "java-properties": ["java-properties@1.0.2", "", {}, "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ=="], + + "jest-haste-map": ["jest-haste-map@https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", { "dependencies": { "@jest/types": "^29.5.0", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.4.3", "jest-util": "^29.5.0", "jest-worker": "^29.5.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, "optionalDependencies": { "fsevents": "^2.3.2" } }], + + "jest-mock": ["jest-mock@27.5.1", "", { "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*" } }, "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og=="], + + "jest-regex-util": ["jest-regex-util@https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", {}], + + "jest-util": ["jest-util@https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", { "dependencies": { "@jest/types": "^29.5.0", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" } }], + + "jest-worker": ["jest-worker@https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", { "dependencies": { "@types/node": "*", "jest-util": "^29.5.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" } }], + + "jiti": ["jiti@https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", {}], + + "jose": ["jose@5.0.1", "", {}, "sha512-gRVzy7s3RRdGbXmcTdlOswJOjhwPLx1ijIgAqLY6ktzFpOJxxYn4l0fC2vHaHHi4YBX/5FOL3aY+6W0cvQgpug=="], + + "jpeg-js": ["jpeg-js@https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", {}], + + "js-cookie": ["js-cookie@https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", {}], + + "js-sdsl": ["js-sdsl@https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", {}], + + "js-tokens": ["js-tokens@https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", {}], + + "js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" } }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="], + + "jscodeshift": ["jscodeshift@https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", { "dependencies": { "@babel/core": "^7.13.16", "@babel/parser": "^7.13.16", "@babel/plugin-proposal-class-properties": "^7.13.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", "@babel/plugin-proposal-optional-chaining": "^7.13.12", "@babel/plugin-transform-modules-commonjs": "^7.13.8", "@babel/preset-flow": "^7.13.13", "@babel/preset-typescript": "^7.13.0", "@babel/register": "^7.13.16", "babel-core": "^7.0.0-bridge.0", "chalk": "^4.1.2", "flow-parser": "0.*", "graceful-fs": "^4.2.4", "micromatch": "^4.0.4", "neo-async": "^2.5.0", "node-dir": "^0.1.17", "recast": "^0.21.0", "temp": "^0.8.4", "write-file-atomic": "^2.3.0" } }], + + "jsdom": ["jsdom@22.1.0", "", { "dependencies": { "abab": "^2.0.6", "cssstyle": "^3.0.0", "data-urls": "^4.0.0", "decimal.js": "^10.4.3", "domexception": "^4.0.0", "form-data": "^4.0.0", "html-encoding-sniffer": "^3.0.0", "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.1", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.4", "parse5": "^7.1.2", "rrweb-cssom": "^0.6.0", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", "tough-cookie": "^4.1.2", "w3c-xmlserializer": "^4.0.0", "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^12.0.1", "ws": "^8.13.0", "xml-name-validator": "^4.0.0" } }, "sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw=="], + + "jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", {}], + + "json-bignum": ["json-bignum@0.0.3", "", {}, "sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg=="], + + "json-parse-better-errors": ["json-parse-better-errors@1.0.2", "", {}, "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="], + + "json-parse-even-better-errors": ["json-parse-even-better-errors@https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", {}], + + "json-schema-traverse": ["json-schema-traverse@https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", {}], + + "json-stable-stringify": ["json-stable-stringify@https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz", { "dependencies": { "jsonify": "^0.0.1" } }], + + "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", {}], + + "json-stringify-nice": ["json-stringify-nice@1.1.4", "", {}, "sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw=="], + + "json-stringify-safe": ["json-stringify-safe@5.0.1", "", {}, "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="], + + "json-to-pretty-yaml": ["json-to-pretty-yaml@https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz", { "dependencies": { "remedial": "^1.0.7", "remove-trailing-spaces": "^1.0.6" } }], + + "json2mq": ["json2mq@0.2.0", "", { "dependencies": { "string-convert": "^0.2.0" } }, "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA=="], + + "json5": ["json5@https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", {}], + + "jsonc-parser": ["jsonc-parser@https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", {}], + + "jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", { "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "jsonify": ["jsonify@https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", {}], + + "jsonparse": ["jsonparse@1.3.1", "", {}, "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="], + + "jsx-ast-utils": ["jsx-ast-utils@https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", { "dependencies": { "array-includes": "^3.1.5", "object.assign": "^4.1.3" } }], + + "jszip": ["jszip@3.10.1", "", { "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", "setimmediate": "^1.0.5" } }, "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g=="], + + "just-diff": ["just-diff@6.0.2", "", {}, "sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA=="], + + "just-diff-apply": ["just-diff-apply@5.5.0", "", {}, "sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw=="], + + "jwt-decode": ["jwt-decode@3.1.2", "", {}, "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A=="], + + "kind-of": ["kind-of@https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", {}], + + "kleur": ["kleur@https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", {}], + + "known-css-properties": ["known-css-properties@https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.21.0.tgz", {}], + + "kolorist": ["kolorist@https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", {}], + + "lazy-universal-dotenv": ["lazy-universal-dotenv@https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", { "dependencies": { "app-root-dir": "^1.0.2", "dotenv": "^16.0.0", "dotenv-expand": "^10.0.0" } }], + + "lazyness": ["lazyness@https://registry.npmjs.org/lazyness/-/lazyness-1.2.0.tgz", {}], + + "lcid": ["lcid@https://registry.npmjs.org/lcid/-/lcid-3.1.1.tgz", { "dependencies": { "invert-kv": "^3.0.0" } }], + + "less": ["less@https://registry.npmjs.org/less/-/less-4.1.3.tgz", { "dependencies": { "copy-anything": "^2.0.1", "parse-node-version": "^1.0.1", "tslib": "^2.3.0" }, "optionalDependencies": { "errno": "^0.1.1", "graceful-fs": "^4.1.2", "image-size": "~0.5.0", "make-dir": "^2.1.0", "mime": "^1.4.1", "needle": "^3.1.0", "source-map": "~0.6.0" } }], + + "leven": ["leven@https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", {}], + + "levn": ["levn@https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }], + + "libnpmaccess": ["libnpmaccess@8.0.2", "", { "dependencies": { "npm-package-arg": "^11.0.1", "npm-registry-fetch": "^16.0.0" } }, "sha512-4K+nsg3OYt4rjryP/3D5zGWluLbZaKozwj6YdtvAyxNhLhUrjCoyxHVoL5AkTJcAnjsd6/ATei52QPVvpSX9Ug=="], + + "libnpmdiff": ["libnpmdiff@6.0.5", "", { "dependencies": { "@npmcli/arborist": "^7.2.1", "@npmcli/disparity-colors": "^3.0.0", "@npmcli/installed-package-contents": "^2.0.2", "binary-extensions": "^2.2.0", "diff": "^5.1.0", "minimatch": "^9.0.0", "npm-package-arg": "^11.0.1", "pacote": "^17.0.4", "tar": "^6.2.0" } }, "sha512-AplhlY7Ha/lzOcpmVpbQy8P12JSyIpDTgPsBmd4G7+wmLJLIYMclqY4I0lbWcwKua95vxgyp7j1gIYk1DP7ZTw=="], + + "libnpmexec": ["libnpmexec@7.0.6", "", { "dependencies": { "@npmcli/arborist": "^7.2.1", "@npmcli/run-script": "^7.0.2", "ci-info": "^4.0.0", "npm-package-arg": "^11.0.1", "npmlog": "^7.0.1", "pacote": "^17.0.4", "proc-log": "^3.0.0", "read": "^2.0.0", "read-package-json-fast": "^3.0.2", "semver": "^7.3.7", "walk-up-path": "^3.0.1" } }, "sha512-TWvtfKyBQ/UiWl54uG7ALuLAGE5s6H6FTQKs7bAH5H19jtEgpxujQz6+iNNVOIMw7Cfw3Oat6RZqL8ZfXmJA9g=="], + + "libnpmfund": ["libnpmfund@5.0.3", "", { "dependencies": { "@npmcli/arborist": "^7.2.1" } }, "sha512-Kb/fJZNAOG6uIHkhkUah+HfLYqqyuc3s65cPWiwGz1nta8ta79PaexzstGxvGrMA/JFfjZ0BMOejM6zB1aXA8g=="], + + "libnpmhook": ["libnpmhook@10.0.1", "", { "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^16.0.0" } }, "sha512-FnXCweDpoAko6mnLPSW8qrRYicjfh+GrvY5PuYHQRPvaW4BFtHDUmK3K3aYx4yD3TeGAKpj4IigrEDfUfWuSkA=="], + + "libnpmorg": ["libnpmorg@6.0.2", "", { "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^16.0.0" } }, "sha512-zK4r6cjVsfXf7hWzWGB6R0LBJidVhKaeMWMZL/1eyZS6ixxAxVijfsPacoEnBRCFaXsNjAtwV3b2RCmYU6+usA=="], + + "libnpmpack": ["libnpmpack@6.0.5", "", { "dependencies": { "@npmcli/arborist": "^7.2.1", "@npmcli/run-script": "^7.0.2", "npm-package-arg": "^11.0.1", "pacote": "^17.0.4" } }, "sha512-H6a8EDBwU765ogkcan1VEhjAZFflXgKVijbB7TDnbl2ce0MuJDLnmVzSg30/7zgIj1gNtxenaBigeQFQ1hxP9A=="], + + "libnpmpublish": ["libnpmpublish@9.0.3", "", { "dependencies": { "ci-info": "^4.0.0", "normalize-package-data": "^6.0.0", "npm-package-arg": "^11.0.1", "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0", "semver": "^7.3.7", "sigstore": "^2.1.0", "ssri": "^10.0.5" } }, "sha512-XoF0QgT1Ph9RMBfTwiwZeRN4Rs5t4w1POaRxaoVoWCMUqysswwlAPu3ZZJDNbh7asXBWXcXTJziDWkInhpbiBg=="], + + "libnpmsearch": ["libnpmsearch@7.0.1", "", { "dependencies": { "npm-registry-fetch": "^16.0.0" } }, "sha512-XyKi6Y94t6PGd5Lk2Ma3+fgiHWD3KSCvXmHOrcLkAOEP7oUejbNjL0Bb/HUDZXgBj6gP1Qk7pJ6jZPFBc2hmXQ=="], + + "libnpmteam": ["libnpmteam@6.0.1", "", { "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^16.0.0" } }, "sha512-1YytqVk1gSkKFNMe4kkCKN49y5rlABrRSx5TrYShQtt2Lb4uQaed49dGE7Ue8TJGxbIkHzvyyVtb3PBiGACVqw=="], + + "libnpmversion": ["libnpmversion@5.0.2", "", { "dependencies": { "@npmcli/git": "^5.0.3", "@npmcli/run-script": "^7.0.2", "json-parse-even-better-errors": "^3.0.0", "proc-log": "^3.0.0", "semver": "^7.3.7" } }, "sha512-6JBnLhd6SYgKRekJ4cotxpURLGbEtKxzw+a8p5o+wNwrveJPMH8yW/HKjeewyHzWmxzzwn9EQ3TkF2onkrwstA=="], + + "lie": ["lie@3.3.0", "", { "dependencies": { "immediate": "~3.0.5" } }, "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ=="], + + "lightningcss": ["lightningcss@1.32.0", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.32.0", "lightningcss-darwin-arm64": "1.32.0", "lightningcss-darwin-x64": "1.32.0", "lightningcss-freebsd-x64": "1.32.0", "lightningcss-linux-arm-gnueabihf": "1.32.0", "lightningcss-linux-arm64-gnu": "1.32.0", "lightningcss-linux-arm64-musl": "1.32.0", "lightningcss-linux-x64-gnu": "1.32.0", "lightningcss-linux-x64-musl": "1.32.0", "lightningcss-win32-arm64-msvc": "1.32.0", "lightningcss-win32-x64-msvc": "1.32.0" } }, "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ=="], + + "lightningcss-android-arm64": ["lightningcss-android-arm64@1.32.0", "", { "os": "android", "cpu": "arm64" }, "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg=="], + + "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.32.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ=="], + + "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.32.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w=="], + + "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.32.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig=="], + + "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.32.0", "", { "os": "linux", "cpu": "arm" }, "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw=="], + + "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.32.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ=="], + + "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.32.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg=="], + + "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.32.0", "", { "os": "linux", "cpu": "x64" }, "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA=="], + + "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.32.0", "", { "os": "linux", "cpu": "x64" }, "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg=="], + + "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.32.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw=="], + + "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.32.0", "", { "os": "win32", "cpu": "x64" }, "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q=="], + + "lilconfig": ["lilconfig@https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", {}], + + "lines-and-columns": ["lines-and-columns@https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", {}], + + "lint-staged": ["lint-staged@https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.1.tgz", { "dependencies": { "chalk": "5.2.0", "cli-truncate": "^3.1.0", "commander": "^10.0.0", "debug": "^4.3.4", "execa": "^7.0.0", "lilconfig": "2.1.0", "listr2": "^5.0.7", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "object-inspect": "^1.12.3", "pidtree": "^0.6.0", "string-argv": "^0.3.1", "yaml": "^2.2.1" } }], + + "listr2": ["listr2@https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz", { "dependencies": { "cli-truncate": "^2.1.0", "colorette": "^2.0.16", "log-update": "^4.0.0", "p-map": "^4.0.0", "rfdc": "^1.3.0", "rxjs": "^7.5.5", "through": "^2.3.8", "wrap-ansi": "^7.0.0" } }], + + "load-json-file": ["load-json-file@4.0.0", "", { "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", "pify": "^3.0.0", "strip-bom": "^3.0.0" } }, "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw=="], + + "local-pkg": ["local-pkg@https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", {}], + + "locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", { "dependencies": { "p-locate": "^5.0.0" } }], + + "lodash": ["lodash@https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", {}], + + "lodash-es": ["lodash-es@4.17.21", "", {}, "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="], + + "lodash._reinterpolate": ["lodash._reinterpolate@https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", {}], + + "lodash.camelcase": ["lodash.camelcase@4.3.0", "", {}, "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA=="], + + "lodash.capitalize": ["lodash.capitalize@4.2.1", "", {}, "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw=="], + + "lodash.debounce": ["lodash.debounce@https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", {}], + + "lodash.escaperegexp": ["lodash.escaperegexp@4.1.2", "", {}, "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw=="], + + "lodash.get": ["lodash.get@https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", {}], + + "lodash.isplainobject": ["lodash.isplainobject@4.0.6", "", {}, "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="], + + "lodash.isstring": ["lodash.isstring@4.0.1", "", {}, "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="], + + "lodash.merge": ["lodash.merge@https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", {}], + + "lodash.sortby": ["lodash.sortby@https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", {}], + + "lodash.template": ["lodash.template@https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", { "dependencies": { "lodash._reinterpolate": "^3.0.0", "lodash.templatesettings": "^4.0.0" } }], + + "lodash.templatesettings": ["lodash.templatesettings@https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", { "dependencies": { "lodash._reinterpolate": "^3.0.0" } }], + + "lodash.truncate": ["lodash.truncate@https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", {}], + + "lodash.uniqby": ["lodash.uniqby@4.7.0", "", {}, "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww=="], + + "lodash.zip": ["lodash.zip@https://registry.npmjs.org/lodash.zip/-/lodash.zip-4.2.0.tgz", {}], + + "log-symbols": ["log-symbols@https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", { "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" } }], + + "log-update": ["log-update@https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", { "dependencies": { "ansi-escapes": "^4.3.0", "cli-cursor": "^3.1.0", "slice-ansi": "^4.0.0", "wrap-ansi": "^6.2.0" } }], + + "longest-streak": ["longest-streak@https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", {}], + + "loose-envify": ["loose-envify@https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", { "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" } }], + + "loupe": ["loupe@2.3.7", "", { "dependencies": { "get-func-name": "^2.0.1" } }, "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA=="], + + "lower-case": ["lower-case@https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "lower-case-first": ["lower-case-first@https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", { "dependencies": { "yallist": "^3.0.2" } }], + + "lz-string": ["lz-string@1.5.0", "", {}, "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ=="], + + "magic-string": ["magic-string@https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.13" } }], + + "make-dir": ["make-dir@https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", { "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" } }], + + "make-fetch-happen": ["make-fetch-happen@13.0.0", "", { "dependencies": { "@npmcli/agent": "^2.0.0", "cacache": "^18.0.0", "http-cache-semantics": "^4.1.1", "is-lambda": "^1.0.1", "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^0.6.3", "promise-retry": "^2.0.1", "ssri": "^10.0.0" } }, "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A=="], + + "makeerror": ["makeerror@https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", { "dependencies": { "tmpl": "1.0.5" } }], + + "map-age-cleaner": ["map-age-cleaner@https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", { "dependencies": { "p-defer": "^1.0.0" } }], + + "map-cache": ["map-cache@https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", {}], + + "map-obj": ["map-obj@https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", {}], + + "map-or-similar": ["map-or-similar@https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", {}], + + "markdown-table": ["markdown-table@https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz", {}], + + "markdown-to-jsx": ["markdown-to-jsx@https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", {}], + + "marked": ["marked@10.0.0", "", {}, "sha512-YiGcYcWj50YrwBgNzFoYhQ1hT6GmQbFG8SksnYJX1z4BXTHSOrz1GB5/Jm2yQvMg4nN1FHP4M6r03R10KrVUiA=="], + + "marked-terminal": ["marked-terminal@6.2.0", "", { "dependencies": { "ansi-escapes": "^6.2.0", "cardinal": "^2.1.1", "chalk": "^5.3.0", "cli-table3": "^0.6.3", "node-emoji": "^2.1.3", "supports-hyperlinks": "^3.0.0" } }, "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw=="], + + "mathml-tag-names": ["mathml-tag-names@https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", {}], + + "md5": ["md5@2.3.0", "", { "dependencies": { "charenc": "0.0.2", "crypt": "0.0.2", "is-buffer": "~1.1.6" } }, "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g=="], + + "mdast-util-definitions": ["mdast-util-definitions@https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", { "dependencies": { "unist-util-visit": "^2.0.0" } }], + + "mdast-util-find-and-replace": ["mdast-util-find-and-replace@https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "escape-string-regexp": "^5.0.0", "unist-util-is": "^5.0.0", "unist-util-visit-parents": "^5.0.0" } }], + + "mdast-util-from-markdown": ["mdast-util-from-markdown@https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", "decode-named-character-reference": "^1.0.0", "mdast-util-to-string": "^3.1.0", "micromark": "^3.0.0", "micromark-util-decode-numeric-character-reference": "^1.0.0", "micromark-util-decode-string": "^1.0.0", "micromark-util-normalize-identifier": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "unist-util-stringify-position": "^3.0.0", "uvu": "^0.5.0" } }], + + "mdast-util-gfm": ["mdast-util-gfm@https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", { "dependencies": { "mdast-util-from-markdown": "^1.0.0", "mdast-util-gfm-autolink-literal": "^1.0.0", "mdast-util-gfm-footnote": "^1.0.0", "mdast-util-gfm-strikethrough": "^1.0.0", "mdast-util-gfm-table": "^1.0.0", "mdast-util-gfm-task-list-item": "^1.0.0", "mdast-util-to-markdown": "^1.0.0" } }], + + "mdast-util-gfm-autolink-literal": ["mdast-util-gfm-autolink-literal@https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "ccount": "^2.0.0", "mdast-util-find-and-replace": "^2.0.0", "micromark-util-character": "^1.0.0" } }], + + "mdast-util-gfm-footnote": ["mdast-util-gfm-footnote@https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-markdown": "^1.3.0", "micromark-util-normalize-identifier": "^1.0.0" } }], + + "mdast-util-gfm-strikethrough": ["mdast-util-gfm-strikethrough@https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-markdown": "^1.3.0" } }], + + "mdast-util-gfm-table": ["mdast-util-gfm-table@https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "markdown-table": "^3.0.0", "mdast-util-from-markdown": "^1.0.0", "mdast-util-to-markdown": "^1.3.0" } }], + + "mdast-util-gfm-task-list-item": ["mdast-util-gfm-task-list-item@https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-markdown": "^1.3.0" } }], + + "mdast-util-mdx-expression": ["mdast-util-mdx-expression@https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", "mdast-util-from-markdown": "^1.0.0", "mdast-util-to-markdown": "^1.0.0" } }], + + "mdast-util-mdxjs-esm": ["mdast-util-mdxjs-esm@https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", "mdast-util-from-markdown": "^1.0.0", "mdast-util-to-markdown": "^1.0.0" } }], + + "mdast-util-phrasing": ["mdast-util-phrasing@https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "unist-util-is": "^5.0.0" } }], + + "mdast-util-to-markdown": ["mdast-util-to-markdown@https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", "longest-streak": "^3.0.0", "mdast-util-phrasing": "^3.0.0", "mdast-util-to-string": "^3.0.0", "micromark-util-decode-string": "^1.0.0", "unist-util-visit": "^4.0.0", "zwitch": "^2.0.0" } }], + + "mdast-util-to-string": ["mdast-util-to-string@https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", {}], + + "mdn-data": ["mdn-data@https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", {}], + + "media-typer": ["media-typer@https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", {}], + + "mem": ["mem@https://registry.npmjs.org/mem/-/mem-5.1.1.tgz", { "dependencies": { "map-age-cleaner": "^0.1.3", "mimic-fn": "^2.1.0", "p-is-promise": "^2.1.0" } }], + + "memoizerific": ["memoizerific@https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", { "dependencies": { "map-or-similar": "^1.5.0" } }], + + "meow": ["meow@12.1.1", "", {}, "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw=="], + + "merge-descriptors": ["merge-descriptors@https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", {}], + + "merge-stream": ["merge-stream@https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", {}], + + "merge2": ["merge2@https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", {}], + + "meros": ["meros@https://registry.npmjs.org/meros/-/meros-1.2.1.tgz", {}], + + "methods": ["methods@https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", {}], + + "micromark": ["micromark@https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz", { "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", "decode-named-character-reference": "^1.0.0", "micromark-core-commonmark": "^1.0.1", "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-chunked": "^1.0.0", "micromark-util-combine-extensions": "^1.0.0", "micromark-util-decode-numeric-character-reference": "^1.0.0", "micromark-util-encode": "^1.0.0", "micromark-util-normalize-identifier": "^1.0.0", "micromark-util-resolve-all": "^1.0.0", "micromark-util-sanitize-uri": "^1.0.0", "micromark-util-subtokenize": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.1", "uvu": "^0.5.0" } }], + + "micromark-core-commonmark": ["micromark-core-commonmark@https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", { "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-factory-destination": "^1.0.0", "micromark-factory-label": "^1.0.0", "micromark-factory-space": "^1.0.0", "micromark-factory-title": "^1.0.0", "micromark-factory-whitespace": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-chunked": "^1.0.0", "micromark-util-classify-character": "^1.0.0", "micromark-util-html-tag-name": "^1.0.0", "micromark-util-normalize-identifier": "^1.0.0", "micromark-util-resolve-all": "^1.0.0", "micromark-util-subtokenize": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.1", "uvu": "^0.5.0" } }], + + "micromark-extension-gfm": ["micromark-extension-gfm@https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz", { "dependencies": { "micromark-extension-gfm-autolink-literal": "^1.0.0", "micromark-extension-gfm-footnote": "^1.0.0", "micromark-extension-gfm-strikethrough": "^1.0.0", "micromark-extension-gfm-table": "^1.0.0", "micromark-extension-gfm-tagfilter": "^1.0.0", "micromark-extension-gfm-task-list-item": "^1.0.0", "micromark-util-combine-extensions": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-extension-gfm-autolink-literal": ["micromark-extension-gfm-autolink-literal@https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-sanitize-uri": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-extension-gfm-footnote": ["micromark-extension-gfm-footnote@https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.0.tgz", { "dependencies": { "micromark-core-commonmark": "^1.0.0", "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-normalize-identifier": "^1.0.0", "micromark-util-sanitize-uri": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-extension-gfm-strikethrough": ["micromark-extension-gfm-strikethrough@https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.5.tgz", { "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-classify-character": "^1.0.0", "micromark-util-resolve-all": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-extension-gfm-table": ["micromark-extension-gfm-table@https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz", { "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-extension-gfm-tagfilter": ["micromark-extension-gfm-tagfilter@https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz", { "dependencies": { "micromark-util-types": "^1.0.0" } }], + + "micromark-extension-gfm-task-list-item": ["micromark-extension-gfm-task-list-item@https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.4.tgz", { "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-factory-destination": ["micromark-factory-destination@https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-factory-label": ["micromark-factory-label@https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-factory-space": ["micromark-factory-space@https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-factory-title": ["micromark-factory-title@https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", { "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-factory-whitespace": ["micromark-factory-whitespace@https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", { "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-util-character": ["micromark-util-character@https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", { "dependencies": { "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-util-chunked": ["micromark-util-chunked@https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", { "dependencies": { "micromark-util-symbol": "^1.0.0" } }], + + "micromark-util-classify-character": ["micromark-util-classify-character@https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-util-combine-extensions": ["micromark-util-combine-extensions@https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", { "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-types": "^1.0.0" } }], + + "micromark-util-decode-numeric-character-reference": ["micromark-util-decode-numeric-character-reference@https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", { "dependencies": { "micromark-util-symbol": "^1.0.0" } }], + + "micromark-util-decode-string": ["micromark-util-decode-string@https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", { "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^1.0.0", "micromark-util-decode-numeric-character-reference": "^1.0.0", "micromark-util-symbol": "^1.0.0" } }], + + "micromark-util-encode": ["micromark-util-encode@https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", {}], + + "micromark-util-html-tag-name": ["micromark-util-html-tag-name@https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", {}], + + "micromark-util-normalize-identifier": ["micromark-util-normalize-identifier@https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", { "dependencies": { "micromark-util-symbol": "^1.0.0" } }], + + "micromark-util-resolve-all": ["micromark-util-resolve-all@https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", { "dependencies": { "micromark-util-types": "^1.0.0" } }], + + "micromark-util-sanitize-uri": ["micromark-util-sanitize-uri@https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-encode": "^1.0.0", "micromark-util-symbol": "^1.0.0" } }], + + "micromark-util-subtokenize": ["micromark-util-subtokenize@https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", { "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0", "uvu": "^0.5.0" } }], + + "micromark-util-symbol": ["micromark-util-symbol@https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", {}], + + "micromark-util-types": ["micromark-util-types@https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz", {}], + + "micromatch": ["micromatch@https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", { "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" } }], + + "mime": ["mime@4.0.1", "", {}, "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA=="], + + "mime-db": ["mime-db@https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", {}], + + "mime-types": ["mime-types@https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", { "dependencies": { "mime-db": "1.52.0" } }], + + "mimic-fn": ["mimic-fn@https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", {}], + + "min-indent": ["min-indent@https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", {}], + + "minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", { "dependencies": { "brace-expansion": "^1.1.7" } }], + + "minimist": ["minimist@https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", {}], + + "minimist-options": ["minimist-options@https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", { "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" } }], + + "minipass": ["minipass@7.0.2", "", {}, "sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA=="], + + "minipass-collect": ["minipass-collect@2.0.1", "", { "dependencies": { "minipass": "^7.0.3" } }, "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw=="], + + "minipass-fetch": ["minipass-fetch@3.0.4", "", { "dependencies": { "minipass": "^7.0.3", "minipass-sized": "^1.0.3", "minizlib": "^2.1.2" }, "optionalDependencies": { "encoding": "^0.1.13" } }, "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg=="], + + "minipass-flush": ["minipass-flush@1.0.5", "", { "dependencies": { "minipass": "^3.0.0" } }, "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw=="], + + "minipass-json-stream": ["minipass-json-stream@1.0.1", "", { "dependencies": { "jsonparse": "^1.3.1", "minipass": "^3.0.0" } }, "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg=="], + + "minipass-pipeline": ["minipass-pipeline@1.2.4", "", { "dependencies": { "minipass": "^3.0.0" } }, "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A=="], + + "minipass-sized": ["minipass-sized@1.0.3", "", { "dependencies": { "minipass": "^3.0.0" } }, "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g=="], + + "minizlib": ["minizlib@https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", { "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" } }], + + "mkdirp": ["mkdirp@https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", {}], + + "mkdirp-classic": ["mkdirp-classic@https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", {}], + + "mlly": ["mlly@https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", { "dependencies": { "acorn": "^8.8.2", "pathe": "^1.1.0", "pkg-types": "^1.0.2", "ufo": "^1.1.1" } }], + + "mockjs": ["mockjs@https://registry.npmjs.org/mockjs/-/mockjs-1.1.0.tgz", { "dependencies": { "commander": "*" } }], + + "moment": ["moment@2.29.4", "", {}, "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="], + + "monaco-editor": ["monaco-editor@0.41.0", "", {}, "sha512-1o4olnZJsiLmv5pwLEAmzHTE/5geLKQ07BrGxlF4Ri/AXAc2yyDGZwHjiTqD8D/ROKUZmwMA28A+yEowLNOEcA=="], + + "mri": ["mri@https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", {}], + + "ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", {}], + + "multimap": ["multimap@https://registry.npmjs.org/multimap/-/multimap-1.1.0.tgz", {}], + + "mustache": ["mustache@https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", {}], + + "mute-stream": ["mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", {}], + + "nanoid": ["nanoid@4.0.2", "", {}, "sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw=="], + + "natural-compare": ["natural-compare@https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", {}], + + "natural-compare-lite": ["natural-compare-lite@https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", {}], + + "ndarray": ["ndarray@https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", { "dependencies": { "iota-array": "^1.0.0", "is-buffer": "^1.0.2" } }], + + "ndarray-pack": ["ndarray-pack@https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", { "dependencies": { "cwise-compiler": "^1.1.2", "ndarray": "^1.0.13" } }], + + "needle": ["needle@https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", { "dependencies": { "debug": "^3.2.6", "iconv-lite": "^0.6.3", "sax": "^1.2.4" } }], + + "negotiator": ["negotiator@https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", {}], + + "neo-async": ["neo-async@https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", {}], + + "nerf-dart": ["nerf-dart@1.0.0", "", {}, "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g=="], + + "nextgen-events": ["nextgen-events@https://registry.npmjs.org/nextgen-events/-/nextgen-events-1.5.3.tgz", {}], + + "nice-try": ["nice-try@https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", {}], + + "no-case": ["no-case@https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", { "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }], + + "node-bitmap": ["node-bitmap@https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", {}], + + "node-dir": ["node-dir@https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", { "dependencies": { "minimatch": "^3.0.2" } }], + + "node-emoji": ["node-emoji@2.1.3", "", { "dependencies": { "@sindresorhus/is": "^4.6.0", "char-regex": "^1.0.2", "emojilib": "^2.4.0", "skin-tone": "^2.0.0" } }, "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA=="], + + "node-fetch": ["node-fetch@2.6.12", "", { "dependencies": { "whatwg-url": "^5.0.0" } }, "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g=="], + + "node-fetch-native": ["node-fetch-native@https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.1.0.tgz", {}], + + "node-gyp": ["node-gyp@10.0.1", "", { "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", "glob": "^10.3.10", "graceful-fs": "^4.2.6", "make-fetch-happen": "^13.0.0", "nopt": "^7.0.0", "proc-log": "^3.0.0", "semver": "^7.3.5", "tar": "^6.1.2", "which": "^4.0.0" } }, "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg=="], + + "node-int64": ["node-int64@https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", {}], + + "node-releases": ["node-releases@https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", {}], + + "nopt": ["nopt@7.2.0", "", { "dependencies": { "abbrev": "^2.0.0" } }, "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA=="], + + "normalize-package-data": ["normalize-package-data@6.0.0", "", { "dependencies": { "hosted-git-info": "^7.0.0", "is-core-module": "^2.8.1", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" } }, "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg=="], + + "normalize-path": ["normalize-path@https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", {}], + + "normalize-range": ["normalize-range@https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", {}], + + "normalize-selector": ["normalize-selector@https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", {}], + + "normalize-url": ["normalize-url@8.0.0", "", {}, "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw=="], + + "npm": ["npm@10.3.0", "", { "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^7.2.1", "@npmcli/config": "^8.0.2", "@npmcli/fs": "^3.1.0", "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.1", "@npmcli/run-script": "^7.0.3", "@sigstore/tuf": "^2.2.0", "abbrev": "^2.0.0", "archy": "~1.0.0", "cacache": "^18.0.2", "chalk": "^5.3.0", "ci-info": "^4.0.0", "cli-columns": "^4.0.0", "cli-table3": "^0.6.3", "columnify": "^1.6.0", "fastest-levenshtein": "^1.0.16", "fs-minipass": "^3.0.3", "glob": "^10.3.10", "graceful-fs": "^4.2.11", "hosted-git-info": "^7.0.1", "ini": "^4.1.1", "init-package-json": "^6.0.0", "is-cidr": "^5.0.3", "json-parse-even-better-errors": "^3.0.1", "libnpmaccess": "^8.0.1", "libnpmdiff": "^6.0.3", "libnpmexec": "^7.0.4", "libnpmfund": "^5.0.1", "libnpmhook": "^10.0.0", "libnpmorg": "^6.0.1", "libnpmpack": "^6.0.3", "libnpmpublish": "^9.0.2", "libnpmsearch": "^7.0.0", "libnpmteam": "^6.0.0", "libnpmversion": "^5.0.1", "make-fetch-happen": "^13.0.0", "minimatch": "^9.0.3", "minipass": "^7.0.4", "minipass-pipeline": "^1.2.4", "ms": "^2.1.2", "node-gyp": "^10.0.1", "nopt": "^7.2.0", "normalize-package-data": "^6.0.0", "npm-audit-report": "^5.0.0", "npm-install-checks": "^6.3.0", "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", "npm-profile": "^9.0.0", "npm-registry-fetch": "^16.1.0", "npm-user-validate": "^2.0.0", "npmlog": "^7.0.1", "p-map": "^4.0.0", "pacote": "^17.0.5", "parse-conflict-json": "^3.0.1", "proc-log": "^3.0.0", "qrcode-terminal": "^0.12.0", "read": "^2.1.0", "semver": "^7.5.4", "spdx-expression-parse": "^3.0.1", "ssri": "^10.0.5", "strip-ansi": "^7.1.0", "supports-color": "^9.4.0", "tar": "^6.2.0", "text-table": "~0.2.0", "tiny-relative-date": "^1.3.0", "treeverse": "^3.0.0", "validate-npm-package-name": "^5.0.0", "which": "^4.0.0", "write-file-atomic": "^5.0.1" } }, "sha512-9u5GFc1UqI2DLlGI7QdjkpIaBs3UhTtY8KoCqYJK24gV/j/tByaI4BA4R7RkOc+ASqZMzFPKt4Pj2Z8JcGo//A=="], + + "npm-audit-report": ["npm-audit-report@5.0.0", "", {}, "sha512-EkXrzat7zERmUhHaoren1YhTxFwsOu5jypE84k6632SXTHcQE1z8V51GC6GVZt8LxkC+tbBcKMUBZAgk8SUSbw=="], + + "npm-bundled": ["npm-bundled@3.0.0", "", { "dependencies": { "npm-normalize-package-bin": "^3.0.0" } }, "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ=="], + + "npm-install-checks": ["npm-install-checks@6.3.0", "", { "dependencies": { "semver": "^7.1.1" } }, "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw=="], + + "npm-normalize-package-bin": ["npm-normalize-package-bin@3.0.1", "", {}, "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ=="], + + "npm-package-arg": ["npm-package-arg@11.0.1", "", { "dependencies": { "hosted-git-info": "^7.0.0", "proc-log": "^3.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^5.0.0" } }, "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ=="], + + "npm-packlist": ["npm-packlist@8.0.2", "", { "dependencies": { "ignore-walk": "^6.0.4" } }, "sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA=="], + + "npm-pick-manifest": ["npm-pick-manifest@9.0.0", "", { "dependencies": { "npm-install-checks": "^6.0.0", "npm-normalize-package-bin": "^3.0.0", "npm-package-arg": "^11.0.0", "semver": "^7.3.5" } }, "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg=="], + + "npm-profile": ["npm-profile@9.0.0", "", { "dependencies": { "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0" } }, "sha512-qv43ixsJ7vndzfxD3XsPNu1Njck6dhO7q1efksTo+0DiOQysKSOsIhK/qDD1/xO2o+2jDOA4Rv/zOJ9KQFs9nw=="], + + "npm-registry-fetch": ["npm-registry-fetch@16.1.0", "", { "dependencies": { "make-fetch-happen": "^13.0.0", "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", "minipass-json-stream": "^1.0.1", "minizlib": "^2.1.2", "npm-package-arg": "^11.0.0", "proc-log": "^3.0.0" } }, "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw=="], + + "npm-run-path": ["npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", { "dependencies": { "path-key": "^3.0.0" } }], + + "npm-user-validate": ["npm-user-validate@2.0.0", "", {}, "sha512-sSWeqAYJ2dUPStJB+AEj0DyLRltr/f6YNcvCA7phkB8/RMLMnVsQ41GMwHo/ERZLYNDsyB2wPm7pZo1mqPOl7Q=="], + + "npmlog": ["npmlog@7.0.1", "", { "dependencies": { "are-we-there-yet": "^4.0.0", "console-control-strings": "^1.1.0", "gauge": "^5.0.0", "set-blocking": "^2.0.0" } }, "sha512-uJ0YFk/mCQpLBt+bxN88AKd+gyqZvZDbtiNxk6Waqcj2aPRyfVx8ITawkyQynxUagInjdYT1+qj4NfA5KJJUxg=="], + + "nth-check": ["nth-check@https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", { "dependencies": { "boolbase": "^1.0.0" } }], + + "nullthrows": ["nullthrows@https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", {}], + + "num2fraction": ["num2fraction@https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", {}], + + "numeric-quantity": ["numeric-quantity@2.1.0", "", {}, "sha512-oDkQ8nFuNVA+unEg1jd6dAS+O7eLXWWzsa4ViI0S0yFi6654GK0s74o8bF8uLRQdWIz/qFF1GABNFPfwAGQUsg=="], + + "nwsapi": ["nwsapi@2.2.7", "", {}, "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="], + + "object-assign": ["object-assign@https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", {}], + + "object-inspect": ["object-inspect@https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", {}], + + "object-is": ["object-is@https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }], + + "object-keys": ["object-keys@https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", {}], + + "object.assign": ["object.assign@https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }], + + "object.entries": ["object.entries@https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "object.fromentries": ["object.fromentries@https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "object.hasown": ["object.hasown@https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", { "dependencies": { "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "object.values": ["object.values@https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "omggif": ["omggif@https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", {}], + + "omit.js": ["omit.js@https://registry.npmjs.org/omit.js/-/omit.js-2.0.2.tgz", {}], + + "on-finished": ["on-finished@https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", { "dependencies": { "ee-first": "1.1.1" } }], + + "on-headers": ["on-headers@https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", {}], + + "once": ["once@https://registry.npmjs.org/once/-/once-1.4.0.tgz", { "dependencies": { "wrappy": "1" } }], + + "onetime": ["onetime@https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", { "dependencies": { "mimic-fn": "^2.1.0" } }], + + "open": ["open@https://registry.npmjs.org/open/-/open-7.3.1.tgz", { "dependencies": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" } }], + + "optimism": ["optimism@0.17.5", "", { "dependencies": { "@wry/context": "^0.7.0", "@wry/trie": "^0.4.3", "tslib": "^2.3.0" } }, "sha512-TEcp8ZwK1RczmvMnvktxHSF2tKgMWjJ71xEFGX5ApLh67VsMSTy1ZUlipJw8W+KaqgOmQ+4pqwkeivY89j+4Vw=="], + + "optionator": ["optionator@https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.3" } }], + + "ora": ["ora@https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", { "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.5.0", "is-interactive": "^1.0.0", "is-unicode-supported": "^0.1.0", "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" } }], + + "os-locale": ["os-locale@https://registry.npmjs.org/os-locale/-/os-locale-5.0.0.tgz", { "dependencies": { "execa": "^4.0.0", "lcid": "^3.0.0", "mem": "^5.0.0" } }], + + "os-tmpdir": ["os-tmpdir@https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", {}], + + "p-defer": ["p-defer@https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", {}], + + "p-each-series": ["p-each-series@3.0.0", "", {}, "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw=="], + + "p-filter": ["p-filter@4.1.0", "", { "dependencies": { "p-map": "^7.0.1" } }, "sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw=="], + + "p-is-promise": ["p-is-promise@3.0.0", "", {}, "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ=="], + + "p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", { "dependencies": { "yocto-queue": "^0.1.0" } }], + + "p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", { "dependencies": { "p-limit": "^3.0.2" } }], + + "p-map": ["p-map@https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", { "dependencies": { "aggregate-error": "^3.0.0" } }], + + "p-reduce": ["p-reduce@2.1.0", "", {}, "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw=="], + + "p-try": ["p-try@https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", {}], + + "pacote": ["pacote@17.0.5", "", { "dependencies": { "@npmcli/git": "^5.0.0", "@npmcli/installed-package-contents": "^2.0.1", "@npmcli/promise-spawn": "^7.0.0", "@npmcli/run-script": "^7.0.0", "cacache": "^18.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", "npm-package-arg": "^11.0.0", "npm-packlist": "^8.0.0", "npm-pick-manifest": "^9.0.0", "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0", "promise-retry": "^2.0.1", "read-package-json": "^7.0.0", "read-package-json-fast": "^3.0.0", "sigstore": "^2.0.0", "ssri": "^10.0.0", "tar": "^6.1.11" } }, "sha512-TAE0m20zSDMnchPja9vtQjri19X3pZIyRpm2TJVeI+yU42leJBBDTRYhOcWFsPhaMxf+3iwQkFiKz16G9AEeeA=="], + + "pako": ["pako@1.0.11", "", {}, "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="], + + "param-case": ["param-case@https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", { "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }], + + "parent-module": ["parent-module@https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", { "dependencies": { "callsites": "^3.0.0" } }], + + "parse-conflict-json": ["parse-conflict-json@3.0.1", "", { "dependencies": { "json-parse-even-better-errors": "^3.0.0", "just-diff": "^6.0.0", "just-diff-apply": "^5.2.0" } }, "sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw=="], + + "parse-entities": ["parse-entities@https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", { "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", "character-reference-invalid": "^1.0.0", "is-alphanumerical": "^1.0.0", "is-decimal": "^1.0.0", "is-hexadecimal": "^1.0.0" } }], + + "parse-filepath": ["parse-filepath@https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", { "dependencies": { "is-absolute": "^1.0.0", "map-cache": "^0.2.0", "path-root": "^0.1.1" } }], + + "parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], + + "parse-node-version": ["parse-node-version@https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", {}], + + "parse5": ["parse5@https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", { "dependencies": { "entities": "^4.4.0" } }], + + "parseurl": ["parseurl@https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", {}], + + "pascal-case": ["pascal-case@https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", { "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }], + + "password-prompt": ["password-prompt@https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", { "dependencies": { "ansi-escapes": "^3.1.0", "cross-spawn": "^6.0.5" } }], + + "path-case": ["path-case@https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", { "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }], + + "path-exists": ["path-exists@https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", {}], + + "path-is-absolute": ["path-is-absolute@https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", {}], + + "path-key": ["path-key@https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", {}], + + "path-parse": ["path-parse@https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", {}], + + "path-root": ["path-root@https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", { "dependencies": { "path-root-regex": "^0.1.0" } }], + + "path-root-regex": ["path-root-regex@https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", {}], + + "path-scurry": ["path-scurry@1.10.1", "", { "dependencies": { "lru-cache": "^9.1.1 || ^10.0.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ=="], + + "path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.4.0.tgz", {}], + + "path-type": ["path-type@https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", {}], + + "pathe": ["pathe@1.1.1", "", {}, "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q=="], + + "pathington": ["pathington@1.1.7", "", {}, "sha512-JxzhUzagDfNIOm4qqwQqP3rWeo7rNNOfIahy4n+3GTEdwXLqw5cJHUR0soSopQtNEv763lzxb6eA2xBllpR8zw=="], + + "pathval": ["pathval@1.1.1", "", {}, "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ=="], + + "peek-stream": ["peek-stream@https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", { "dependencies": { "buffer-from": "^1.0.0", "duplexify": "^3.5.0", "through2": "^2.0.3" } }], + + "pend": ["pend@https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", {}], + + "performance-now": ["performance-now@2.1.0", "", {}, "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="], + + "picocolors": ["picocolors@1.0.0", "", {}, "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="], + + "picomatch": ["picomatch@https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", {}], + + "pidtree": ["pidtree@https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", {}], + + "pify": ["pify@https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", {}], + + "pirates": ["pirates@https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", {}], + + "pkg-conf": ["pkg-conf@2.1.0", "", { "dependencies": { "find-up": "^2.0.0", "load-json-file": "^4.0.0" } }, "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g=="], + + "pkg-dir": ["pkg-dir@https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", { "dependencies": { "find-up": "^5.0.0" } }], + + "pkg-types": ["pkg-types@https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.2.tgz", { "dependencies": { "jsonc-parser": "^3.2.0", "mlly": "^1.1.1", "pathe": "^1.1.0" } }], + + "plur": ["plur@https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", { "dependencies": { "irregular-plurals": "^3.2.0" } }], + + "pluralize": ["pluralize@https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", {}], + + "pngjs": ["pngjs@https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", {}], + + "polished": ["polished@https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", { "dependencies": { "@babel/runtime": "^7.17.8" } }], + + "postcss": ["postcss@8.5.8", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg=="], + + "postcss-html": ["postcss-html@https://registry.npmjs.org/postcss-html/-/postcss-html-0.36.0.tgz", { "dependencies": { "htmlparser2": "^3.10.0" } }], + + "postcss-less": ["postcss-less@https://registry.npmjs.org/postcss-less/-/postcss-less-4.0.1.tgz", { "dependencies": { "postcss": "^8.1.2" } }], + + "postcss-media-query-parser": ["postcss-media-query-parser@https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", {}], + + "postcss-resolve-nested-selector": ["postcss-resolve-nested-selector@https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", {}], + + "postcss-safe-parser": ["postcss-safe-parser@https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz", { "dependencies": { "postcss": "^7.0.26" } }], + + "postcss-sass": ["postcss-sass@https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.4.4.tgz", { "dependencies": { "gonzales-pe": "^4.3.0", "postcss": "^7.0.21" } }], + + "postcss-scss": ["postcss-scss@https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.1.1.tgz", { "dependencies": { "postcss": "^7.0.6" } }], + + "postcss-selector-parser": ["postcss-selector-parser@https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }], + + "postcss-sorting": ["postcss-sorting@https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-6.0.0.tgz", { "dependencies": { "lodash": "^4.17.20" } }], + + "postcss-syntax": ["postcss-syntax@https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz", {}], + + "postcss-value-parser": ["postcss-value-parser@https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", {}], + + "prefix-style": ["prefix-style@2.0.1", "", {}, "sha512-gdr1MBNVT0drzTq95CbSNdsrBDoHGlb2aDJP/FoY+1e+jSDPOb1Cv554gH2MGiSr2WTcXi/zu+NaFzfcHQkfBQ=="], + + "prelude-ls": ["prelude-ls@https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", {}], + + "prettier": ["prettier@https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", {}], + + "prettier-plugin-packagejson": ["prettier-plugin-packagejson@https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.3.0.tgz", { "dependencies": { "sort-package-json": "1.57.0" } }], + + "prettier-plugin-two-style-order": ["prettier-plugin-two-style-order@https://registry.npmjs.org/prettier-plugin-two-style-order/-/prettier-plugin-two-style-order-1.0.1.tgz", { "dependencies": { "postcss": "^8.3.6", "postcss-less": "^4.0.0", "postcss-sorting": "6.0.0" } }], + + "pretty-format": ["pretty-format@https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", { "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" } }], + + "pretty-hrtime": ["pretty-hrtime@https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", {}], + + "prismjs": ["prismjs@1.29.0", "", {}, "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q=="], + + "proc-log": ["proc-log@3.0.0", "", {}, "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A=="], + + "process": ["process@https://registry.npmjs.org/process/-/process-0.11.10.tgz", {}], + + "process-nextick-args": ["process-nextick-args@https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", {}], + + "progress": ["progress@https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", {}], + + "promise": ["promise@https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", { "dependencies": { "asap": "~2.0.3" } }], + + "promise-all-reject-late": ["promise-all-reject-late@1.0.1", "", {}, "sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw=="], + + "promise-call-limit": ["promise-call-limit@1.0.2", "", {}, "sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA=="], + + "promise-inflight": ["promise-inflight@1.0.1", "", {}, "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="], + + "promise-retry": ["promise-retry@2.0.1", "", { "dependencies": { "err-code": "^2.0.2", "retry": "^0.12.0" } }, "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g=="], + + "prompts": ["prompts@https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", { "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" } }], + + "promzard": ["promzard@1.0.0", "", { "dependencies": { "read": "^2.0.0" } }, "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig=="], + + "prop-types": ["prop-types@https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", { "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }], + + "property-information": ["property-information@https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz", {}], + + "proto-list": ["proto-list@1.2.4", "", {}, "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="], + + "proxy-addr": ["proxy-addr@https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", { "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }], + + "proxy-from-env": ["proxy-from-env@https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", {}], + + "prr": ["prr@https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", {}], + + "psl": ["psl@1.9.0", "", {}, "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="], + + "pump": ["pump@https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", { "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }], + + "pumpify": ["pumpify@https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", { "dependencies": { "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" } }], + + "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], + + "puppeteer-core": ["puppeteer-core@https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz", { "dependencies": { "@types/mime-types": "^2.1.0", "debug": "^4.1.0", "extract-zip": "^1.6.6", "https-proxy-agent": "^4.0.0", "mime": "^2.0.3", "mime-types": "^2.1.25", "progress": "^2.0.1", "proxy-from-env": "^1.0.0", "rimraf": "^2.6.1", "ws": "^6.1.0" } }], + + "pvtsutils": ["pvtsutils@https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.2.tgz", { "dependencies": { "tslib": "^2.4.0" } }], + + "pvutils": ["pvutils@https://registry.npmjs.org/pvutils/-/pvutils-1.1.3.tgz", {}], + + "qrcode-terminal": ["qrcode-terminal@0.12.0", "", {}, "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ=="], + + "qrcode.react": ["qrcode.react@3.1.0", "", {}, "sha512-oyF+Urr3oAMUG/OiOuONL3HXM+53wvuH3mtIWQrYmsXoAq0DkvZp2RYUWFSMFtbdOpuS++9v+WAkzNVkMlNW6Q=="], + + "qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", { "dependencies": { "side-channel": "^1.0.4" } }], + + "query-string": ["query-string@https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", { "dependencies": { "decode-uri-component": "^0.2.0", "filter-obj": "^1.1.0", "split-on-first": "^1.0.0", "strict-uri-encode": "^2.0.0" } }], + + "querystringify": ["querystringify@2.2.0", "", {}, "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="], + + "queue-microtask": ["queue-microtask@https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", {}], + + "quick-lru": ["quick-lru@https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", {}], + + "raf": ["raf@3.4.1", "", { "dependencies": { "performance-now": "^2.1.0" } }, "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA=="], + + "ramda": ["ramda@0.29.0", "", {}, "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA=="], + + "range-parser": ["range-parser@https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", {}], + + "raw-body": ["raw-body@https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", { "dependencies": { "bytes": "3.0.0", "http-errors": "1.6.2", "iconv-lite": "0.4.19", "unpipe": "1.0.0" } }], + + "rc": ["rc@1.2.8", "", { "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" } }, "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="], + + "rc-cascader": ["rc-cascader@3.21.0", "", { "dependencies": { "@babel/runtime": "^7.12.5", "array-tree-filter": "^2.1.0", "classnames": "^2.3.1", "rc-select": "~14.11.0-0", "rc-tree": "~5.8.1", "rc-util": "^5.37.0" } }, "sha512-7aADjbfqiR4HrTHG9S019p2jeKM/AxISPA5+sBJR7Mlhm/i+lR7VjBju3KQulJNJLKNEnQYg4TFhcPf2SLua9g=="], + + "rc-checkbox": ["rc-checkbox@3.1.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "^2.3.2", "rc-util": "^5.25.2" } }, "sha512-PAwpJFnBa3Ei+5pyqMMXdcKYKNBMS+TvSDiLdDnARnMJHC8ESxwPfm4Ao1gJiKtWLdmGfigascnCpwrHFgoOBQ=="], + + "rc-collapse": ["rc-collapse@3.7.2", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "2.x", "rc-motion": "^2.3.4", "rc-util": "^5.27.0" } }, "sha512-ZRw6ipDyOnfLFySxAiCMdbHtb5ePAsB9mT17PA6y1mRD/W6KHRaZeb5qK/X9xDV1CqgyxMpzw0VdS74PCcUk4A=="], + + "rc-dialog": ["rc-dialog@9.3.4", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/portal": "^1.0.0-8", "classnames": "^2.2.6", "rc-motion": "^2.3.0", "rc-util": "^5.21.0" } }, "sha512-975X3018GhR+EjZFbxA2Z57SX5rnu0G0/OxFgMMvZK4/hQWEm3MHaNvP4wXpxYDoJsp+xUvVW+GB9CMMCm81jA=="], + + "rc-drawer": ["rc-drawer@7.0.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/portal": "^1.1.1", "classnames": "^2.2.6", "rc-motion": "^2.6.1", "rc-util": "^5.36.0" } }, "sha512-ePcS4KtQnn57bCbVXazHN2iC8nTPCXlWEIA/Pft87Pd9U7ZeDkdRzG47jWG2/TAFXFlFltRAMcslqmUM8NPCGA=="], + + "rc-dropdown": ["rc-dropdown@4.1.0", "", { "dependencies": { "@babel/runtime": "^7.18.3", "@rc-component/trigger": "^1.7.0", "classnames": "^2.2.6", "rc-util": "^5.17.0" } }, "sha512-VZjMunpBdlVzYpEdJSaV7WM7O0jf8uyDjirxXLZRNZ+tAC+NzD3PXPEtliFwGzVwBBdCmGuSqiS9DWcOLxQ9tw=="], + + "rc-field-form": ["rc-field-form@1.41.0", "", { "dependencies": { "@babel/runtime": "^7.18.0", "async-validator": "^4.1.0", "rc-util": "^5.32.2" } }, "sha512-k9AS0wmxfJfusWDP/YXWTpteDNaQ4isJx9UKxx4/e8Dub4spFeZ54/EuN2sYrMRID/+hUznPgVZeg+Gf7XSYCw=="], + + "rc-image": ["rc-image@7.5.1", "", { "dependencies": { "@babel/runtime": "^7.11.2", "@rc-component/portal": "^1.0.2", "classnames": "^2.2.6", "rc-dialog": "~9.3.4", "rc-motion": "^2.6.2", "rc-util": "^5.34.1" } }, "sha512-Z9loECh92SQp0nSipc0MBuf5+yVC05H/pzC+Nf8xw1BKDFUJzUeehYBjaWlxly8VGBZJcTHYri61Fz9ng1G3Ag=="], + + "rc-input": ["rc-input@1.4.3", "", { "dependencies": { "@babel/runtime": "^7.11.1", "classnames": "^2.2.1", "rc-util": "^5.18.1" } }, "sha512-aHyQUAIRmTlOnvk5EcNqEpJ+XMtfMpYRAJayIlJfsvvH9cAKUWboh4egm23vgMA7E+c/qm4BZcnrDcA960GC1w=="], + + "rc-input-number": ["rc-input-number@8.6.1", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/mini-decimal": "^1.0.1", "classnames": "^2.2.5", "rc-input": "~1.4.0", "rc-util": "^5.28.0" } }, "sha512-gaAMUKtUKLktJ3Yx93tjgYY1M0HunnoqzPEqkb9//Ydup4DcG0TFL9yHBA3pgVdNIt5f0UWyHCgFBj//JxeD6A=="], + + "rc-mentions": ["rc-mentions@2.10.1", "", { "dependencies": { "@babel/runtime": "^7.22.5", "@rc-component/trigger": "^1.5.0", "classnames": "^2.2.6", "rc-input": "~1.4.0", "rc-menu": "~9.12.0", "rc-textarea": "~1.6.1", "rc-util": "^5.34.1" } }, "sha512-72qsEcr/7su+a07ndJ1j8rI9n0Ka/ngWOLYnWMMv0p2mi/5zPwPrEDTt6Uqpe8FWjWhueDJx/vzunL6IdKDYMg=="], + + "rc-menu": ["rc-menu@9.12.4", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/trigger": "^1.17.0", "classnames": "2.x", "rc-motion": "^2.4.3", "rc-overflow": "^1.3.1", "rc-util": "^5.27.0" } }, "sha512-t2NcvPLV1mFJzw4F21ojOoRVofK2rWhpKPx69q2raUsiHPDP6DDevsBILEYdsIegqBeSXoWs2bf6CueBKg3BFg=="], + + "rc-motion": ["rc-motion@2.9.0", "", { "dependencies": { "@babel/runtime": "^7.11.1", "classnames": "^2.2.1", "rc-util": "^5.21.0" } }, "sha512-XIU2+xLkdIr1/h6ohPZXyPBMvOmuyFZQ/T0xnawz+Rh+gh4FINcnZmMT5UTIj6hgI0VLDjTaPeRd+smJeSPqiQ=="], + + "rc-notification": ["rc-notification@5.3.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "2.x", "rc-motion": "^2.9.0", "rc-util": "^5.20.1" } }, "sha512-WCf0uCOkZ3HGfF0p1H4Sgt7aWfipxORWTPp7o6prA3vxwtWhtug3GfpYls1pnBp4WA+j8vGIi5c2/hQRpGzPcQ=="], + + "rc-overflow": ["rc-overflow@1.3.2", "", { "dependencies": { "@babel/runtime": "^7.11.1", "classnames": "^2.2.1", "rc-resize-observer": "^1.0.0", "rc-util": "^5.37.0" } }, "sha512-nsUm78jkYAoPygDAcGZeC2VwIg/IBGSodtOY3pMof4W3M9qRJgqaDYm03ZayHlde3I6ipliAxbN0RUcGf5KOzw=="], + + "rc-pagination": ["rc-pagination@4.0.4", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "^2.3.2", "rc-util": "^5.38.0" } }, "sha512-GGrLT4NgG6wgJpT/hHIpL9nELv27A1XbSZzECIuQBQTVSf4xGKxWr6I/jhpRPauYEWEbWVw22ObG6tJQqwJqWQ=="], + + "rc-picker": ["rc-picker@3.14.6", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/trigger": "^1.5.0", "classnames": "^2.2.1", "rc-util": "^5.30.0" } }, "sha512-AdKKW0AqMwZsKvIpwUWDUnpuGKZVrbxVTZTNjcO+pViGkjC1EBcjMgxVe8tomOEaIHJL5Gd13vS8Rr3zzxWmag=="], + + "rc-progress": ["rc-progress@3.5.1", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "^2.2.6", "rc-util": "^5.16.1" } }, "sha512-V6Amx6SbLRwPin/oD+k1vbPrO8+9Qf8zW1T8A7o83HdNafEVvAxPV5YsgtKFP+Ud5HghLj33zKOcEHrcrUGkfw=="], + + "rc-rate": ["rc-rate@2.12.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "^2.2.5", "rc-util": "^5.0.1" } }, "sha512-g092v5iZCdVzbjdn28FzvWebK2IutoVoiTeqoLTj9WM7SjA/gOJIw5/JFZMRyJYYVe1jLAU2UhAfstIpCNRozg=="], + + "rc-resize-observer": ["rc-resize-observer@https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.3.1.tgz", { "dependencies": { "@babel/runtime": "^7.20.7", "classnames": "^2.2.1", "rc-util": "^5.27.0", "resize-observer-polyfill": "^1.5.1" } }], + + "rc-segmented": ["rc-segmented@2.2.2", "", { "dependencies": { "@babel/runtime": "^7.11.1", "classnames": "^2.2.1", "rc-motion": "^2.4.4", "rc-util": "^5.17.0" } }, "sha512-Mq52M96QdHMsNdE/042ibT5vkcGcD5jxKp7HgPC2SRofpia99P5fkfHy1pEaajLMF/kj0+2Lkq1UZRvqzo9mSA=="], + + "rc-select": ["rc-select@14.11.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/trigger": "^1.5.0", "classnames": "2.x", "rc-motion": "^2.0.1", "rc-overflow": "^1.3.1", "rc-util": "^5.16.1", "rc-virtual-list": "^3.5.2" } }, "sha512-8J8G/7duaGjFiTXCBLWfh5P+KDWyA3KTlZDfV3xj/asMPqB2cmxfM+lH50wRiPIRsCQ6EbkCFBccPuaje3DHIg=="], + + "rc-slider": ["rc-slider@10.5.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "^2.2.5", "rc-util": "^5.27.0" } }, "sha512-xiYght50cvoODZYI43v3Ylsqiw14+D7ELsgzR40boDZaya1HFa1Etnv9MDkQE8X/UrXAffwv2AcNAhslgYuDTw=="], + + "rc-steps": ["rc-steps@6.0.1", "", { "dependencies": { "@babel/runtime": "^7.16.7", "classnames": "^2.2.3", "rc-util": "^5.16.1" } }, "sha512-lKHL+Sny0SeHkQKKDJlAjV5oZ8DwCdS2hFhAkIjuQt1/pB81M0cA0ErVFdHq9+jmPmFw1vJB2F5NBzFXLJxV+g=="], + + "rc-switch": ["rc-switch@4.1.0", "", { "dependencies": { "@babel/runtime": "^7.21.0", "classnames": "^2.2.1", "rc-util": "^5.30.0" } }, "sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg=="], + + "rc-table": ["rc-table@7.37.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "@rc-component/context": "^1.4.0", "classnames": "^2.2.5", "rc-resize-observer": "^1.1.0", "rc-util": "^5.37.0", "rc-virtual-list": "^3.11.1" } }, "sha512-hEB17ktLRVfVmdo+U8MjGr+PuIgdQ8Cxj/N5lwMvP/Az7TOrQxwTMLVEDoj207tyPYLTWifHIF9EJREWwyk67g=="], + + "rc-tabs": ["rc-tabs@14.0.0", "", { "dependencies": { "@babel/runtime": "^7.11.2", "classnames": "2.x", "rc-dropdown": "~4.1.0", "rc-menu": "~9.12.0", "rc-motion": "^2.6.2", "rc-resize-observer": "^1.0.0", "rc-util": "^5.34.1" } }, "sha512-lp1YWkaPnjlyhOZCPrAWxK6/P6nMGX/BAZcAC3nuVwKz0Byfp+vNnQKK8BRCP2g/fzu+SeB5dm9aUigRu3tRkQ=="], + + "rc-textarea": ["rc-textarea@1.6.3", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "^2.2.1", "rc-input": "~1.4.0", "rc-resize-observer": "^1.0.0", "rc-util": "^5.27.0" } }, "sha512-8k7+8Y2GJ/cQLiClFMg8kUXOOdvcFQrnGeSchOvI2ZMIVvX5a3zQpLxoODL0HTrvU63fPkRmMuqaEcOF9dQemA=="], + + "rc-tooltip": ["rc-tooltip@6.1.3", "", { "dependencies": { "@babel/runtime": "^7.11.2", "@rc-component/trigger": "^1.18.0", "classnames": "^2.3.1" } }, "sha512-HMSbSs5oieZ7XddtINUddBLSVgsnlaSb3bZrzzGWjXa7/B7nNedmsuz72s7EWFEro9mNa7RyF3gOXKYqvJiTcQ=="], + + "rc-tree": ["rc-tree@5.8.2", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "2.x", "rc-motion": "^2.0.1", "rc-util": "^5.16.1", "rc-virtual-list": "^3.5.1" } }, "sha512-xH/fcgLHWTLmrSuNphU8XAqV7CdaOQgm4KywlLGNoTMhDAcNR3GVNP6cZzb0GrKmIZ9yae+QLot/cAgUdPRMzg=="], + + "rc-tree-select": ["rc-tree-select@5.17.0", "", { "dependencies": { "@babel/runtime": "^7.10.1", "classnames": "2.x", "rc-select": "~14.11.0-0", "rc-tree": "~5.8.1", "rc-util": "^5.16.1" } }, "sha512-7sRGafswBhf7n6IuHyCEFCildwQIgyKiV8zfYyUoWfZEFdhuk7lCH+DN0aHt+oJrdiY9+6Io/LDXloGe01O8XQ=="], + + "rc-upload": ["rc-upload@4.5.2", "", { "dependencies": { "@babel/runtime": "^7.18.3", "classnames": "^2.2.5", "rc-util": "^5.2.0" } }, "sha512-QO3ne77DwnAPKFn0bA5qJM81QBjQi0e0NHdkvpFyY73Bea2NfITiotqJqVjHgeYPOJu5lLVR32TNGP084aSoXA=="], + + "rc-util": ["rc-util@5.34.0", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }, "sha512-+zCDJ1gq+KwqbaZPAk7PGlNAssoTcnZSnTsr5KMYDBhzdPNFxyuglnewWMP5PyP/kAC6uW4r9Ejc08M+Lei04A=="], + + "rc-virtual-list": ["rc-virtual-list@3.11.3", "", { "dependencies": { "@babel/runtime": "^7.20.0", "classnames": "^2.2.6", "rc-resize-observer": "^1.0.0", "rc-util": "^5.36.0" } }, "sha512-tu5UtrMk/AXonHwHxUogdXAWynaXsrx1i6dsgg+lOo/KJSF8oBAcprh1z5J3xgnPJD5hXxTL58F8s8onokdt0Q=="], + + "react": ["react@https://registry.npmjs.org/react/-/react-18.2.0.tgz", { "dependencies": { "loose-envify": "^1.1.0" } }], + + "react-colorful": ["react-colorful@https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", {}], + + "react-csv": ["react-csv@2.2.2", "", {}, "sha512-RG5hOcZKZFigIGE8LxIEV/OgS1vigFQT4EkaHeKgyuCbUAu9Nbd/1RYq++bJcJJ9VOqO/n9TZRADsXNDR4VEpw=="], + + "react-custom-scrollbars": ["react-custom-scrollbars@4.2.1", "", { "dependencies": { "dom-css": "^2.0.0", "prop-types": "^15.5.10", "raf": "^3.1.0" } }, "sha512-VtJTUvZ7kPh/auZWIbBRceGPkE30XBYe+HktFxuMWBR2eVQQ+Ur6yFJMoaYcNpyGq22uYJ9Wx4UAEcC0K+LNPQ=="], + + "react-docgen": ["react-docgen@https://registry.npmjs.org/react-docgen/-/react-docgen-6.0.0-alpha.3.tgz", { "dependencies": { "@babel/core": "^7.7.5", "@babel/generator": "^7.12.11", "ast-types": "^0.14.2", "commander": "^2.19.0", "doctrine": "^3.0.0", "estree-to-babel": "^3.1.0", "neo-async": "^2.6.1", "node-dir": "^0.1.10", "resolve": "^1.17.0", "strip-indent": "^3.0.0" } }], + + "react-docgen-typescript": ["react-docgen-typescript@https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", {}], + + "react-dom": ["react-dom@https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", { "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.0" } }], + + "react-draggable": ["react-draggable@4.4.6", "", { "dependencies": { "clsx": "^1.1.1", "prop-types": "^15.8.1" } }, "sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw=="], + + "react-element-to-jsx-string": ["react-element-to-jsx-string@https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", { "dependencies": { "@base2/pretty-print-object": "1.0.1", "is-plain-object": "5.0.0", "react-is": "18.1.0" } }], + + "react-fast-marquee": ["react-fast-marquee@https://registry.npmjs.org/react-fast-marquee/-/react-fast-marquee-1.5.2.tgz", {}], + + "react-hook-form": ["react-hook-form@7.45.1", "", {}, "sha512-6dWoFJwycbuFfw/iKMcl+RdAOAOHDiF11KWYhNDRN/OkUt+Di5qsZHwA0OwsVnu9y135gkHpTw9DJA+WzCeR9w=="], + + "react-i18next": ["react-i18next@13.0.1", "", { "dependencies": { "@babel/runtime": "^7.22.5", "html-parse-stringify": "^3.0.1" } }, "sha512-gMO6N2GfSfuH7xlHSsZ/mZf+Py9bLm/+EDKIn5fNTuDTjcCcwmMU5UEuGCDk5mdfivbo7ySyYXBN7B9tbGUxiA=="], + + "react-inspector": ["react-inspector@https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz", {}], + + "react-is": ["react-is@https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", {}], + + "react-lifecycles-compat": ["react-lifecycles-compat@3.0.4", "", {}, "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="], + + "react-querybuilder": ["react-querybuilder@8.14.0", "", { "dependencies": { "@react-querybuilder/core": "^8.14.0", "@reduxjs/toolkit": "^2.11.2", "immer": "^11.1.3", "react-redux": "^9.2.0" }, "peerDependencies": { "react": ">=18" } }, "sha512-uwJn1XT4A6reuxjPmRLUnvewhC4PZksZU4XSxCJgqwR37r2A1/REvxEgv+zVQGVFcd4dUIZs1E++WDabOWVlmA=="], + + "react-redux": ["react-redux@9.2.0", "", { "dependencies": { "@types/use-sync-external-store": "^0.0.6", "use-sync-external-store": "^1.4.0" }, "peerDependencies": { "@types/react": "^18.2.25 || ^19", "react": "^18.0 || ^19", "redux": "^5.0.0" }, "optionalPeers": ["@types/react", "redux"] }, "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g=="], + + "react-refresh": ["react-refresh@0.18.0", "", {}, "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw=="], + + "react-remove-scroll": ["react-remove-scroll@2.5.5", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.3", "react-style-singleton": "^2.2.1", "tslib": "^2.1.0", "use-callback-ref": "^1.3.0", "use-sidecar": "^1.1.2" } }, "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw=="], + + "react-remove-scroll-bar": ["react-remove-scroll-bar@2.3.4", "", { "dependencies": { "react-style-singleton": "^2.2.1", "tslib": "^2.0.0" } }, "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A=="], + + "react-resizable": ["react-resizable@3.0.5", "", { "dependencies": { "prop-types": "15.x", "react-draggable": "^4.0.3" } }, "sha512-vKpeHhI5OZvYn82kXOs1bC8aOXktGU5AmKAgaZS4F5JPburCtbmDPqE7Pzp+1kN4+Wb81LlF33VpGwWwtXem+w=="], + + "react-responsive-masonry": ["react-responsive-masonry@2.1.7", "", {}, "sha512-/jOqnTVNtO8zRJMTl6ZXBex7EFYEIFBLVlkIFjiCT7omfm0CgNF2z4ST8RIr0v2ut15NWAQs7Q3kJJPhMoe3Ew=="], + + "react-responsive-modal": ["react-responsive-modal@6.4.2", "", { "dependencies": { "@bedrock-layout/use-forwarded-ref": "^1.3.1", "body-scroll-lock": "^3.1.5", "classnames": "^2.3.1" } }, "sha512-ARjGEKE5Gu5CSvyA8U9ARVbtK4SMAtdXsjtzwtxRlQIHC99RQTnOUctLpl7+/sp1Kg1OJZ6yqvp6ivd4TBueEw=="], + + "react-router": ["react-router@6.15.0", "", { "dependencies": { "@remix-run/router": "1.8.0" } }, "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg=="], + + "react-router-dom": ["react-router-dom@6.15.0", "", { "dependencies": { "@remix-run/router": "1.8.0", "react-router": "6.15.0" } }, "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ=="], + + "react-sortable-hoc": ["react-sortable-hoc@https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz", { "dependencies": { "@babel/runtime": "^7.2.0", "invariant": "^2.2.4", "prop-types": "^15.5.7" } }], + + "react-style-singleton": ["react-style-singleton@2.2.1", "", { "dependencies": { "get-nonce": "^1.0.0", "invariant": "^2.2.4", "tslib": "^2.0.0" } }, "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g=="], + + "react-table": ["react-table@7.8.0", "", {}, "sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA=="], + + "react-virtualized": ["react-virtualized@9.22.5", "", { "dependencies": { "@babel/runtime": "^7.7.2", "clsx": "^1.0.4", "dom-helpers": "^5.1.3", "loose-envify": "^1.4.0", "prop-types": "^15.7.2", "react-lifecycles-compat": "^3.0.4" } }, "sha512-YqQMRzlVANBv1L/7r63OHa2b0ZsAaDp1UhVNEdUaXI8A5u6hTpA5NYtUueLH2rFuY/27mTGIBl7ZhqFKzw18YQ=="], + + "read": ["read@2.1.0", "", { "dependencies": { "mute-stream": "~1.0.0" } }, "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ=="], + + "read-cmd-shim": ["read-cmd-shim@4.0.0", "", {}, "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q=="], + + "read-package-json": ["read-package-json@7.0.0", "", { "dependencies": { "glob": "^10.2.2", "json-parse-even-better-errors": "^3.0.0", "normalize-package-data": "^6.0.0", "npm-normalize-package-bin": "^3.0.0" } }, "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg=="], + + "read-package-json-fast": ["read-package-json-fast@3.0.2", "", { "dependencies": { "json-parse-even-better-errors": "^3.0.0", "npm-normalize-package-bin": "^3.0.0" } }, "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw=="], + + "read-pkg": ["read-pkg@9.0.1", "", { "dependencies": { "@types/normalize-package-data": "^2.4.3", "normalize-package-data": "^6.0.0", "parse-json": "^8.0.0", "type-fest": "^4.6.0", "unicorn-magic": "^0.1.0" } }, "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA=="], + + "read-pkg-up": ["read-pkg-up@11.0.0", "", { "dependencies": { "find-up-simple": "^1.0.0", "read-pkg": "^9.0.0", "type-fest": "^4.6.0" } }, "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q=="], + + "readable-stream": ["readable-stream@https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }], + + "readdirp": ["readdirp@https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", { "dependencies": { "picomatch": "^2.2.1" } }], + + "recast": ["recast@https://registry.npmjs.org/recast/-/recast-0.23.1.tgz", { "dependencies": { "assert": "^2.0.0", "ast-types": "^0.16.1", "esprima": "~4.0.0", "source-map": "~0.6.1", "tslib": "^2.0.1" } }], + + "redent": ["redent@https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", { "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" } }], + + "redeyed": ["redeyed@https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", { "dependencies": { "esprima": "~4.0.0" } }], + + "redux": ["redux@5.0.1", "", {}, "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w=="], + + "redux-thunk": ["redux-thunk@3.1.0", "", { "peerDependencies": { "redux": "^5.0.0" } }, "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw=="], + + "regenerate": ["regenerate@https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", {}], + + "regenerate-unicode-properties": ["regenerate-unicode-properties@https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", { "dependencies": { "regenerate": "^1.4.2" } }], + + "regenerator-runtime": ["regenerator-runtime@https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", {}], + + "regenerator-transform": ["regenerator-transform@https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", { "dependencies": { "@babel/runtime": "^7.8.4" } }], + + "regexp-tree": ["regexp-tree@https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.25.tgz", {}], + + "regexp.prototype.flags": ["regexp.prototype.flags@https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "functions-have-names": "^1.2.3" } }], + + "regexpp": ["regexpp@https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", {}], + + "regexpu-core": ["regexpu-core@https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", { "dependencies": { "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.1.0", "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }], + + "registry-auth-token": ["registry-auth-token@5.0.2", "", { "dependencies": { "@pnpm/npm-conf": "^2.1.0" } }, "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ=="], + + "regjsparser": ["regjsparser@https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", { "dependencies": { "jsesc": "~0.5.0" } }], + + "relay-runtime": ["relay-runtime@https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz", { "dependencies": { "@babel/runtime": "^7.0.0", "fbjs": "^3.0.0", "invariant": "^2.2.4" } }], + + "remark": ["remark@https://registry.npmjs.org/remark/-/remark-13.0.0.tgz", { "dependencies": { "remark-parse": "^9.0.0", "remark-stringify": "^9.0.0", "unified": "^9.1.0" } }], + + "remark-external-links": ["remark-external-links@https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", { "dependencies": { "extend": "^3.0.0", "is-absolute-url": "^3.0.0", "mdast-util-definitions": "^4.0.0", "space-separated-tokens": "^1.0.0", "unist-util-visit": "^2.0.0" } }], + + "remark-gfm": ["remark-gfm@https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-gfm": "^2.0.0", "micromark-extension-gfm": "^2.0.0", "unified": "^10.0.0" } }], + + "remark-parse": ["remark-parse@https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz", { "dependencies": { "mdast-util-from-markdown": "^0.8.0" } }], + + "remark-slug": ["remark-slug@https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", { "dependencies": { "github-slugger": "^1.0.0", "mdast-util-to-string": "^1.0.0", "unist-util-visit": "^2.0.0" } }], + + "remark-stringify": ["remark-stringify@https://registry.npmjs.org/remark-stringify/-/remark-stringify-9.0.1.tgz", { "dependencies": { "mdast-util-to-markdown": "^0.6.0" } }], + + "remedial": ["remedial@https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz", {}], + + "remove-trailing-separator": ["remove-trailing-separator@https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", {}], + + "remove-trailing-spaces": ["remove-trailing-spaces@https://registry.npmjs.org/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz", {}], + + "repeat-string": ["repeat-string@https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", {}], + + "require-directory": ["require-directory@https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", {}], + + "require-from-string": ["require-from-string@https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", {}], + + "require-main-filename": ["require-main-filename@https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", {}], + + "requireindex": ["requireindex@https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", {}], + + "requires-port": ["requires-port@1.0.0", "", {}, "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="], + + "reselect": ["reselect@5.1.1", "", {}, "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w=="], + + "reserved-words": ["reserved-words@https://registry.npmjs.org/reserved-words/-/reserved-words-0.1.2.tgz", {}], + + "resize-observer-polyfill": ["resize-observer-polyfill@https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", {}], + + "resolve": ["resolve@https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", { "dependencies": { "is-core-module": "^2.11.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }], + + "resolve-from": ["resolve-from@https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", {}], + + "resolve-pathname": ["resolve-pathname@https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", {}], + + "response-iterator": ["response-iterator@0.2.6", "", {}, "sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw=="], + + "restore-cursor": ["restore-cursor@https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", { "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }], + + "retry": ["retry@0.12.0", "", {}, "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="], + + "reusify": ["reusify@https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", {}], + + "rfdc": ["rfdc@https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", {}], + + "rimraf": ["rimraf@https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", { "dependencies": { "glob": "^7.1.3" } }], + + "rolldown": ["rolldown@1.0.0-rc.9", "", { "dependencies": { "@oxc-project/types": "=0.115.0", "@rolldown/pluginutils": "1.0.0-rc.9" }, "optionalDependencies": { "@rolldown/binding-android-arm64": "1.0.0-rc.9", "@rolldown/binding-darwin-arm64": "1.0.0-rc.9", "@rolldown/binding-darwin-x64": "1.0.0-rc.9", "@rolldown/binding-freebsd-x64": "1.0.0-rc.9", "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.9", "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.9", "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.9", "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.9", "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.9", "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.9", "@rolldown/binding-linux-x64-musl": "1.0.0-rc.9", "@rolldown/binding-openharmony-arm64": "1.0.0-rc.9", "@rolldown/binding-wasm32-wasi": "1.0.0-rc.9", "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.9", "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.9" }, "bin": { "rolldown": "bin/cli.mjs" } }, "sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q=="], + + "rollup": ["rollup@https://registry.npmjs.org/rollup/-/rollup-3.21.0.tgz", { "optionalDependencies": { "fsevents": "~2.3.2" } }], + + "rollup-plugin-copy": ["rollup-plugin-copy@3.5.0", "", { "dependencies": { "@types/fs-extra": "^8.0.1", "colorette": "^1.1.0", "fs-extra": "^8.1.0", "globby": "10.0.1", "is-plain-object": "^3.0.0" } }, "sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA=="], + + "rollup-plugin-visualizer": ["rollup-plugin-visualizer@https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.0.tgz", { "dependencies": { "open": "^8.4.0", "picomatch": "^2.3.1", "source-map": "^0.7.4", "yargs": "^17.5.1" } }], + + "rrweb-cssom": ["rrweb-cssom@0.6.0", "", {}, "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw=="], + + "run-async": ["run-async@https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", {}], + + "run-parallel": ["run-parallel@https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", { "dependencies": { "queue-microtask": "^1.2.2" } }], + + "rxjs": ["rxjs@https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", { "dependencies": { "tslib": "^2.1.0" } }], + + "sade": ["sade@https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", { "dependencies": { "mri": "^1.1.0" } }], + + "safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", {}], + + "safe-regex": ["safe-regex@https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", { "dependencies": { "regexp-tree": "~0.1.1" } }], + + "safe-regex-test": ["safe-regex-test@https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", { "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", "is-regex": "^1.1.4" } }], + + "safer-buffer": ["safer-buffer@https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", {}], + + "sax": ["sax@https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", {}], + + "saxes": ["saxes@6.0.0", "", { "dependencies": { "xmlchars": "^2.2.0" } }, "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA=="], + + "scheduler": ["scheduler@https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", { "dependencies": { "loose-envify": "^1.1.0" } }], + + "schema-utils": ["schema-utils@https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }], + + "screenfull": ["screenfull@https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz", {}], + + "scroll-into-view-if-needed": ["scroll-into-view-if-needed@3.1.0", "", { "dependencies": { "compute-scroll-into-view": "^3.0.2" } }, "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ=="], + + "scuid": ["scuid@https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz", {}], + + "scule": ["scule@https://registry.npmjs.org/scule/-/scule-1.0.0.tgz", {}], + + "semantic-release": ["semantic-release@23.0.0", "", { "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", "@semantic-release/error": "^4.0.0", "@semantic-release/github": "^9.0.0", "@semantic-release/npm": "^11.0.0", "@semantic-release/release-notes-generator": "^12.0.0", "aggregate-error": "^5.0.0", "cosmiconfig": "^9.0.0", "debug": "^4.0.0", "env-ci": "^11.0.0", "execa": "^8.0.0", "figures": "^6.0.0", "find-versions": "^5.1.0", "get-stream": "^6.0.0", "git-log-parser": "^1.2.0", "hook-std": "^3.0.0", "hosted-git-info": "^7.0.0", "import-from-esm": "^1.3.1", "lodash-es": "^4.17.21", "marked": "^11.0.0", "marked-terminal": "^6.0.0", "micromatch": "^4.0.2", "p-each-series": "^3.0.0", "p-reduce": "^3.0.0", "read-pkg-up": "^11.0.0", "resolve-from": "^5.0.0", "semver": "^7.3.2", "semver-diff": "^4.0.0", "signale": "^1.2.1", "yargs": "^17.5.1" } }, "sha512-Jz7jEWO2igTtske112gC4PPE2whCMVrsgxUPG3/SZI7VE357suIUZFlJd1Yu0g2I6RPc2HxNEfUg7KhmDTjwqg=="], + + "semver": ["semver@https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", {}], + + "semver-diff": ["semver-diff@4.0.0", "", { "dependencies": { "semver": "^7.3.5" } }, "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA=="], + + "semver-regex": ["semver-regex@4.0.5", "", {}, "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw=="], + + "send": ["send@https://registry.npmjs.org/send/-/send-0.16.2.tgz", { "dependencies": { "debug": "2.6.9", "depd": "~1.1.2", "destroy": "~1.0.4", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "~1.6.2", "mime": "1.4.1", "ms": "2.0.0", "on-finished": "~2.3.0", "range-parser": "~1.2.0", "statuses": "~1.4.0" } }], + + "sentence-case": ["sentence-case@https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", { "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3", "upper-case-first": "^2.0.2" } }], + + "serve-favicon": ["serve-favicon@https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz", { "dependencies": { "etag": "~1.8.1", "fresh": "0.5.2", "ms": "2.1.1", "parseurl": "~1.3.2", "safe-buffer": "5.1.1" } }], + + "serve-static": ["serve-static@https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.2", "send": "0.16.2" } }], + + "set-blocking": ["set-blocking@https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", {}], + + "setimmediate": ["setimmediate@https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", {}], + + "setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", {}], + + "seventh": ["seventh@https://registry.npmjs.org/seventh/-/seventh-0.7.40.tgz", { "dependencies": { "setimmediate": "^1.0.5" } }], + + "shallow-clone": ["shallow-clone@https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", { "dependencies": { "kind-of": "^6.0.2" } }], + + "shebang-command": ["shebang-command@https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", { "dependencies": { "shebang-regex": "^3.0.0" } }], + + "shebang-regex": ["shebang-regex@https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", {}], + + "shell-quote": ["shell-quote@https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", {}], + + "side-channel": ["side-channel@https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", { "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" } }], + + "siginfo": ["siginfo@2.0.0", "", {}, "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g=="], + + "signal-exit": ["signal-exit@https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", {}], + + "signale": ["signale@1.4.0", "", { "dependencies": { "chalk": "^2.3.2", "figures": "^2.0.0", "pkg-conf": "^2.1.0" } }, "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w=="], + + "signedsource": ["signedsource@https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz", {}], + + "sigstore": ["sigstore@2.2.0", "", { "dependencies": { "@sigstore/bundle": "^2.1.1", "@sigstore/core": "^0.2.0", "@sigstore/protobuf-specs": "^0.2.1", "@sigstore/sign": "^2.2.1", "@sigstore/tuf": "^2.3.0", "@sigstore/verify": "^0.1.0" } }, "sha512-fcU9clHwEss2/M/11FFM8Jwc4PjBgbhXoNskoK5guoK0qGQBSeUbQZRJ+B2fDFIvhyf0gqCaPrel9mszbhAxug=="], + + "simple-update-notifier": ["simple-update-notifier@2.0.0", "", { "dependencies": { "semver": "^7.5.3" } }, "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w=="], + + "sisteransi": ["sisteransi@https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", {}], + + "skin-tone": ["skin-tone@2.0.0", "", { "dependencies": { "unicode-emoji-modifier-base": "^1.0.0" } }, "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA=="], + + "slash": ["slash@5.1.0", "", {}, "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg=="], + + "slice-ansi": ["slice-ansi@https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", { "dependencies": { "ansi-styles": "^6.0.0", "is-fullwidth-code-point": "^4.0.0" } }], + + "smart-buffer": ["smart-buffer@4.2.0", "", {}, "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="], + + "snake-case": ["snake-case@https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", { "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }], + + "socks": ["socks@2.7.1", "", { "dependencies": { "ip": "^2.0.0", "smart-buffer": "^4.2.0" } }, "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ=="], + + "socks-proxy-agent": ["socks-proxy-agent@8.0.2", "", { "dependencies": { "agent-base": "^7.0.2", "debug": "^4.3.4", "socks": "^2.7.1" } }, "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g=="], + + "sort-object-keys": ["sort-object-keys@https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", {}], + + "sort-package-json": ["sort-package-json@https://registry.npmjs.org/sort-package-json/-/sort-package-json-1.57.0.tgz", { "dependencies": { "detect-indent": "^6.0.0", "detect-newline": "3.1.0", "git-hooks-list": "1.0.3", "globby": "10.0.0", "is-plain-obj": "2.1.0", "sort-object-keys": "^1.1.3" } }], + + "source-map": ["source-map@https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", {}], + + "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], + + "source-map-support": ["source-map-support@https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }], + + "space-separated-tokens": ["space-separated-tokens@https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", {}], + + "spawn-error-forwarder": ["spawn-error-forwarder@1.0.0", "", {}, "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g=="], + + "spdx-correct": ["spdx-correct@https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", { "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }], + + "spdx-exceptions": ["spdx-exceptions@https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", {}], + + "spdx-expression-parse": ["spdx-expression-parse@https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", { "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }], + + "spdx-license-ids": ["spdx-license-ids@https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", {}], + + "specificity": ["specificity@https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz", {}], + + "split-on-first": ["split-on-first@https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", {}], + + "split2": ["split2@4.2.0", "", {}, "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg=="], + + "sponge-case": ["sponge-case@https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "sprintf-js": ["sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", {}], + + "ssri": ["ssri@10.0.5", "", { "dependencies": { "minipass": "^7.0.3" } }, "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A=="], + + "stable": ["stable@https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", {}], + + "stackback": ["stackback@0.0.2", "", {}, "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw=="], + + "state-local": ["state-local@1.0.7", "", {}, "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w=="], + + "statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", {}], + + "std-env": ["std-env@3.4.3", "", {}, "sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q=="], + + "stop-iteration-iterator": ["stop-iteration-iterator@https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", { "dependencies": { "internal-slot": "^1.0.4" } }], + + "store2": ["store2@https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", {}], + + "storybook": ["storybook@7.4.5", "", { "dependencies": { "@storybook/cli": "7.4.5" } }, "sha512-J7fidphTJ6SJHlR8f/USQE30K6ipbynLVLsTOz0bNYW/0Ua2t9u6dAYGbbq6bLikl3zxzQbdm9lXMUzmaYAdIA=="], + + "stream-combiner2": ["stream-combiner2@1.1.1", "", { "dependencies": { "duplexer2": "~0.1.0", "readable-stream": "^2.0.2" } }, "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw=="], + + "stream-shift": ["stream-shift@https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", {}], + + "streamsearch": ["streamsearch@https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", {}], + + "strict-uri-encode": ["strict-uri-encode@https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", {}], + + "string-argv": ["string-argv@https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", {}], + + "string-convert": ["string-convert@0.2.1", "", {}, "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A=="], + + "string-env-interpolation": ["string-env-interpolation@https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz", {}], + + "string-kit": ["string-kit@https://registry.npmjs.org/string-kit/-/string-kit-0.11.10.tgz", {}], + + "string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "string.prototype.matchall": ["string.prototype.matchall@https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4", "get-intrinsic": "^1.1.3", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4" } }], + + "string.prototype.trim": ["string.prototype.trim@https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "string.prototype.trimend": ["string.prototype.trimend@https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "string.prototype.trimstart": ["string.prototype.trimstart@https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" } }], + + "string_decoder": ["string_decoder@https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", { "dependencies": { "safe-buffer": "~5.1.0" } }], + + "strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-ansi-cjs": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-bom": ["strip-bom@https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", {}], + + "strip-final-newline": ["strip-final-newline@https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", {}], + + "strip-indent": ["strip-indent@https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", { "dependencies": { "min-indent": "^1.0.0" } }], + + "strip-json-comments": ["strip-json-comments@https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", {}], + + "strip-literal": ["strip-literal@https://registry.npmjs.org/strip-literal/-/strip-literal-1.0.1.tgz", { "dependencies": { "acorn": "^8.8.2" } }], + + "style-search": ["style-search@https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", {}], + + "style-to-object": ["style-to-object@https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz", { "dependencies": { "inline-style-parser": "0.1.1" } }], + + "stylelint": ["stylelint@https://registry.npmjs.org/stylelint/-/stylelint-13.13.1.tgz", { "dependencies": { "@stylelint/postcss-css-in-js": "^0.37.2", "@stylelint/postcss-markdown": "^0.36.2", "autoprefixer": "^9.8.6", "balanced-match": "^2.0.0", "chalk": "^4.1.1", "cosmiconfig": "^7.0.0", "debug": "^4.3.1", "execall": "^2.0.0", "fast-glob": "^3.2.5", "fastest-levenshtein": "^1.0.12", "file-entry-cache": "^6.0.1", "get-stdin": "^8.0.0", "global-modules": "^2.0.0", "globby": "^11.0.3", "globjoin": "^0.1.4", "html-tags": "^3.1.0", "ignore": "^5.1.8", "import-lazy": "^4.0.0", "imurmurhash": "^0.1.4", "known-css-properties": "^0.21.0", "lodash": "^4.17.21", "log-symbols": "^4.1.0", "mathml-tag-names": "^2.1.3", "meow": "^9.0.0", "micromatch": "^4.0.4", "normalize-selector": "^0.2.0", "postcss": "^7.0.35", "postcss-html": "^0.36.0", "postcss-less": "^3.1.4", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", "postcss-safe-parser": "^4.0.2", "postcss-sass": "^0.4.4", "postcss-scss": "^2.1.1", "postcss-selector-parser": "^6.0.5", "postcss-syntax": "^0.36.2", "postcss-value-parser": "^4.1.0", "resolve-from": "^5.0.0", "slash": "^3.0.0", "specificity": "^0.4.1", "string-width": "^4.2.2", "strip-ansi": "^6.0.0", "style-search": "^0.1.0", "sugarss": "^2.0.0", "svg-tags": "^1.0.0", "table": "^6.6.0", "v8-compile-cache": "^2.3.0", "write-file-atomic": "^3.0.3" } }], + + "stylelint-config-css-modules": ["stylelint-config-css-modules@https://registry.npmjs.org/stylelint-config-css-modules/-/stylelint-config-css-modules-2.3.0.tgz", {}], + + "stylelint-config-prettier": ["stylelint-config-prettier@https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-8.0.2.tgz", {}], + + "stylelint-config-recommended": ["stylelint-config-recommended@https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-3.0.0.tgz", {}], + + "stylelint-config-standard": ["stylelint-config-standard@https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-20.0.0.tgz", { "dependencies": { "stylelint-config-recommended": "^3.0.0" } }], + + "stylelint-declaration-block-no-ignored-properties": ["stylelint-declaration-block-no-ignored-properties@https://registry.npmjs.org/stylelint-declaration-block-no-ignored-properties/-/stylelint-declaration-block-no-ignored-properties-2.7.0.tgz", {}], + + "stylis": ["stylis@https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", {}], + + "subscriptions-transport-ws": ["subscriptions-transport-ws@https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.18.tgz", { "dependencies": { "backo2": "^1.0.2", "eventemitter3": "^3.1.0", "iterall": "^1.2.1", "symbol-observable": "^1.0.4", "ws": "^5.2.0" } }], + + "sugarss": ["sugarss@https://registry.npmjs.org/sugarss/-/sugarss-2.0.0.tgz", { "dependencies": { "postcss": "^7.0.2" } }], + + "supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", { "dependencies": { "has-flag": "^4.0.0" } }], + + "supports-hyperlinks": ["supports-hyperlinks@https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", { "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" } }], + + "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", {}], + + "svg-parser": ["svg-parser@https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", {}], + + "svg-tags": ["svg-tags@https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", {}], + + "svgo": ["svgo@https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", { "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^4.1.3", "css-tree": "^1.1.3", "csso": "^4.2.0", "picocolors": "^1.0.0", "stable": "^0.1.8" } }], + + "swap-case": ["swap-case@https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "swiper": ["swiper@10.0.4", "", {}, "sha512-DlNR3KiaVkPep6RraZ2tNr7lvyuzELuR+4NZr4wO42t0UworIO3DxDlz8b5Q3uUioh7cJad99EdRJLkPF+r8Ag=="], + + "swr": ["swr@https://registry.npmjs.org/swr/-/swr-2.1.5.tgz", { "dependencies": { "use-sync-external-store": "^1.2.0" } }], + + "symbol-observable": ["symbol-observable@4.0.0", "", {}, "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ=="], + + "symbol-tree": ["symbol-tree@3.2.4", "", {}, "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="], + + "synchronous-promise": ["synchronous-promise@https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", {}], + + "synckit": ["synckit@https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", { "dependencies": { "@pkgr/utils": "^2.3.1", "tslib": "^2.5.0" } }], + + "table": ["table@https://registry.npmjs.org/table/-/table-6.8.1.tgz", { "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }], + + "table-layout": ["table-layout@4.1.1", "", { "dependencies": { "array-back": "^6.2.2", "wordwrapjs": "^5.1.0" } }, "sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA=="], + + "tapable": ["tapable@https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", {}], + + "tar": ["tar@6.2.0", "", { "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", "minipass": "^5.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" } }, "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ=="], + + "tar-fs": ["tar-fs@https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", { "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^2.1.4" } }], + + "tar-stream": ["tar-stream@https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", { "dependencies": { "bl": "^4.0.3", "end-of-stream": "^1.4.1", "fs-constants": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^3.1.1" } }], + + "telejson": ["telejson@7.2.0", "", { "dependencies": { "memoizerific": "^1.11.3" } }, "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ=="], + + "temp": ["temp@https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", { "dependencies": { "rimraf": "~2.6.2" } }], + + "temp-dir": ["temp-dir@3.0.0", "", {}, "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw=="], + + "tempy": ["tempy@3.1.0", "", { "dependencies": { "is-stream": "^3.0.0", "temp-dir": "^3.0.0", "type-fest": "^2.12.2", "unique-string": "^3.0.0" } }, "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g=="], + + "terminal-kit": ["terminal-kit@https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.49.4.tgz", { "dependencies": { "@cronvel/get-pixels": "^3.4.0", "chroma-js": "^2.1.0", "lazyness": "^1.2.0", "ndarray": "^1.0.19", "nextgen-events": "^1.3.4", "seventh": "^0.7.40", "string-kit": "^0.11.9", "tree-kit": "^0.7.0" } }], + + "test-exclude": ["test-exclude@https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", { "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" } }], + + "text-extensions": ["text-extensions@2.4.0", "", {}, "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g=="], + + "text-table": ["text-table@https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", {}], + + "throttle-debounce": ["throttle-debounce@5.0.0", "", {}, "sha512-2iQTSgkkc1Zyk0MeVrt/3BvuOXYPl/R8Z0U2xxo9rjwNciaHDG3R+Lm6dh4EeUci49DanvBnuqI6jshoQQRGEg=="], + + "through": ["through@https://registry.npmjs.org/through/-/through-2.3.8.tgz", {}], + + "through2": ["through2@https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", { "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }], + + "tiny-glob": ["tiny-glob@https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", { "dependencies": { "globalyzer": "0.1.0", "globrex": "^0.1.2" } }], + + "tiny-invariant": ["tiny-invariant@https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", {}], + + "tiny-relative-date": ["tiny-relative-date@1.3.0", "", {}, "sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A=="], + + "tiny-warning": ["tiny-warning@https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", {}], + + "tinybench": ["tinybench@2.5.1", "", {}, "sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg=="], + + "tinyglobby": ["tinyglobby@0.2.15", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="], + + "tinypool": ["tinypool@0.7.0", "", {}, "sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww=="], + + "tinyspy": ["tinyspy@2.2.0", "", {}, "sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg=="], + + "title-case": ["title-case@https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "tmp": ["tmp@https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", { "dependencies": { "os-tmpdir": "~1.0.2" } }], + + "tmpl": ["tmpl@https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", {}], + + "to-camel-case": ["to-camel-case@1.0.0", "", { "dependencies": { "to-space-case": "^1.0.0" } }, "sha512-nD8pQi5H34kyu1QDMFjzEIYqk0xa9Alt6ZfrdEMuHCFOfTLhDG5pgTu/aAM9Wt9lXILwlXmWP43b8sav0GNE8Q=="], + + "to-fast-properties": ["to-fast-properties@https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", {}], + + "to-no-case": ["to-no-case@1.0.2", "", {}, "sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg=="], + + "to-regex-range": ["to-regex-range@https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", { "dependencies": { "is-number": "^7.0.0" } }], + + "to-space-case": ["to-space-case@1.0.0", "", { "dependencies": { "to-no-case": "^1.0.0" } }, "sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA=="], + + "tocbot": ["tocbot@4.21.0", "", {}, "sha512-vXk8htr8mIl3hc2s2mDkaPTBfqmqZA2o0x7eXbxUibdrpEIPdpM0L9hH/RvEvlgSM+ZTgS34sGipk5+VrLJCLA=="], + + "toggle-selection": ["toggle-selection@https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", {}], + + "toidentifier": ["toidentifier@https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", {}], + + "tough-cookie": ["tough-cookie@4.1.3", "", { "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" } }, "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw=="], + + "tr46": ["tr46@4.1.1", "", { "dependencies": { "punycode": "^2.3.0" } }, "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw=="], + + "traverse": ["traverse@0.6.8", "", {}, "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA=="], + + "tree-kit": ["tree-kit@https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.4.tgz", {}], + + "treeify": ["treeify@https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz", {}], + + "treeverse": ["treeverse@3.0.0", "", {}, "sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ=="], + + "trim-newlines": ["trim-newlines@https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", {}], + + "trough": ["trough@https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", {}], + + "ts-dedent": ["ts-dedent@https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", {}], + + "ts-invariant": ["ts-invariant@0.10.3", "", { "dependencies": { "tslib": "^2.1.0" } }, "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ=="], + + "ts-log": ["ts-log@https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz", {}], + + "tsconfig-paths": ["tsconfig-paths@https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", { "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }], + + "tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", {}], + + "tsutils": ["tsutils@https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", { "dependencies": { "tslib": "^1.8.1" } }], + + "tuf-js": ["tuf-js@2.2.0", "", { "dependencies": { "@tufjs/models": "2.0.0", "debug": "^4.3.4", "make-fetch-happen": "^13.0.0" } }, "sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg=="], + + "type-check": ["type-check@https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", { "dependencies": { "prelude-ls": "^1.2.1" } }], + + "type-detect": ["type-detect@4.0.8", "", {}, "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="], + + "type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", {}], + + "type-is": ["type-is@https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", { "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" } }], + + "typed-array-length": ["typed-array-length@https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", { "dependencies": { "call-bind": "^1.0.2", "for-each": "^0.3.3", "is-typed-array": "^1.1.9" } }], + + "typedarray": ["typedarray@https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", {}], + + "typedarray-to-buffer": ["typedarray-to-buffer@https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", { "dependencies": { "is-typedarray": "^1.0.0" } }], + + "typescript": ["typescript@5.2.2", "", {}, "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w=="], + + "typical": ["typical@7.3.0", "", {}, "sha512-ya4mg/30vm+DOWfBg4YK3j2WD6TWtRkCbasOJr40CseYENzCUby/7rIvXA99JGsQHeNxLbnXdyLLxKSv3tauFw=="], + + "ua-parser-js": ["ua-parser-js@https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", {}], + + "ufo": ["ufo@https://registry.npmjs.org/ufo/-/ufo-1.1.1.tgz", {}], + + "uglify-js": ["uglify-js@https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", {}], + + "unbox-primitive": ["unbox-primitive@https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", { "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" } }], + + "unc-path-regex": ["unc-path-regex@https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", {}], + + "unchanged": ["unchanged@2.2.1", "", { "dependencies": { "curriable": "^1.3.0", "pathington": "^1.1.7" } }, "sha512-pMlMNfqtfjOVpDAKVBH+LjnhnTwWYUrJq9fU3nGRYrw6JnprJEH1/cehJikRTf+o6dmkpX5XRRspb5mUAhxeZQ=="], + + "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="], + + "unicode-canonical-property-names-ecmascript": ["unicode-canonical-property-names-ecmascript@https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", {}], + + "unicode-emoji-modifier-base": ["unicode-emoji-modifier-base@1.0.0", "", {}, "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g=="], + + "unicode-match-property-ecmascript": ["unicode-match-property-ecmascript@https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", { "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" } }], + + "unicode-match-property-value-ecmascript": ["unicode-match-property-value-ecmascript@https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", {}], + + "unicode-property-aliases-ecmascript": ["unicode-property-aliases-ecmascript@https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", {}], + + "unicorn-magic": ["unicorn-magic@0.1.0", "", {}, "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="], + + "unified": ["unified@https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", { "dependencies": { "@types/unist": "^2.0.0", "bail": "^2.0.0", "extend": "^3.0.0", "is-buffer": "^2.0.0", "is-plain-obj": "^4.0.0", "trough": "^2.0.0", "vfile": "^5.0.0" } }], + + "unimport": ["unimport@https://registry.npmjs.org/unimport/-/unimport-3.0.6.tgz", { "dependencies": { "@rollup/pluginutils": "^5.0.2", "escape-string-regexp": "^5.0.0", "fast-glob": "^3.2.12", "local-pkg": "^0.4.3", "magic-string": "^0.30.0", "mlly": "^1.2.0", "pathe": "^1.1.0", "pkg-types": "^1.0.2", "scule": "^1.0.0", "strip-literal": "^1.0.1", "unplugin": "^1.3.1" } }], + + "uniq": ["uniq@https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", {}], + + "unique-filename": ["unique-filename@3.0.0", "", { "dependencies": { "unique-slug": "^4.0.0" } }, "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g=="], + + "unique-slug": ["unique-slug@4.0.0", "", { "dependencies": { "imurmurhash": "^0.1.4" } }, "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ=="], + + "unique-string": ["unique-string@3.0.0", "", { "dependencies": { "crypto-random-string": "^4.0.0" } }, "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ=="], + + "unist-util-find-all-after": ["unist-util-find-all-after@https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz", { "dependencies": { "unist-util-is": "^4.0.0" } }], + + "unist-util-is": ["unist-util-is@https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", {}], + + "unist-util-position": ["unist-util-position@https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", { "dependencies": { "@types/unist": "^2.0.0" } }], + + "unist-util-stringify-position": ["unist-util-stringify-position@https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", { "dependencies": { "@types/unist": "^2.0.0" } }], + + "unist-util-visit": ["unist-util-visit@https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", "unist-util-visit-parents": "^3.0.0" } }], + + "unist-util-visit-parents": ["unist-util-visit-parents@https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" } }], + + "universal-user-agent": ["universal-user-agent@6.0.1", "", {}, "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ=="], + + "universalify": ["universalify@0.2.0", "", {}, "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg=="], + + "unixify": ["unixify@https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", { "dependencies": { "normalize-path": "^2.1.1" } }], + + "unpipe": ["unpipe@https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", {}], + + "unplugin": ["unplugin@https://registry.npmjs.org/unplugin/-/unplugin-1.3.1.tgz", { "dependencies": { "acorn": "^8.8.2", "chokidar": "^3.5.3", "webpack-sources": "^3.2.3", "webpack-virtual-modules": "^0.5.0" } }], + + "unplugin-auto-import": ["unplugin-auto-import@https://registry.npmjs.org/unplugin-auto-import/-/unplugin-auto-import-0.15.3.tgz", { "dependencies": { "@antfu/utils": "^0.7.2", "@rollup/pluginutils": "^5.0.2", "local-pkg": "^0.4.3", "magic-string": "^0.30.0", "minimatch": "^9.0.0", "unimport": "^3.0.6", "unplugin": "^1.3.1" } }], + + "untildify": ["untildify@https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", {}], + + "update-browserslist-db": ["update-browserslist-db@https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", { "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0" } }], + + "upper-case": ["upper-case@https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "upper-case-first": ["upper-case-first@https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", { "dependencies": { "tslib": "^2.0.3" } }], + + "uri-js": ["uri-js@https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", { "dependencies": { "punycode": "^2.1.0" } }], + + "url-join": ["url-join@5.0.0", "", {}, "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA=="], + + "url-parse": ["url-parse@1.5.10", "", { "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="], + + "urlpattern-polyfill": ["urlpattern-polyfill@https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", {}], + + "urql": ["urql@4.0.5", "", { "dependencies": { "@urql/core": "^4.1.0", "wonka": "^6.3.2" } }, "sha512-VicPBQXWicSbE+0oPzU2HMyDa//76FmwyQ7LayaYQxX97nhvMLs2ZWQdUmEzQQqvmw4YFaI0wPz1Qisp+PrZIQ=="], + + "use-callback-ref": ["use-callback-ref@1.3.0", "", { "dependencies": { "tslib": "^2.0.0" } }, "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w=="], + + "use-json-comparison": ["use-json-comparison@https://registry.npmjs.org/use-json-comparison/-/use-json-comparison-1.0.6.tgz", {}], + + "use-local-storage-state": ["use-local-storage-state@19.1.0", "", {}, "sha512-3Ea6uRtRaSwpZYD9maZPKoEEGRuHmVA7zGrV/Uh9s5NTj9K1x/MB4IOQoywjUesQyhXmJq6bqjC5cAqlsXoOTw=="], + + "use-media-antd-query": ["use-media-antd-query@https://registry.npmjs.org/use-media-antd-query/-/use-media-antd-query-1.1.0.tgz", {}], + + "use-resize-observer": ["use-resize-observer@https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", { "dependencies": { "@juggle/resize-observer": "^3.3.1" } }], + + "use-sidecar": ["use-sidecar@1.1.2", "", { "dependencies": { "detect-node-es": "^1.1.0", "tslib": "^2.0.0" } }, "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw=="], + + "use-subscription": ["use-subscription@https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", { "dependencies": { "object-assign": "^4.1.1" } }], + + "use-sync-external-store": ["use-sync-external-store@https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", {}], + + "util": ["util@https://registry.npmjs.org/util/-/util-0.12.5.tgz", { "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", "is-typed-array": "^1.1.3", "which-typed-array": "^1.1.2" } }], + + "util-deprecate": ["util-deprecate@https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", {}], + + "utils-merge": ["utils-merge@https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", {}], + + "uuid": ["uuid@https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", {}], + + "uvu": ["uvu@https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", { "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", "kleur": "^4.0.3", "sade": "^1.7.3" } }], + + "v8-compile-cache": ["v8-compile-cache@https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", {}], + + "v8-to-istanbul": ["v8-to-istanbul@https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0" } }], + + "validate-npm-package-license": ["validate-npm-package-license@https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", { "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }], + + "validate-npm-package-name": ["validate-npm-package-name@5.0.0", "", { "dependencies": { "builtins": "^5.0.0" } }, "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ=="], + + "value-equal": ["value-equal@https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", {}], + + "value-or-promise": ["value-or-promise@https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz", {}], + + "vary": ["vary@https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", {}], + + "vfile": ["vfile@https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", { "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", "unist-util-stringify-position": "^3.0.0", "vfile-message": "^3.0.0" } }], + + "vfile-location": ["vfile-location@https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", { "dependencies": { "@types/unist": "^2.0.0", "vfile": "^5.0.0" } }], + + "vfile-message": ["vfile-message@https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" } }], + + "vite": ["vite@8.0.0", "", { "dependencies": { "@oxc-project/runtime": "0.115.0", "lightningcss": "^1.32.0", "picomatch": "^4.0.3", "postcss": "^8.5.8", "rolldown": "1.0.0-rc.9", "tinyglobby": "^0.2.15" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "@vitejs/devtools": "^0.0.0-alpha.31", "esbuild": "^0.27.0", "jiti": ">=1.21.0", "less": "^4.0.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "@vitejs/devtools", "esbuild", "jiti", "less", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-fPGaRNj9Zytaf8LEiBhY7Z6ijnFKdzU/+mL8EFBaKr7Vw1/FWcTBAMW0wLPJAGMPX38ZPVCVgLceWiEqeoqL2Q=="], + + "vite-node": ["vite-node@0.34.6", "", { "dependencies": { "cac": "^6.7.14", "debug": "^4.3.4", "mlly": "^1.4.0", "pathe": "^1.1.1", "picocolors": "^1.0.0", "vite": "^3.0.0 || ^4.0.0 || ^5.0.0-0" } }, "sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA=="], + + "vite-plugin-imp": ["vite-plugin-imp@https://registry.npmjs.org/vite-plugin-imp/-/vite-plugin-imp-2.4.0.tgz", { "dependencies": { "@babel/core": "^7.12.10", "@babel/generator": "^7.12.11", "@babel/parser": "^7.12.11", "@babel/traverse": "^7.12.12", "chalk": "^4.1.0", "param-case": "^3.0.4", "pascal-case": "^3.1.2" } }], + + "vite-plugin-mock": ["vite-plugin-mock@https://registry.npmjs.org/vite-plugin-mock/-/vite-plugin-mock-2.9.8.tgz", { "dependencies": { "@types/mockjs": "^1.0.4", "chalk": "^4.1.2", "chokidar": "^3.5.2", "connect": "^3.7.0", "debug": "^4.3.2", "esbuild": "^0.14.36", "fast-glob": "^3.2.7", "path-to-regexp": "^6.2.0" } }], + + "vite-plugin-monaco-editor": ["vite-plugin-monaco-editor@1.1.0", "", {}, "sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww=="], + + "vite-plugin-rewrite-all": ["vite-plugin-rewrite-all@1.0.1", "", { "dependencies": { "connect-history-api-fallback": "^1.6.0" } }, "sha512-W0DAchC8ynuQH0lYLIu5/5+JGfYlUTRD8GGNtHFXRJX4FzzB9MajtqHBp26zq/ly9sDt5BqrfdT08rv3RbB0LQ=="], + + "vite-plugin-svg-loader": ["vite-plugin-svg-loader@https://registry.npmjs.org/vite-plugin-svg-loader/-/vite-plugin-svg-loader-1.0.0.tgz", { "dependencies": { "@rgrove/parse-xml": "3.0.0", "svgo": "2.8.0" } }], + + "vite-plugin-windicss": ["vite-plugin-windicss@https://registry.npmjs.org/vite-plugin-windicss/-/vite-plugin-windicss-1.8.10.tgz", { "dependencies": { "@windicss/plugin-utils": "1.8.10", "debug": "^4.3.4", "kolorist": "^1.6.0", "windicss": "^3.5.6" } }], + + "vitest": ["vitest@0.34.6", "", { "dependencies": { "@types/chai": "^4.3.5", "@types/chai-subset": "^1.3.3", "@types/node": "*", "@vitest/expect": "0.34.6", "@vitest/runner": "0.34.6", "@vitest/snapshot": "0.34.6", "@vitest/spy": "0.34.6", "@vitest/utils": "0.34.6", "acorn": "^8.9.0", "acorn-walk": "^8.2.0", "cac": "^6.7.14", "chai": "^4.3.10", "debug": "^4.3.4", "local-pkg": "^0.4.3", "magic-string": "^0.30.1", "pathe": "^1.1.1", "picocolors": "^1.0.0", "std-env": "^3.3.3", "strip-literal": "^1.0.1", "tinybench": "^2.5.0", "tinypool": "^0.7.0", "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0", "vite-node": "0.34.6", "why-is-node-running": "^2.2.2" } }, "sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q=="], + + "void-elements": ["void-elements@3.1.0", "", {}, "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="], + + "vscode-languageserver-types": ["vscode-languageserver-types@https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz", {}], + + "w3c-xmlserializer": ["w3c-xmlserializer@4.0.0", "", { "dependencies": { "xml-name-validator": "^4.0.0" } }, "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw=="], + + "walk-up-path": ["walk-up-path@3.0.1", "", {}, "sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA=="], + + "walker": ["walker@https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", { "dependencies": { "makeerror": "1.0.12" } }], + + "warning": ["warning@https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", { "dependencies": { "loose-envify": "^1.0.0" } }], + + "watchpack": ["watchpack@https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", { "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" } }], + + "wcwidth": ["wcwidth@https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", { "dependencies": { "defaults": "^1.0.3" } }], + + "web-namespaces": ["web-namespaces@https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", {}], + + "web-streams-polyfill": ["web-streams-polyfill@https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", {}], + + "webcrypto-core": ["webcrypto-core@https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.7.tgz", { "dependencies": { "@peculiar/asn1-schema": "^2.3.6", "@peculiar/json-schema": "^1.1.12", "asn1js": "^3.0.1", "pvtsutils": "^1.3.2", "tslib": "^2.4.0" } }], + + "webidl-conversions": ["webidl-conversions@7.0.0", "", {}, "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g=="], + + "webpack-sources": ["webpack-sources@https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", {}], + + "webpack-virtual-modules": ["webpack-virtual-modules@https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", {}], + + "whatwg-encoding": ["whatwg-encoding@2.0.0", "", { "dependencies": { "iconv-lite": "0.6.3" } }, "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg=="], + + "whatwg-fetch": ["whatwg-fetch@https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", {}], + + "whatwg-mimetype": ["whatwg-mimetype@3.0.0", "", {}, "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q=="], + + "whatwg-url": ["whatwg-url@12.0.1", "", { "dependencies": { "tr46": "^4.1.1", "webidl-conversions": "^7.0.0" } }, "sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ=="], + + "which": ["which@https://registry.npmjs.org/which/-/which-2.0.2.tgz", { "dependencies": { "isexe": "^2.0.0" } }], + + "which-boxed-primitive": ["which-boxed-primitive@https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", { "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" } }], + + "which-collection": ["which-collection@https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", { "dependencies": { "is-map": "^2.0.1", "is-set": "^2.0.1", "is-weakmap": "^2.0.1", "is-weakset": "^2.0.1" } }], + + "which-module": ["which-module@https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", {}], + + "which-typed-array": ["which-typed-array@https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", { "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-tostringtag": "^1.0.0", "is-typed-array": "^1.1.10" } }], + + "why-is-node-running": ["why-is-node-running@2.2.2", "", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" } }, "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA=="], + + "wide-align": ["wide-align@1.1.5", "", { "dependencies": { "string-width": "^1.0.2 || 2 || 3 || 4" } }, "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="], + + "widest-line": ["widest-line@https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", { "dependencies": { "string-width": "^4.0.0" } }], + + "windicss": ["windicss@https://registry.npmjs.org/windicss/-/windicss-3.5.6.tgz", {}], + + "wonka": ["wonka@6.3.4", "", {}, "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg=="], + + "word-wrap": ["word-wrap@https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", {}], + + "wordwrap": ["wordwrap@https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", {}], + + "wordwrapjs": ["wordwrapjs@5.1.1", "", {}, "sha512-0yweIbkINJodk27gX9LBGMzyQdBDan3s/dEAiwBOj+Mf0PPyWL6/rikalkv8EeD0E8jm4o5RXEOrFTP3NXbhJg=="], + + "wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "wrap-ansi-cjs": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "wrappy": ["wrappy@https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", {}], + + "write-file-atomic": ["write-file-atomic@https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", { "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }], + + "ws": ["ws@https://registry.npmjs.org/ws/-/ws-7.4.2.tgz", {}], + + "xml-name-validator": ["xml-name-validator@4.0.0", "", {}, "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw=="], + + "xmlchars": ["xmlchars@2.2.0", "", {}, "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="], + + "xtend": ["xtend@https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", {}], + + "y18n": ["y18n@https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", {}], + + "yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", {}], + + "yaml": ["yaml@2.8.2", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A=="], + + "yaml-ast-parser": ["yaml-ast-parser@https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", {}], + + "yargs": ["yargs@https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", { "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" } }], + + "yargs-parser": ["yargs-parser@https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", {}], + + "yauzl": ["yauzl@https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", { "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }], + + "yocto-queue": ["yocto-queue@https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", {}], + + "zen-observable": ["zen-observable@0.8.15", "", {}, "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ=="], + + "zen-observable-ts": ["zen-observable-ts@1.2.5", "", { "dependencies": { "zen-observable": "0.8.15" } }, "sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg=="], + + "zustand": ["zustand@4.4.1", "", { "dependencies": { "use-sync-external-store": "1.2.0" } }, "sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw=="], + + "zwitch": ["zwitch@https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", {}], + + "@ant-design/colors/@ctrl/tinycolor": ["@ctrl/tinycolor@https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz", {}], + + "@ant-design/cssinjs/csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="], + + "@ant-design/cssinjs/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "@ant-design/pro-card/@ant-design/icons": ["@ant-design/icons@https://registry.npmjs.org/@ant-design/icons/-/icons-5.0.1.tgz", { "dependencies": { "@ant-design/colors": "^7.0.0", "@ant-design/icons-svg": "^4.2.1", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", "rc-util": "^5.9.4" } }], + + "@ant-design/pro-card/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "@ant-design/pro-layout/@ant-design/icons": ["@ant-design/icons@https://registry.npmjs.org/@ant-design/icons/-/icons-5.0.1.tgz", { "dependencies": { "@ant-design/colors": "^7.0.0", "@ant-design/icons-svg": "^4.2.1", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", "rc-util": "^5.9.4" } }], + + "@ant-design/pro-layout/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "@ant-design/pro-provider/@ant-design/cssinjs": ["@ant-design/cssinjs@https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-1.9.1.tgz", { "dependencies": { "@babel/runtime": "^7.11.1", "@emotion/hash": "^0.8.0", "@emotion/unitless": "^0.7.5", "classnames": "^2.3.1", "csstype": "^3.0.10", "rc-util": "^5.27.0", "stylis": "^4.0.13" } }], + + "@ant-design/pro-provider/@ctrl/tinycolor": ["@ctrl/tinycolor@https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz", {}], + + "@ant-design/pro-provider/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "@ant-design/pro-utils/@ant-design/icons": ["@ant-design/icons@https://registry.npmjs.org/@ant-design/icons/-/icons-5.0.1.tgz", { "dependencies": { "@ant-design/colors": "^7.0.0", "@ant-design/icons-svg": "^4.2.1", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", "rc-util": "^5.9.4" } }], + + "@ant-design/pro-utils/dayjs": ["dayjs@https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", {}], + + "@ant-design/pro-utils/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "@ant-design/react-slick/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "@ant-design/react-slick/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "@ardatan/relay-compiler/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "@ardatan/relay-compiler/yargs": ["yargs@https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", { "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", "find-up": "^4.1.0", "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", "string-width": "^4.2.0", "which-module": "^2.0.0", "y18n": "^4.0.0", "yargs-parser": "^18.1.2" } }], + + "@ardatan/sync-fetch/node-fetch": ["node-fetch@https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", { "dependencies": { "whatwg-url": "^5.0.0" } }], + + "@babel/eslint-parser/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", {}], + + "@babel/generator/jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", {}], + + "@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@babel/plugin-syntax-import-attributes/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-wrap-function": "^7.22.9" } }, "sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-replace-supers": "^7.22.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" } }, "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-replace-supers": "^7.22.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" } }, "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-classes/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@babel/plugin-transform-dynamic-import/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-export-namespace-from/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-json-strings/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-logical-assignment-operators/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-nullish-coalescing-operator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-numeric-separator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-object-rest-spread/@babel/compat-data": ["@babel/compat-data@7.22.9", "", {}, "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", "browserslist": "^4.21.9", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-object-rest-spread/@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg=="], + + "@babel/plugin-transform-optional-catch-binding/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-optional-chaining/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-replace-supers": "^7.22.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" } }, "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-replace-supers": "^7.22.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" } }, "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-react-jsx-self/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.28.6", "", {}, "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug=="], + + "@babel/plugin-transform-react-jsx-source/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.28.6", "", {}, "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@babel/register/find-cache-dir": ["find-cache-dir@https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", { "dependencies": { "commondir": "^1.0.1", "make-dir": "^2.0.0", "pkg-dir": "^3.0.0" } }], + + "@babel/traverse/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@emnapi/core/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "@emnapi/runtime/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "@emnapi/wasi-threads/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", {}], + + "@graphql-codegen/cli/yaml": ["yaml@2.3.3", "", {}, "sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ=="], + + "@graphql-codegen/named-operations-object/@graphql-codegen/plugin-helpers": ["@graphql-codegen/plugin-helpers@3.1.2", "", { "dependencies": { "@graphql-tools/utils": "^9.0.0", "change-case-all": "1.0.15", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", "tslib": "~2.4.0" } }, "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg=="], + + "@graphql-codegen/named-operations-object/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "@graphql-codegen/typescript-urql/@graphql-codegen/plugin-helpers": ["@graphql-codegen/plugin-helpers@3.1.2", "", { "dependencies": { "@graphql-tools/utils": "^9.0.0", "change-case-all": "1.0.15", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", "tslib": "~2.4.0" } }, "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg=="], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common": ["@graphql-codegen/visitor-plugin-common@https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.1.tgz", { "dependencies": { "@graphql-codegen/plugin-helpers": "^2.7.2", "@graphql-tools/optimize": "^1.3.0", "@graphql-tools/relay-operation-optimizer": "^6.5.0", "@graphql-tools/utils": "^8.8.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "dependency-graph": "^0.11.0", "graphql-tag": "^2.11.0", "parse-filepath": "^1.0.2", "tslib": "~2.4.0" } }], + + "@graphql-codegen/typescript-urql/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "@graphql-tools/apollo-engine-loader/@whatwg-node/fetch": ["@whatwg-node/fetch@0.9.14", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.5.0", "urlpattern-polyfill": "^9.0.0" } }, "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w=="], + + "@graphql-tools/code-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@graphql-tools/executor-graphql-ws/isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", {}], + + "@graphql-tools/executor-graphql-ws/ws": ["ws@8.14.2", "", {}, "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g=="], + + "@graphql-tools/executor-http/@whatwg-node/fetch": ["@whatwg-node/fetch@0.9.14", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.5.0", "urlpattern-polyfill": "^9.0.0" } }, "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w=="], + + "@graphql-tools/executor-legacy-ws/isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", {}], + + "@graphql-tools/executor-legacy-ws/ws": ["ws@8.14.2", "", {}, "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g=="], + + "@graphql-tools/github-loader/@whatwg-node/fetch": ["@whatwg-node/fetch@0.9.14", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.5.0", "urlpattern-polyfill": "^9.0.0" } }, "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w=="], + + "@graphql-tools/graphql-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core": ["@babel/core@7.22.9", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.9", "@babel/helper-compilation-targets": "^7.22.9", "@babel/helper-module-transforms": "^7.22.9", "@babel/helpers": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.8", "@babel/types": "^7.22.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.2", "semver": "^6.3.1" } }, "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="], + + "@graphql-tools/json-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@graphql-tools/prisma-loader/@whatwg-node/fetch": ["@whatwg-node/fetch@0.9.14", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.5.0", "urlpattern-polyfill": "^9.0.0" } }, "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w=="], + + "@graphql-tools/url-loader/@whatwg-node/fetch": ["@whatwg-node/fetch@0.9.14", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.5.0", "urlpattern-polyfill": "^9.0.0" } }, "sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w=="], + + "@graphql-tools/url-loader/isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", {}], + + "@graphql-tools/url-loader/ws": ["ws@https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", {}], + + "@isaacs/cliui/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "@isaacs/cliui/strip-ansi": ["strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", { "dependencies": { "ansi-regex": "^6.0.1" } }], + + "@isaacs/cliui/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], + + "@istanbuljs/load-nyc-config/camelcase": ["camelcase@https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", {}], + + "@istanbuljs/load-nyc-config/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "@istanbuljs/load-nyc-config/js-yaml": ["js-yaml@https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", { "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" } }], + + "@jest/transform/@jest/types": ["@jest/types@https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", { "dependencies": { "@jest/schemas": "^29.4.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^17.0.8", "chalk": "^4.0.0" } }], + + "@jest/transform/convert-source-map": ["convert-source-map@https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", {}], + + "@jest/transform/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@jest/transform/write-file-atomic": ["write-file-atomic@https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" } }], + + "@joshwooding/vite-plugin-react-docgen-typescript/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "@joshwooding/vite-plugin-react-docgen-typescript/magic-string": ["magic-string@https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.13" } }], + + "@jridgewell/remapping/@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.13", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA=="], + + "@jridgewell/remapping/@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.31", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw=="], + + "@jridgewell/trace-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", {}], + + "@nicolo-ribaudo/eslint-scope-5-internals/eslint-scope": ["eslint-scope@https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }], + + "@npmcli/agent/lru-cache": ["lru-cache@10.1.0", "", {}, "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag=="], + + "@npmcli/arborist/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "@npmcli/arborist/minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }], + + "@npmcli/arborist/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@npmcli/config/ci-info": ["ci-info@4.0.0", "", {}, "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg=="], + + "@npmcli/config/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@npmcli/fs/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@npmcli/git/lru-cache": ["lru-cache@10.1.0", "", {}, "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag=="], + + "@npmcli/git/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@npmcli/git/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], + + "@npmcli/map-workspaces/glob": ["glob@10.3.10", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="], + + "@npmcli/map-workspaces/minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }], + + "@npmcli/metavuln-calculator/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "@npmcli/metavuln-calculator/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@npmcli/package-json/glob": ["glob@10.3.10", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="], + + "@npmcli/package-json/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "@npmcli/package-json/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "@npmcli/promise-spawn/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], + + "@npmcli/query/postcss-selector-parser": ["postcss-selector-parser@6.0.15", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw=="], + + "@npmcli/run-script/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], + + "@oclif/command/@oclif/config": ["@oclif/config@https://registry.npmjs.org/@oclif/config/-/config-1.18.8.tgz", { "dependencies": { "@oclif/errors": "^1.3.6", "@oclif/parser": "^3.8.10", "debug": "^4.3.4", "globby": "^11.1.0", "is-wsl": "^2.1.1", "tslib": "^2.5.0" } }], + + "@oclif/command/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/command/@oclif/plugin-help": ["@oclif/plugin-help@https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.3.1.tgz", { "dependencies": { "@oclif/command": "^1.8.15", "@oclif/config": "1.18.2", "@oclif/errors": "1.3.5", "@oclif/help": "^1.0.1", "chalk": "^4.1.2", "indent-string": "^4.0.0", "lodash": "^4.17.21", "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "widest-line": "^3.1.0", "wrap-ansi": "^6.2.0" } }], + + "@oclif/command/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@oclif/config/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/config/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/help/@oclif/config": ["@oclif/config@https://registry.npmjs.org/@oclif/config/-/config-1.18.6.tgz", { "dependencies": { "@oclif/errors": "^1.3.6", "@oclif/parser": "^3.8.9", "debug": "^4.3.4", "globby": "^11.1.0", "is-wsl": "^2.1.1", "tslib": "^2.3.1" } }], + + "@oclif/help/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/help/wrap-ansi": ["wrap-ansi@https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }], + + "@oclif/parser/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/plugin-help/@oclif/command": ["@oclif/command@https://registry.npmjs.org/@oclif/command/-/command-1.8.24.tgz", { "dependencies": { "@oclif/config": "^1.18.2", "@oclif/errors": "^1.3.6", "@oclif/help": "^1.0.1", "@oclif/parser": "^3.8.10", "debug": "^4.1.1", "semver": "^7.5.0" } }], + + "@oclif/plugin-help/@oclif/config": ["@oclif/config@https://registry.npmjs.org/@oclif/config/-/config-1.18.8.tgz", { "dependencies": { "@oclif/errors": "^1.3.6", "@oclif/parser": "^3.8.10", "debug": "^4.3.4", "globby": "^11.1.0", "is-wsl": "^2.1.1", "tslib": "^2.5.0" } }], + + "@oclif/plugin-help/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/plugin-help/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@oclif/plugin-help/wrap-ansi": ["wrap-ansi@https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz", { "dependencies": { "ansi-styles": "^3.2.0", "string-width": "^2.1.1", "strip-ansi": "^4.0.0" } }], + + "@pkgr/utils/open": ["open@https://registry.npmjs.org/open/-/open-8.4.2.tgz", { "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" } }], + + "@pnpm/network.ca-file/graceful-fs": ["graceful-fs@4.2.10", "", {}, "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="], + + "@radix-ui/number/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/primitive/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-arrow/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-collection/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-compose-refs/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-context/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-direction/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-dismissable-layer/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-focus-guards/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-focus-scope/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-id/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-popper/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-portal/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-primitive/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-roving-focus/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-select/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-separator/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-slot/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-toggle/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-toggle-group/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-toolbar/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-callback-ref/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-controllable-state/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-escape-keydown/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-layout-effect/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-previous/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-rect/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-use-size/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/react-visually-hidden/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@radix-ui/rect/@babel/runtime": ["@babel/runtime@7.22.6", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="], + + "@rc-component/color-picker/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "@rc-component/color-picker/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "@rc-component/context/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "@rc-component/context/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "@rc-component/mutate-observer/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "@rc-component/portal/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "@rc-component/tour/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "@rc-component/trigger/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "@rc-component/trigger/rc-resize-observer": ["rc-resize-observer@1.4.0", "", { "dependencies": { "@babel/runtime": "^7.20.7", "classnames": "^2.2.1", "rc-util": "^5.38.0", "resize-observer-polyfill": "^1.5.1" } }, "sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q=="], + + "@rc-component/trigger/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "@react-querybuilder/core/immer": ["immer@11.1.4", "", {}, "sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw=="], + + "@reduxjs/toolkit/immer": ["immer@11.1.4", "", {}, "sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw=="], + + "@rollup/pluginutils/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "@semantic-release/github/@semantic-release/error": ["@semantic-release/error@4.0.0", "", {}, "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ=="], + + "@semantic-release/github/aggregate-error": ["aggregate-error@5.0.0", "", { "dependencies": { "clean-stack": "^5.2.0", "indent-string": "^5.0.0" } }, "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw=="], + + "@semantic-release/npm/@semantic-release/error": ["@semantic-release/error@4.0.0", "", {}, "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ=="], + + "@semantic-release/npm/aggregate-error": ["aggregate-error@5.0.0", "", { "dependencies": { "clean-stack": "^5.2.0", "indent-string": "^5.0.0" } }, "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw=="], + + "@semantic-release/npm/execa": ["execa@8.0.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^3.0.0" } }, "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg=="], + + "@semantic-release/npm/fs-extra": ["fs-extra@11.2.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw=="], + + "@semantic-release/npm/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "@storybook/addon-docs/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/builder-manager/express": ["express@https://registry.npmjs.org/express/-/express-4.18.2.tgz", { "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }], + + "@storybook/builder-manager/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/builder-vite/express": ["express@https://registry.npmjs.org/express/-/express-4.18.2.tgz", { "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }], + + "@storybook/builder-vite/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/cli/@babel/core": ["@babel/core@7.22.9", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.9", "@babel/helper-compilation-targets": "^7.22.9", "@babel/helper-module-transforms": "^7.22.9", "@babel/helpers": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.8", "@babel/types": "^7.22.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.2", "semver": "^6.3.1" } }, "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="], + + "@storybook/cli/@babel/preset-env": ["@babel/preset-env@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-compilation-targets": "^7.22.9", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-option": "^7.22.5", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", "@babel/plugin-syntax-import-assertions": "^7.22.5", "@babel/plugin-syntax-import-attributes": "^7.22.5", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.22.5", "@babel/plugin-transform-async-generator-functions": "^7.22.7", "@babel/plugin-transform-async-to-generator": "^7.22.5", "@babel/plugin-transform-block-scoped-functions": "^7.22.5", "@babel/plugin-transform-block-scoping": "^7.22.5", "@babel/plugin-transform-class-properties": "^7.22.5", "@babel/plugin-transform-class-static-block": "^7.22.5", "@babel/plugin-transform-classes": "^7.22.6", "@babel/plugin-transform-computed-properties": "^7.22.5", "@babel/plugin-transform-destructuring": "^7.22.5", "@babel/plugin-transform-dotall-regex": "^7.22.5", "@babel/plugin-transform-duplicate-keys": "^7.22.5", "@babel/plugin-transform-dynamic-import": "^7.22.5", "@babel/plugin-transform-exponentiation-operator": "^7.22.5", "@babel/plugin-transform-export-namespace-from": "^7.22.5", "@babel/plugin-transform-for-of": "^7.22.5", "@babel/plugin-transform-function-name": "^7.22.5", "@babel/plugin-transform-json-strings": "^7.22.5", "@babel/plugin-transform-literals": "^7.22.5", "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", "@babel/plugin-transform-member-expression-literals": "^7.22.5", "@babel/plugin-transform-modules-amd": "^7.22.5", "@babel/plugin-transform-modules-commonjs": "^7.22.5", "@babel/plugin-transform-modules-systemjs": "^7.22.5", "@babel/plugin-transform-modules-umd": "^7.22.5", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", "@babel/plugin-transform-new-target": "^7.22.5", "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", "@babel/plugin-transform-numeric-separator": "^7.22.5", "@babel/plugin-transform-object-rest-spread": "^7.22.5", "@babel/plugin-transform-object-super": "^7.22.5", "@babel/plugin-transform-optional-catch-binding": "^7.22.5", "@babel/plugin-transform-optional-chaining": "^7.22.6", "@babel/plugin-transform-parameters": "^7.22.5", "@babel/plugin-transform-private-methods": "^7.22.5", "@babel/plugin-transform-private-property-in-object": "^7.22.5", "@babel/plugin-transform-property-literals": "^7.22.5", "@babel/plugin-transform-regenerator": "^7.22.5", "@babel/plugin-transform-reserved-words": "^7.22.5", "@babel/plugin-transform-shorthand-properties": "^7.22.5", "@babel/plugin-transform-spread": "^7.22.5", "@babel/plugin-transform-sticky-regex": "^7.22.5", "@babel/plugin-transform-template-literals": "^7.22.5", "@babel/plugin-transform-typeof-symbol": "^7.22.5", "@babel/plugin-transform-unicode-escapes": "^7.22.5", "@babel/plugin-transform-unicode-property-regex": "^7.22.5", "@babel/plugin-transform-unicode-regex": "^7.22.5", "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", "@babel/preset-modules": "^0.1.5", "@babel/types": "^7.22.5", "babel-plugin-polyfill-corejs2": "^0.4.4", "babel-plugin-polyfill-corejs3": "^0.8.2", "babel-plugin-polyfill-regenerator": "^0.5.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" } }, "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g=="], + + "@storybook/cli/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@storybook/cli/commander": ["commander@https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", {}], + + "@storybook/cli/express": ["express@https://registry.npmjs.org/express/-/express-4.18.2.tgz", { "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }], + + "@storybook/cli/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/cli/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@storybook/cli/read-pkg-up": ["read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }], + + "@storybook/cli/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@storybook/cli/tempy": ["tempy@https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", { "dependencies": { "del": "^6.0.0", "is-stream": "^2.0.0", "temp-dir": "^2.0.0", "type-fest": "^0.16.0", "unique-string": "^2.0.0" } }], + + "@storybook/codemod/@babel/core": ["@babel/core@7.22.9", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.9", "@babel/helper-compilation-targets": "^7.22.9", "@babel/helper-module-transforms": "^7.22.9", "@babel/helpers": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.8", "@babel/types": "^7.22.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.2", "semver": "^6.3.1" } }, "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="], + + "@storybook/codemod/@babel/preset-env": ["@babel/preset-env@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-compilation-targets": "^7.22.9", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-option": "^7.22.5", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", "@babel/plugin-syntax-import-assertions": "^7.22.5", "@babel/plugin-syntax-import-attributes": "^7.22.5", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.22.5", "@babel/plugin-transform-async-generator-functions": "^7.22.7", "@babel/plugin-transform-async-to-generator": "^7.22.5", "@babel/plugin-transform-block-scoped-functions": "^7.22.5", "@babel/plugin-transform-block-scoping": "^7.22.5", "@babel/plugin-transform-class-properties": "^7.22.5", "@babel/plugin-transform-class-static-block": "^7.22.5", "@babel/plugin-transform-classes": "^7.22.6", "@babel/plugin-transform-computed-properties": "^7.22.5", "@babel/plugin-transform-destructuring": "^7.22.5", "@babel/plugin-transform-dotall-regex": "^7.22.5", "@babel/plugin-transform-duplicate-keys": "^7.22.5", "@babel/plugin-transform-dynamic-import": "^7.22.5", "@babel/plugin-transform-exponentiation-operator": "^7.22.5", "@babel/plugin-transform-export-namespace-from": "^7.22.5", "@babel/plugin-transform-for-of": "^7.22.5", "@babel/plugin-transform-function-name": "^7.22.5", "@babel/plugin-transform-json-strings": "^7.22.5", "@babel/plugin-transform-literals": "^7.22.5", "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", "@babel/plugin-transform-member-expression-literals": "^7.22.5", "@babel/plugin-transform-modules-amd": "^7.22.5", "@babel/plugin-transform-modules-commonjs": "^7.22.5", "@babel/plugin-transform-modules-systemjs": "^7.22.5", "@babel/plugin-transform-modules-umd": "^7.22.5", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", "@babel/plugin-transform-new-target": "^7.22.5", "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", "@babel/plugin-transform-numeric-separator": "^7.22.5", "@babel/plugin-transform-object-rest-spread": "^7.22.5", "@babel/plugin-transform-object-super": "^7.22.5", "@babel/plugin-transform-optional-catch-binding": "^7.22.5", "@babel/plugin-transform-optional-chaining": "^7.22.6", "@babel/plugin-transform-parameters": "^7.22.5", "@babel/plugin-transform-private-methods": "^7.22.5", "@babel/plugin-transform-private-property-in-object": "^7.22.5", "@babel/plugin-transform-property-literals": "^7.22.5", "@babel/plugin-transform-regenerator": "^7.22.5", "@babel/plugin-transform-reserved-words": "^7.22.5", "@babel/plugin-transform-shorthand-properties": "^7.22.5", "@babel/plugin-transform-spread": "^7.22.5", "@babel/plugin-transform-sticky-regex": "^7.22.5", "@babel/plugin-transform-template-literals": "^7.22.5", "@babel/plugin-transform-typeof-symbol": "^7.22.5", "@babel/plugin-transform-unicode-escapes": "^7.22.5", "@babel/plugin-transform-unicode-property-regex": "^7.22.5", "@babel/plugin-transform-unicode-regex": "^7.22.5", "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", "@babel/preset-modules": "^0.1.5", "@babel/types": "^7.22.5", "babel-plugin-polyfill-corejs2": "^0.4.4", "babel-plugin-polyfill-corejs3": "^0.8.2", "babel-plugin-polyfill-regenerator": "^0.5.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" } }, "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g=="], + + "@storybook/codemod/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@storybook/codemod/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@storybook/core-common/@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-16.18.24.tgz", {}], + + "@storybook/core-common/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/core-server/@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-16.18.24.tgz", {}], + + "@storybook/core-server/express": ["express@https://registry.npmjs.org/express/-/express-4.18.2.tgz", { "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }], + + "@storybook/core-server/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/core-server/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@storybook/core-server/open": ["open@https://registry.npmjs.org/open/-/open-8.4.2.tgz", { "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" } }], + + "@storybook/core-server/read-pkg-up": ["read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }], + + "@storybook/core-server/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@storybook/core-server/ws": ["ws@https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", {}], + + "@storybook/csf-tools/@babel/generator": ["@babel/generator@7.22.9", "", { "dependencies": { "@babel/types": "^7.22.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" } }, "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw=="], + + "@storybook/csf-tools/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/csf-tools/@babel/traverse": ["@babel/traverse@7.22.8", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.7", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/types": "^7.22.5", "debug": "^4.1.0", "globals": "^11.1.0" } }, "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw=="], + + "@storybook/csf-tools/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@storybook/csf-tools/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/manager-api/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@storybook/react/@types/node": ["@types/node@https://registry.npmjs.org/@types/node/-/node-16.18.24.tgz", {}], + + "@storybook/react-vite/@vitejs/plugin-react": ["@vitejs/plugin-react@https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz", { "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-transform-react-jsx-self": "^7.18.6", "@babel/plugin-transform-react-jsx-source": "^7.19.6", "magic-string": "^0.27.0", "react-refresh": "^0.14.0" } }], + + "@storybook/telemetry/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "@storybook/telemetry/read-pkg-up": ["read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }], + + "@storybook/testing-library/@testing-library/dom": ["@testing-library/dom@9.3.1", "", { "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", "aria-query": "5.1.3", "chalk": "^4.1.0", "dom-accessibility-api": "^0.5.9", "lz-string": "^1.5.0", "pretty-format": "^27.0.2" } }, "sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w=="], + + "@storybook/testing-library/@testing-library/user-event": ["@testing-library/user-event@14.4.3", "", {}, "sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q=="], + + "@svgr/core/cosmiconfig": ["cosmiconfig@https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", { "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.10.0" } }], + + "@svgx/core/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "@svgx/core/parse5": ["parse5@https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", {}], + + "@svgx/core/svgo": ["svgo@https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", { "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", "css-tree": "^2.2.1", "csso": "^5.0.5", "picocolors": "^1.0.0" } }], + + "@svgx/vite-plugin-react/vite": ["vite@https://registry.npmjs.org/vite/-/vite-4.3.2.tgz", { "dependencies": { "esbuild": "^0.17.5", "postcss": "^8.4.21", "rollup": "^3.21.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }], + + "@swc/helpers/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "@testing-library/jest-dom/@babel/runtime": ["@babel/runtime@7.23.2", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg=="], + + "@testing-library/jest-dom/aria-query": ["aria-query@5.3.0", "", { "dependencies": { "dequal": "^2.0.3" } }, "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A=="], + + "@testing-library/jest-dom/chalk": ["chalk@3.0.0", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg=="], + + "@testing-library/react/@testing-library/dom": ["@testing-library/dom@9.3.1", "", { "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", "aria-query": "5.1.3", "chalk": "^4.1.0", "dom-accessibility-api": "^0.5.9", "lz-string": "^1.5.0", "pretty-format": "^27.0.2" } }, "sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w=="], + + "@testing-library/react/@types/react-dom": ["@types/react-dom@18.2.15", "", { "dependencies": { "@types/react": "*" } }, "sha512-HWMdW+7r7MR5+PZqJF6YFNSCtjz1T0dsvo/f1BV6HkV+6erD/nA7wd9NM00KVG83zf2nJ7uATPO9ttdIPvi3gg=="], + + "@tufjs/models/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "@tybys/wasm-util/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "@types/eslint/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "@types/estree-jsx/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "@types/node-fetch/form-data": ["form-data@https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }], + + "@typescript-eslint/eslint-plugin/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@typescript-eslint/experimental-utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", { "dependencies": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0" } }], + + "@typescript-eslint/experimental-utils/@typescript-eslint/types": ["@typescript-eslint/types@https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", {}], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", { "dependencies": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0", "debug": "^4.3.1", "globby": "^11.0.3", "is-glob": "^4.0.1", "semver": "^7.3.5", "tsutils": "^3.21.0" } }], + + "@typescript-eslint/experimental-utils/eslint-scope": ["eslint-scope@https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }], + + "@typescript-eslint/experimental-utils/eslint-utils": ["eslint-utils@https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", { "dependencies": { "eslint-visitor-keys": "^2.0.0" } }], + + "@typescript-eslint/typescript-estree/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@typescript-eslint/typescript-estree/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@typescript-eslint/utils/eslint-scope": ["eslint-scope@https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }], + + "@typescript-eslint/utils/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", {}], + + "@umijs/fabric/eslint": ["eslint@https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", { "dependencies": { "@babel/code-frame": "7.12.11", "@eslint/eslintrc": "^0.4.3", "@humanwhocodes/config-array": "^0.5.0", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.0.1", "doctrine": "^3.0.0", "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", "eslint-scope": "^5.1.1", "eslint-utils": "^2.1.0", "eslint-visitor-keys": "^2.0.0", "espree": "^7.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^5.1.2", "globals": "^13.6.0", "ignore": "^4.0.6", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "js-yaml": "^3.13.1", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", "progress": "^2.0.0", "regexpp": "^3.1.0", "semver": "^7.2.1", "strip-ansi": "^6.0.0", "strip-json-comments": "^3.1.0", "table": "^6.0.9", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" } }], + + "@umijs/fabric/eslint-plugin-jest": ["eslint-plugin-jest@https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.7.0.tgz", { "dependencies": { "@typescript-eslint/experimental-utils": "^4.0.1" } }], + + "@umijs/fabric/eslint-plugin-unicorn": ["eslint-plugin-unicorn@https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-20.1.0.tgz", { "dependencies": { "ci-info": "^2.0.0", "clean-regexp": "^1.0.0", "eslint-ast-utils": "^1.1.0", "eslint-template-visitor": "^2.0.0", "eslint-utils": "^2.0.0", "import-modules": "^2.0.0", "lodash": "^4.17.15", "pluralize": "^8.0.0", "read-pkg-up": "^7.0.1", "regexp-tree": "^0.1.21", "reserved-words": "^0.1.2", "safe-regex": "^2.1.1", "semver": "^7.3.2" } }], + + "@umijs/fabric/typescript": ["typescript@https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", {}], + + "@vitejs/plugin-react/@babel/core": ["@babel/core@7.29.0", "", { "dependencies": { "@babel/code-frame": "^7.29.0", "@babel/generator": "^7.29.0", "@babel/helper-compilation-targets": "^7.28.6", "@babel/helper-module-transforms": "^7.28.6", "@babel/helpers": "^7.28.6", "@babel/parser": "^7.29.0", "@babel/template": "^7.28.6", "@babel/traverse": "^7.29.0", "@babel/types": "^7.29.0", "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA=="], + + "@vitejs/plugin-react/@types/babel__core": ["@types/babel__core@7.20.5", "", { "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA=="], + + "@vitest/runner/p-limit": ["p-limit@4.0.0", "", { "dependencies": { "yocto-queue": "^1.0.0" } }, "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ=="], + + "@vitest/snapshot/magic-string": ["magic-string@0.30.5", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" } }, "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA=="], + + "@vitest/snapshot/pretty-format": ["pretty-format@29.7.0", "", { "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" } }, "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ=="], + + "@vitest/utils/pretty-format": ["pretty-format@29.7.0", "", { "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" } }, "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ=="], + + "@vitjs/runtime/react-router-dom": ["react-router-dom@https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", { "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", "loose-envify": "^1.3.1", "prop-types": "^15.6.2", "react-router": "5.3.4", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0" } }], + + "@vitjs/vit/@ant-design/icons": ["@ant-design/icons@https://registry.npmjs.org/@ant-design/icons/-/icons-4.8.0.tgz", { "dependencies": { "@ant-design/colors": "^6.0.0", "@ant-design/icons-svg": "^4.2.1", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", "rc-util": "^5.9.4" } }], + + "@vitjs/vit/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@vitjs/vit/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@windicss/plugin-utils/magic-string": ["magic-string@https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.13" } }], + + "@yarnpkg/fslib/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", {}], + + "@yarnpkg/libzip/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", {}], + + "ahooks/dayjs": ["dayjs@https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", {}], + + "ajv-formats/ajv": ["ajv@https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", { "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }], + + "ansi-escapes/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", {}], + + "antd/@ant-design/colors": ["@ant-design/colors@7.0.2", "", { "dependencies": { "@ctrl/tinycolor": "^3.6.1" } }, "sha512-7KJkhTiPiLHSu+LmMJnehfJ6242OCxSlR3xHVBecYxnMW8MS/878NXct1GqYARyL59fyeFdKRxXTfvR9SnDgJg=="], + + "antd/@ant-design/icons": ["@ant-design/icons@5.2.6", "", { "dependencies": { "@ant-design/colors": "^7.0.0", "@ant-design/icons-svg": "^4.3.0", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", "rc-util": "^5.31.1" } }, "sha512-4wn0WShF43TrggskBJPRqCD0fcHbzTYjnaoskdiJrVHg86yxoZ8ZUqsXvyn4WUqehRiFKnaclOhqk9w4Ui2KVw=="], + + "antd/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "antd/rc-resize-observer": ["rc-resize-observer@1.4.0", "", { "dependencies": { "@babel/runtime": "^7.20.7", "classnames": "^2.2.1", "rc-util": "^5.38.0", "resize-observer-polyfill": "^1.5.1" } }, "sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q=="], + + "antd/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "apache-arrow/@types/node": ["@types/node@24.12.0", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ=="], + + "apache-arrow/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], + + "autoprefixer/picocolors": ["picocolors@https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", {}], + + "autoprefixer/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", { "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" } }], + + "better-opn/open": ["open@https://registry.npmjs.org/open/-/open-8.4.2.tgz", { "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" } }], + + "bin-links/write-file-atomic": ["write-file-atomic@5.0.1", "", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="], + + "bl/readable-stream": ["readable-stream@https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }], + + "body-parser/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "body-parser/http-errors": ["http-errors@https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" } }], + + "body-parser/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", {}], + + "body-parser/qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", {}], + + "brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "browserify-zlib/pako": ["pako@https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", {}], + + "builtins/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "c8/foreground-child": ["foreground-child@https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", { "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^3.0.2" } }], + + "c8/yargs": ["yargs@https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", { "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" } }], + + "c8/yargs-parser": ["yargs-parser@https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", {}], + + "cacache/glob": ["glob@10.3.10", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="], + + "cacache/lru-cache": ["lru-cache@10.1.0", "", {}, "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag=="], + + "cacache/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "camelcase-keys/camelcase": ["camelcase@https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", {}], + + "chalk-template/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + + "chokidar/glob-parent": ["glob-parent@https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", { "dependencies": { "is-glob": "^4.0.1" } }], + + "clean-regexp/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "cli-truncate/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "cli-ux/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "cli-ux/ansi-escapes": ["ansi-escapes@https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", {}], + + "cli-ux/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "cli-ux/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "cli-ux/fs-extra": ["fs-extra@https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", { "dependencies": { "graceful-fs": "^4.1.2", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }], + + "cli-ux/indent-string": ["indent-string@https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", {}], + + "cli-ux/is-wsl": ["is-wsl@https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", {}], + + "cli-ux/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "cli-ux/strip-ansi": ["strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", { "dependencies": { "ansi-regex": "^4.1.0" } }], + + "cli-ux/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "cli-ux/supports-hyperlinks": ["supports-hyperlinks@https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz", { "dependencies": { "has-flag": "^2.0.0", "supports-color": "^5.0.0" } }], + + "cli-ux/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", {}], + + "clone-deep/is-plain-object": ["is-plain-object@https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", { "dependencies": { "isobject": "^3.0.1" } }], + + "compression/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "compression/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", {}], + + "config-chain/ini": ["ini@https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", {}], + + "connect/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "connect/finalhandler": ["finalhandler@https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "~2.3.0", "parseurl": "~1.3.3", "statuses": "~1.5.0", "unpipe": "~1.0.0" } }], + + "conventional-changelog-writer/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "cross-fetch/node-fetch": ["node-fetch@2.6.11", "", { "dependencies": { "whatwg-url": "^5.0.0" } }, "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w=="], + + "crypto-random-string/type-fest": ["type-fest@1.4.0", "", {}, "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA=="], + + "decamelize-keys/map-obj": ["map-obj@https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", {}], + + "deep-equal/isarray": ["isarray@https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", {}], + + "del/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "del/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "dom-helpers/@babel/runtime": ["@babel/runtime@7.22.15", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA=="], + + "dom-serializer/domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", {}], + + "dom-serializer/entities": ["entities@https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", {}], + + "domhandler/domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", {}], + + "domutils/domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", {}], + + "env-ci/execa": ["execa@8.0.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^3.0.0" } }, "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg=="], + + "es-get-iterator/isarray": ["isarray@https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", {}], + + "eslint-import-resolver-node/debug": ["debug@https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", { "dependencies": { "ms": "^2.1.1" } }], + + "eslint-import-resolver-typescript/globby": ["globby@https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", { "dependencies": { "dir-glob": "^3.0.1", "fast-glob": "^3.2.11", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^4.0.0" } }], + + "eslint-module-utils/debug": ["debug@https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", { "dependencies": { "ms": "^2.1.1" } }], + + "eslint-plugin-import/debug": ["debug@https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", { "dependencies": { "ms": "^2.1.1" } }], + + "eslint-plugin-import/doctrine": ["doctrine@https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", { "dependencies": { "esutils": "^2.0.2" } }], + + "eslint-plugin-react/doctrine": ["doctrine@https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", { "dependencies": { "esutils": "^2.0.2" } }], + + "eslint-plugin-react/resolve": ["resolve@https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", { "dependencies": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }], + + "eslint-plugin-storybook/@storybook/csf": ["@storybook/csf@https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", { "dependencies": { "lodash": "^4.17.15" } }], + + "eslint-plugin-unicorn/read-pkg-up": ["read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }], + + "eslint-plugin-unicorn/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "eslint-template-visitor/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", {}], + + "eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", {}], + + "espree/acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", {}], + + "estree-util-attach-comments/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "estree-util-build-jsx/estree-walker": ["estree-walker@https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", { "dependencies": { "@types/estree": "^1.0.0" } }], + + "estree-util-to-js/source-map": ["source-map@https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", {}], + + "execa/get-stream": ["get-stream@https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", {}], + + "express/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "express/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", {}], + + "express/qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", {}], + + "external-editor/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }], + + "extract-zip/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "extract-zip/mkdirp": ["mkdirp@https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", { "dependencies": { "minimist": "^1.2.6" } }], + + "fast-glob/glob-parent": ["glob-parent@https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", { "dependencies": { "is-glob": "^4.0.1" } }], + + "fast-url-parser/punycode": ["punycode@https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", {}], + + "fbjs/cross-fetch": ["cross-fetch@https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", { "dependencies": { "node-fetch": "2.6.7" } }], + + "figures/is-unicode-supported": ["is-unicode-supported@2.0.0", "", {}, "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q=="], + + "file-system-cache/fs-extra": ["fs-extra@11.1.1", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ=="], + + "filelist/minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }], + + "finalhandler/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "find-cache-dir/make-dir": ["make-dir@https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", { "dependencies": { "semver": "^6.0.0" } }], + + "find-cache-dir/pkg-dir": ["pkg-dir@https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", { "dependencies": { "find-up": "^4.0.0" } }], + + "foreground-child/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], + + "fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", {}], + + "fs-minipass/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "gauge/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], + + "giget/colorette": ["colorette@https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", {}], + + "giget/https-proxy-agent": ["https-proxy-agent@https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", { "dependencies": { "agent-base": "6", "debug": "4" } }], + + "giget/pathe": ["pathe@https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", {}], + + "giget/tar": ["tar@https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", { "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", "minipass": "^4.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" } }], + + "git-log-parser/split2": ["split2@1.0.0", "", { "dependencies": { "through2": "~2.0.0" } }, "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg=="], + + "glob/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "global-prefix/ini": ["ini@https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", {}], + + "global-prefix/which": ["which@https://registry.npmjs.org/which/-/which-1.3.1.tgz", { "dependencies": { "isexe": "^2.0.0" } }], + + "globals/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", {}], + + "globby/fast-glob": ["fast-glob@3.3.2", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }, "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow=="], + + "globby/ignore": ["ignore@5.3.0", "", {}, "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg=="], + + "globby/path-type": ["path-type@5.0.0", "", {}, "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg=="], + + "graphql-config/jiti": ["jiti@1.21.0", "", {}, "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q=="], + + "graphql-config/minimatch": ["minimatch@4.2.3", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng=="], + + "graphql-language-service-interface/graphql-config": ["graphql-config@https://registry.npmjs.org/graphql-config/-/graphql-config-4.5.0.tgz", { "dependencies": { "@graphql-tools/graphql-file-loader": "^7.3.7", "@graphql-tools/json-file-loader": "^7.3.7", "@graphql-tools/load": "^7.5.5", "@graphql-tools/merge": "^8.2.6", "@graphql-tools/url-loader": "^7.9.7", "@graphql-tools/utils": "^9.0.0", "cosmiconfig": "8.0.0", "jiti": "1.17.1", "minimatch": "4.2.3", "string-env-interpolation": "1.0.1", "tslib": "^2.4.0" } }], + + "graphql-language-service-interface/graphql-language-service-utils": ["graphql-language-service-utils@https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-2.7.1.tgz", { "dependencies": { "@types/json-schema": "7.0.9", "graphql-language-service-types": "^1.8.7", "nullthrows": "^1.0.0" } }], + + "graphql-language-service-types/graphql-config": ["graphql-config@https://registry.npmjs.org/graphql-config/-/graphql-config-4.5.0.tgz", { "dependencies": { "@graphql-tools/graphql-file-loader": "^7.3.7", "@graphql-tools/json-file-loader": "^7.3.7", "@graphql-tools/load": "^7.5.5", "@graphql-tools/merge": "^8.2.6", "@graphql-tools/url-loader": "^7.9.7", "@graphql-tools/utils": "^9.0.0", "cosmiconfig": "8.0.0", "jiti": "1.17.1", "minimatch": "4.2.3", "string-env-interpolation": "1.0.1", "tslib": "^2.4.0" } }], + + "graphql-request/cross-fetch": ["cross-fetch@https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", { "dependencies": { "node-fetch": "2.6.7" } }], + + "graphqurl/graphql": ["graphql@https://registry.npmjs.org/graphql/-/graphql-15.4.0.tgz", {}], + + "hasown/function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], + + "hast-util-to-estree/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "hast-util-to-estree/space-separated-tokens": ["space-separated-tokens@https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", {}], + + "hastscript/space-separated-tokens": ["space-separated-tokens@https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", {}], + + "hosted-git-info/lru-cache": ["lru-cache@10.1.0", "", {}, "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag=="], + + "htmlparser2/domhandler": ["domhandler@https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", { "dependencies": { "domelementtype": "1" } }], + + "htmlparser2/domutils": ["domutils@https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", { "dependencies": { "dom-serializer": "0", "domelementtype": "1" } }], + + "htmlparser2/entities": ["entities@https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", {}], + + "htmlparser2/readable-stream": ["readable-stream@https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }], + + "http-errors/depd": ["depd@https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", {}], + + "http-errors/setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", {}], + + "http-errors/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", {}], + + "i18next/@babel/runtime": ["@babel/runtime@7.22.5", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA=="], + + "i18next-browser-languagedetector/@babel/runtime": ["@babel/runtime@7.22.5", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA=="], + + "ignore-walk/minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }], + + "import-fresh/resolve-from": ["resolve-from@https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", {}], + + "init-package-json/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "inquirer/figures": ["figures@https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", { "dependencies": { "escape-string-regexp": "^1.0.5" } }], + + "isomorphic-fetch/node-fetch": ["node-fetch@https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", { "dependencies": { "whatwg-url": "^5.0.0" } }], + + "istanbul-lib-report/make-dir": ["make-dir@https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", { "dependencies": { "semver": "^6.0.0" } }], + + "jest-haste-map/@jest/types": ["@jest/types@https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", { "dependencies": { "@jest/schemas": "^29.4.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^17.0.8", "chalk": "^4.0.0" } }], + + "jest-haste-map/fsevents": ["fsevents@https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", {}], + + "jest-util/@jest/types": ["@jest/types@https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", { "dependencies": { "@jest/schemas": "^29.4.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^17.0.8", "chalk": "^4.0.0" } }], + + "jest-worker/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", { "dependencies": { "has-flag": "^4.0.0" } }], + + "jscodeshift/recast": ["recast@https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", { "dependencies": { "ast-types": "0.15.2", "esprima": "~4.0.0", "source-map": "~0.6.1", "tslib": "^2.0.1" } }], + + "jscodeshift/write-file-atomic": ["write-file-atomic@https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", { "dependencies": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", "signal-exit": "^3.0.2" } }], + + "jsdom/http-proxy-agent": ["http-proxy-agent@5.0.0", "", { "dependencies": { "@tootallnate/once": "2", "agent-base": "6", "debug": "4" } }, "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w=="], + + "jsdom/https-proxy-agent": ["https-proxy-agent@https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", { "dependencies": { "agent-base": "6", "debug": "4" } }], + + "jsdom/ws": ["ws@8.14.2", "", {}, "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g=="], + + "less/mime": ["mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", {}], + + "libnpmdiff/minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }], + + "libnpmexec/ci-info": ["ci-info@4.0.0", "", {}, "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg=="], + + "libnpmexec/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "libnpmpublish/ci-info": ["ci-info@4.0.0", "", {}, "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg=="], + + "libnpmpublish/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "libnpmversion/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "libnpmversion/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "lint-staged/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", {}], + + "lint-staged/execa": ["execa@https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.1", "human-signals": "^4.3.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^3.0.7", "strip-final-newline": "^3.0.0" } }], + + "lint-staged/listr2": ["listr2@https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", { "dependencies": { "cli-truncate": "^2.1.0", "colorette": "^2.0.19", "log-update": "^4.0.0", "p-map": "^4.0.0", "rfdc": "^1.3.0", "rxjs": "^7.8.0", "through": "^2.3.8", "wrap-ansi": "^7.0.0" } }], + + "lint-staged/yaml": ["yaml@https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", {}], + + "listr2/cli-truncate": ["cli-truncate@https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", { "dependencies": { "slice-ansi": "^3.0.0", "string-width": "^4.2.0" } }], + + "listr2/colorette": ["colorette@https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", {}], + + "load-json-file/parse-json": ["parse-json@4.0.0", "", { "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" } }, "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw=="], + + "load-json-file/pify": ["pify@3.0.0", "", {}, "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="], + + "log-update/slice-ansi": ["slice-ansi@https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }], + + "log-update/wrap-ansi": ["wrap-ansi@https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }], + + "make-dir/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "make-fetch-happen/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "marked-terminal/ansi-escapes": ["ansi-escapes@6.2.0", "", { "dependencies": { "type-fest": "^3.0.0" } }, "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw=="], + + "marked-terminal/chalk": ["chalk@5.3.0", "", {}, "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="], + + "marked-terminal/supports-hyperlinks": ["supports-hyperlinks@3.0.0", "", { "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" } }, "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA=="], + + "mdast-util-find-and-replace/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", {}], + + "mdast-util-find-and-replace/unist-util-is": ["unist-util-is@https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", { "dependencies": { "@types/unist": "^2.0.0" } }], + + "mdast-util-find-and-replace/unist-util-visit-parents": ["unist-util-visit-parents@https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" } }], + + "mdast-util-from-markdown/mdast-util-to-string": ["mdast-util-to-string@https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", { "dependencies": { "@types/mdast": "^3.0.0" } }], + + "mdast-util-phrasing/unist-util-is": ["unist-util-is@https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", { "dependencies": { "@types/unist": "^2.0.0" } }], + + "mdast-util-to-markdown/mdast-util-to-string": ["mdast-util-to-string@https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", { "dependencies": { "@types/mdast": "^3.0.0" } }], + + "mdast-util-to-markdown/unist-util-visit": ["unist-util-visit@https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", "unist-util-visit-parents": "^5.1.1" } }], + + "mem/p-is-promise": ["p-is-promise@https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", {}], + + "minimist-options/is-plain-obj": ["is-plain-obj@https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", {}], + + "minipass-collect/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "minipass-fetch/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "minipass-flush/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "minipass-json-stream/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "minipass-pipeline/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "minipass-sized/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "minizlib/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "minizlib/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "mlly/acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", {}], + + "mlly/pathe": ["pathe@https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", {}], + + "needle/debug": ["debug@https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", { "dependencies": { "ms": "^2.1.1" } }], + + "node-fetch/whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }], + + "node-gyp/glob": ["glob@10.3.10", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="], + + "node-gyp/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "node-gyp/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], + + "normalize-package-data/is-core-module": ["is-core-module@2.13.1", "", { "dependencies": { "hasown": "^2.0.0" } }, "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw=="], + + "normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "npm/chalk": ["chalk@5.3.0", "", {}, "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="], + + "npm/ci-info": ["ci-info@4.0.0", "", {}, "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg=="], + + "npm/glob": ["glob@10.3.10", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="], + + "npm/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "npm/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "npm/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "npm/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "npm/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "npm/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], + + "npm/supports-color": ["supports-color@9.4.0", "", {}, "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw=="], + + "npm/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], + + "npm/write-file-atomic": ["write-file-atomic@5.0.1", "", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="], + + "npm-install-checks/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "npm-package-arg/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "npm-pick-manifest/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "npm-registry-fetch/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "os-locale/execa": ["execa@https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", { "dependencies": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", "human-signals": "^1.1.1", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.0", "onetime": "^5.1.0", "signal-exit": "^3.0.2", "strip-final-newline": "^2.0.0" } }], + + "p-filter/p-map": ["p-map@7.0.1", "", {}, "sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw=="], + + "pacote/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "parse-conflict-json/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "parse-entities/character-entities": ["character-entities@https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", {}], + + "password-prompt/ansi-escapes": ["ansi-escapes@https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", {}], + + "password-prompt/cross-spawn": ["cross-spawn@https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", { "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" } }], + + "path-scurry/lru-cache": ["lru-cache@10.0.0", "", {}, "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw=="], + + "pkg-conf/find-up": ["find-up@2.1.0", "", { "dependencies": { "locate-path": "^2.0.0" } }, "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ=="], + + "pkg-types/pathe": ["pathe@https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", {}], + + "postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], + + "postcss/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "postcss-less/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }], + + "postcss-safe-parser/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", { "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" } }], + + "postcss-sass/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", { "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" } }], + + "postcss-scss/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", { "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" } }], + + "prettier-plugin-two-style-order/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }], + + "pretty-format/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", {}], + + "pretty-format/react-is": ["react-is@https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", {}], + + "pumpify/pump": ["pump@https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", { "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }], + + "puppeteer-core/https-proxy-agent": ["https-proxy-agent@https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", { "dependencies": { "agent-base": "5", "debug": "4" } }], + + "puppeteer-core/mime": ["mime@https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", {}], + + "puppeteer-core/rimraf": ["rimraf@https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", { "dependencies": { "glob": "^7.1.3" } }], + + "puppeteer-core/ws": ["ws@https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", { "dependencies": { "async-limiter": "~1.0.0" } }], + + "raw-body/http-errors": ["http-errors@https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", { "dependencies": { "depd": "1.1.1", "inherits": "2.0.3", "setprototypeof": "1.0.3", "statuses": ">= 1.3.1 < 2" } }], + + "raw-body/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", {}], + + "rc/ini": ["ini@https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", {}], + + "rc/strip-json-comments": ["strip-json-comments@2.0.1", "", {}, "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="], + + "rc-cascader/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-checkbox/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-checkbox/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-collapse/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-collapse/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-collapse/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "rc-dialog/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-dialog/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-drawer/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-drawer/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-dropdown/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-field-form/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-image/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-input/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-input-number/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-input-number/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-input-number/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-mentions/@babel/runtime": ["@babel/runtime@7.22.5", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA=="], + + "rc-mentions/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-menu/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-menu/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-menu/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "rc-motion/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-notification/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-notification/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-notification/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-overflow/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-pagination/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-pagination/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-picker/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-picker/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-progress/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-progress/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-rate/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-rate/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-rate/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "rc-resize-observer/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "rc-segmented/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-select/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-select/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-select/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-slider/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-slider/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-slider/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "rc-steps/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-steps/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-steps/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-switch/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-table/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-table/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-table/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-tabs/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-tabs/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-textarea/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-textarea/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "rc-tree/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-tree/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-tree/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-tree-select/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-tree-select/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-tree-select/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-upload/classnames": ["classnames@2.5.1", "", {}, "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow=="], + + "rc-upload/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "rc-virtual-list/@babel/runtime": ["@babel/runtime@7.23.8", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw=="], + + "rc-virtual-list/rc-util": ["rc-util@5.38.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^18.2.0" } }, "sha512-e4ZMs7q9XqwTuhIK7zBIVFltUtMSjphuPPQXHoHlzRzNdOwUxDejo0Zls5HYaJfRKNURcsS/ceKVULlhjBrxng=="], + + "react-docgen/commander": ["commander@https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", {}], + + "react-element-to-jsx-string/is-plain-object": ["is-plain-object@https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", {}], + + "react-element-to-jsx-string/react-is": ["react-is@https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", {}], + + "react-i18next/@babel/runtime": ["@babel/runtime@7.22.5", "", { "dependencies": { "regenerator-runtime": "^0.13.11" } }, "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA=="], + + "react-querybuilder/immer": ["immer@11.1.4", "", {}, "sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw=="], + + "react-redux/use-sync-external-store": ["use-sync-external-store@1.6.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w=="], + + "react-virtualized/@babel/runtime": ["@babel/runtime@7.22.15", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA=="], + + "read/mute-stream": ["mute-stream@1.0.0", "", {}, "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA=="], + + "read-package-json/glob": ["glob@10.3.10", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" } }, "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g=="], + + "read-package-json/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "read-package-json-fast/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.1", "", {}, "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg=="], + + "read-pkg/parse-json": ["parse-json@8.1.0", "", { "dependencies": { "@babel/code-frame": "^7.22.13", "index-to-position": "^0.1.2", "type-fest": "^4.7.1" } }, "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA=="], + + "read-pkg/type-fest": ["type-fest@4.9.0", "", {}, "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg=="], + + "read-pkg-up/type-fest": ["type-fest@4.9.0", "", {}, "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg=="], + + "readable-stream/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", {}], + + "recast/ast-types": ["ast-types@https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", { "dependencies": { "tslib": "^2.0.1" } }], + + "regjsparser/jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", {}], + + "remark/unified": ["unified@https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", { "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", "is-buffer": "^2.0.0", "is-plain-obj": "^2.0.0", "trough": "^1.0.0", "vfile": "^4.0.0" } }], + + "remark-parse/mdast-util-from-markdown": ["mdast-util-from-markdown@https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-string": "^2.0.0", "micromark": "~2.11.0", "parse-entities": "^2.0.0", "unist-util-stringify-position": "^2.0.0" } }], + + "remark-stringify/mdast-util-to-markdown": ["mdast-util-to-markdown@https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz", { "dependencies": { "@types/unist": "^2.0.0", "longest-streak": "^2.0.0", "mdast-util-to-string": "^2.0.0", "parse-entities": "^2.0.0", "repeat-string": "^1.0.0", "zwitch": "^1.0.0" } }], + + "rimraf/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "rolldown/@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-rc.9", "", {}, "sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw=="], + + "rollup-plugin-copy/globby": ["globby@10.0.1", "", { "dependencies": { "@types/glob": "^7.1.1", "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.0.3", "glob": "^7.1.3", "ignore": "^5.1.1", "merge2": "^1.2.3", "slash": "^3.0.0" } }, "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A=="], + + "rollup-plugin-visualizer/open": ["open@https://registry.npmjs.org/open/-/open-8.4.2.tgz", { "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" } }], + + "rollup-plugin-visualizer/source-map": ["source-map@https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", {}], + + "schema-utils/ajv": ["ajv@https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", { "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }], + + "semantic-release/@semantic-release/error": ["@semantic-release/error@4.0.0", "", {}, "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ=="], + + "semantic-release/aggregate-error": ["aggregate-error@5.0.0", "", { "dependencies": { "clean-stack": "^5.2.0", "indent-string": "^5.0.0" } }, "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw=="], + + "semantic-release/cosmiconfig": ["cosmiconfig@9.0.0", "", { "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" } }, "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg=="], + + "semantic-release/execa": ["execa@8.0.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^3.0.0" } }, "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg=="], + + "semantic-release/get-stream": ["get-stream@https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", {}], + + "semantic-release/marked": ["marked@11.1.1", "", {}, "sha512-EgxRjgK9axsQuUa/oKMx5DEY8oXpKJfk61rT5iY3aRlgU6QJtUcxU5OAymdhCvWvhYcd9FKmO5eQoX8m9VGJXg=="], + + "semantic-release/p-reduce": ["p-reduce@3.0.0", "", {}, "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q=="], + + "semantic-release/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "semver-diff/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "send/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "send/http-errors": ["http-errors@https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" } }], + + "send/mime": ["mime@https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", {}], + + "send/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "serve-favicon/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", {}], + + "signale/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "signale/figures": ["figures@2.0.0", "", { "dependencies": { "escape-string-regexp": "^1.0.5" } }, "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA=="], + + "simple-update-notifier/semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], + + "slice-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], + + "slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", {}], + + "sort-package-json/globby": ["globby@https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", { "dependencies": { "@types/glob": "^7.1.1", "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.0.3", "glob": "^7.1.3", "ignore": "^5.1.1", "merge2": "^1.2.3", "slash": "^3.0.0" } }], + + "sort-package-json/is-plain-obj": ["is-plain-obj@https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", {}], + + "ssri/minipass": ["minipass@7.0.4", "", {}, "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ=="], + + "string_decoder/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", {}], + + "strip-literal/acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", {}], + + "stylelint/cosmiconfig": ["cosmiconfig@https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", { "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.10.0" } }], + + "stylelint/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "stylelint/meow": ["meow@https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", { "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize": "^1.2.0", "decamelize-keys": "^1.1.0", "hard-rejection": "^2.1.0", "minimist-options": "4.1.0", "normalize-package-data": "^3.0.0", "read-pkg-up": "^7.0.1", "redent": "^3.0.0", "trim-newlines": "^3.0.0", "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" } }], + + "stylelint/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", { "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" } }], + + "stylelint/postcss-less": ["postcss-less@https://registry.npmjs.org/postcss-less/-/postcss-less-3.1.4.tgz", { "dependencies": { "postcss": "^7.0.14" } }], + + "stylelint/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "subscriptions-transport-ws/symbol-observable": ["symbol-observable@https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", {}], + + "subscriptions-transport-ws/ws": ["ws@https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", { "dependencies": { "async-limiter": "~1.0.0" } }], + + "sugarss/postcss": ["postcss@https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", { "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" } }], + + "svgo/commander": ["commander@https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", {}], + + "table/ajv": ["ajv@https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", { "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }], + + "table/slice-ansi": ["slice-ansi@https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }], + + "tar/fs-minipass": ["fs-minipass@https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", { "dependencies": { "minipass": "^3.0.0" } }], + + "tar/minipass": ["minipass@5.0.0", "", {}, "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="], + + "tar/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "tar-fs/chownr": ["chownr@https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", {}], + + "tar-stream/readable-stream": ["readable-stream@https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }], + + "temp/rimraf": ["rimraf@https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", { "dependencies": { "glob": "^7.1.3" } }], + + "tempy/is-stream": ["is-stream@https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", {}], + + "test-exclude/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "tinyglobby/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="], + + "tsconfig-paths/json5": ["json5@https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", { "dependencies": { "minimist": "^1.2.0" } }], + + "tsutils/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", {}], + + "unified/is-buffer": ["is-buffer@https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", {}], + + "unimport/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", {}], + + "unimport/pathe": ["pathe@https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", {}], + + "unixify/normalize-path": ["normalize-path@https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", { "dependencies": { "remove-trailing-separator": "^1.0.1" } }], + + "unplugin/acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", {}], + + "unplugin-auto-import/minimatch": ["minimatch@https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", { "dependencies": { "brace-expansion": "^2.0.1" } }], + + "uri-js/punycode": ["punycode@https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", {}], + + "uvu/kleur": ["kleur@https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", {}], + + "vfile/is-buffer": ["is-buffer@https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", {}], + + "vite/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="], + + "vite-node/mlly": ["mlly@1.4.2", "", { "dependencies": { "acorn": "^8.10.0", "pathe": "^1.1.1", "pkg-types": "^1.0.3", "ufo": "^1.3.0" } }, "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg=="], + + "vite-node/vite": ["vite@4.5.0", "", { "dependencies": { "esbuild": "^0.18.10", "postcss": "^8.4.27", "rollup": "^3.27.1" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw=="], + + "vite-plugin-mock/esbuild": ["esbuild@https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", { "optionalDependencies": { "@esbuild/linux-loong64": "0.14.54", "esbuild-android-64": "0.14.54", "esbuild-android-arm64": "0.14.54", "esbuild-darwin-64": "0.14.54", "esbuild-darwin-arm64": "0.14.54", "esbuild-freebsd-64": "0.14.54", "esbuild-freebsd-arm64": "0.14.54", "esbuild-linux-32": "0.14.54", "esbuild-linux-64": "0.14.54", "esbuild-linux-arm": "0.14.54", "esbuild-linux-arm64": "0.14.54", "esbuild-linux-mips64le": "0.14.54", "esbuild-linux-ppc64le": "0.14.54", "esbuild-linux-riscv64": "0.14.54", "esbuild-linux-s390x": "0.14.54", "esbuild-netbsd-64": "0.14.54", "esbuild-openbsd-64": "0.14.54", "esbuild-sunos-64": "0.14.54", "esbuild-windows-32": "0.14.54", "esbuild-windows-64": "0.14.54", "esbuild-windows-arm64": "0.14.54" } }], + + "vite-plugin-mock/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", {}], + + "vitest/acorn": ["acorn@8.11.2", "", {}, "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w=="], + + "vitest/acorn-walk": ["acorn-walk@8.3.0", "", {}, "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA=="], + + "vitest/magic-string": ["magic-string@0.30.5", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" } }, "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA=="], + + "vitest/vite": ["vite@4.5.0", "", { "dependencies": { "esbuild": "^0.18.10", "postcss": "^8.4.27", "rollup": "^3.27.1" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw=="], + + "@ant-design/cssinjs/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@ant-design/react-slick/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "@ardatan/relay-compiler/yargs/cliui": ["cliui@https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" } }], + + "@ardatan/relay-compiler/yargs/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "@ardatan/relay-compiler/yargs/y18n": ["y18n@https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", {}], + + "@ardatan/relay-compiler/yargs/yargs-parser": ["yargs-parser@https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", { "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" } }], + + "@ardatan/sync-fetch/node-fetch/whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }], + + "@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.22.9", "", { "dependencies": { "@babel/helper-function-name": "^7.22.5", "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.22.5", "", {}, "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/register/find-cache-dir/pkg-dir": ["pkg-dir@https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", { "dependencies": { "find-up": "^3.0.0" } }], + + "@graphql-codegen/named-operations-object/@graphql-codegen/plugin-helpers/@graphql-tools/utils": ["@graphql-tools/utils@https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }], + + "@graphql-codegen/named-operations-object/@graphql-codegen/plugin-helpers/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", {}], + + "@graphql-codegen/typescript-urql/@graphql-codegen/plugin-helpers/@graphql-tools/utils": ["@graphql-tools/utils@https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/plugin-helpers/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", {}], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-codegen/plugin-helpers": ["@graphql-codegen/plugin-helpers@https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz", { "dependencies": { "@graphql-tools/utils": "^8.8.0", "change-case-all": "1.0.14", "common-tags": "1.8.2", "import-from": "4.0.0", "lodash": "~4.17.0", "tslib": "~2.4.0" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/optimize": ["@graphql-tools/optimize@https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", { "dependencies": { "tslib": "^2.4.0" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/relay-operation-optimizer": ["@graphql-tools/relay-operation-optimizer@https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", { "dependencies": { "@ardatan/relay-compiler": "12.0.0", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/utils": ["@graphql-tools/utils@https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz", { "dependencies": { "tslib": "^2.4.0" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/change-case-all": ["change-case-all@https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz", { "dependencies": { "change-case": "^4.1.2", "is-lower-case": "^2.0.2", "is-upper-case": "^2.0.2", "lower-case": "^2.0.2", "lower-case-first": "^2.0.2", "sponge-case": "^1.0.1", "swap-case": "^2.0.2", "title-case": "^3.0.3", "upper-case": "^2.0.2", "upper-case-first": "^2.0.2" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", {}], + + "@graphql-tools/apollo-engine-loader/@whatwg-node/fetch/@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.5.0", "", { "dependencies": { "@whatwg-node/events": "^0.1.0", "busboy": "^1.6.0", "fast-querystring": "^1.1.1", "fast-url-parser": "^1.1.3", "tslib": "^2.3.1" } }, "sha512-q76lDAafvHNGWedNAVHrz/EyYTS8qwRLcwne8SJQdRN5P3HydxU6XROFvJfTML6KZXQX2FDdGY4/SnaNyd7M0Q=="], + + "@graphql-tools/apollo-engine-loader/@whatwg-node/fetch/urlpattern-polyfill": ["urlpattern-polyfill@9.0.0", "", {}, "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g=="], + + "@graphql-tools/code-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@graphql-tools/executor-http/@whatwg-node/fetch/@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.5.0", "", { "dependencies": { "@whatwg-node/events": "^0.1.0", "busboy": "^1.6.0", "fast-querystring": "^1.1.1", "fast-url-parser": "^1.1.3", "tslib": "^2.3.1" } }, "sha512-q76lDAafvHNGWedNAVHrz/EyYTS8qwRLcwne8SJQdRN5P3HydxU6XROFvJfTML6KZXQX2FDdGY4/SnaNyd7M0Q=="], + + "@graphql-tools/executor-http/@whatwg-node/fetch/urlpattern-polyfill": ["urlpattern-polyfill@9.0.0", "", {}, "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g=="], + + "@graphql-tools/github-loader/@whatwg-node/fetch/@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.5.0", "", { "dependencies": { "@whatwg-node/events": "^0.1.0", "busboy": "^1.6.0", "fast-querystring": "^1.1.1", "fast-url-parser": "^1.1.3", "tslib": "^2.3.1" } }, "sha512-q76lDAafvHNGWedNAVHrz/EyYTS8qwRLcwne8SJQdRN5P3HydxU6XROFvJfTML6KZXQX2FDdGY4/SnaNyd7M0Q=="], + + "@graphql-tools/github-loader/@whatwg-node/fetch/urlpattern-polyfill": ["urlpattern-polyfill@9.0.0", "", {}, "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g=="], + + "@graphql-tools/graphql-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/generator": ["@babel/generator@7.22.9", "", { "dependencies": { "@babel/types": "^7.22.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" } }, "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", "browserslist": "^4.21.9", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helpers": ["@babel/helpers@7.22.6", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.6", "@babel/types": "^7.22.5" } }, "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/traverse": ["@babel/traverse@7.22.8", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.7", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/types": "^7.22.5", "debug": "^4.1.0", "globals": "^11.1.0" } }, "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@graphql-tools/json-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@graphql-tools/prisma-loader/@whatwg-node/fetch/@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.5.0", "", { "dependencies": { "@whatwg-node/events": "^0.1.0", "busboy": "^1.6.0", "fast-querystring": "^1.1.1", "fast-url-parser": "^1.1.3", "tslib": "^2.3.1" } }, "sha512-q76lDAafvHNGWedNAVHrz/EyYTS8qwRLcwne8SJQdRN5P3HydxU6XROFvJfTML6KZXQX2FDdGY4/SnaNyd7M0Q=="], + + "@graphql-tools/prisma-loader/@whatwg-node/fetch/urlpattern-polyfill": ["urlpattern-polyfill@9.0.0", "", {}, "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g=="], + + "@graphql-tools/url-loader/@whatwg-node/fetch/@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.5.0", "", { "dependencies": { "@whatwg-node/events": "^0.1.0", "busboy": "^1.6.0", "fast-querystring": "^1.1.1", "fast-url-parser": "^1.1.3", "tslib": "^2.3.1" } }, "sha512-q76lDAafvHNGWedNAVHrz/EyYTS8qwRLcwne8SJQdRN5P3HydxU6XROFvJfTML6KZXQX2FDdGY4/SnaNyd7M0Q=="], + + "@graphql-tools/url-loader/@whatwg-node/fetch/urlpattern-polyfill": ["urlpattern-polyfill@9.0.0", "", {}, "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g=="], + + "@isaacs/cliui/string-width/emoji-regex": ["emoji-regex@https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", {}], + + "@isaacs/cliui/strip-ansi/ansi-regex": ["ansi-regex@https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", {}], + + "@isaacs/cliui/wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], + + "@istanbuljs/load-nyc-config/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "@istanbuljs/load-nyc-config/js-yaml/argparse": ["argparse@https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", { "dependencies": { "sprintf-js": "~1.0.2" } }], + + "@jest/transform/@jest/types/@jest/schemas": ["@jest/schemas@https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", { "dependencies": { "@sinclair/typebox": "^0.25.16" } }], + + "@jest/transform/@jest/types/@types/yargs": ["@types/yargs@https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", { "dependencies": { "@types/yargs-parser": "*" } }], + + "@jridgewell/remapping/@jridgewell/gen-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@jridgewell/remapping/@jridgewell/trace-mapping/@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], + + "@jridgewell/remapping/@jridgewell/trace-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@nicolo-ribaudo/eslint-scope-5-internals/eslint-scope/estraverse": ["estraverse@https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", {}], + + "@npmcli/arborist/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "@npmcli/arborist/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@npmcli/config/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@npmcli/fs/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@npmcli/git/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@npmcli/git/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], + + "@npmcli/map-workspaces/glob/jackspeak": ["jackspeak@2.3.6", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="], + + "@npmcli/map-workspaces/glob/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "@npmcli/map-workspaces/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "@npmcli/metavuln-calculator/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@npmcli/package-json/glob/jackspeak": ["jackspeak@2.3.6", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="], + + "@npmcli/package-json/glob/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "@npmcli/package-json/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@npmcli/promise-spawn/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], + + "@npmcli/run-script/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], + + "@oclif/command/@oclif/config/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@oclif/command/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/command": ["@oclif/command@https://registry.npmjs.org/@oclif/command/-/command-1.8.24.tgz", { "dependencies": { "@oclif/config": "^1.18.2", "@oclif/errors": "^1.3.6", "@oclif/help": "^1.0.1", "@oclif/parser": "^3.8.10", "debug": "^4.1.1", "semver": "^7.5.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/config": ["@oclif/config@https://registry.npmjs.org/@oclif/config/-/config-1.18.2.tgz", { "dependencies": { "@oclif/errors": "^1.3.3", "@oclif/parser": "^3.8.0", "debug": "^4.1.1", "globby": "^11.0.1", "is-wsl": "^2.1.1", "tslib": "^2.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.5.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }], + + "@oclif/command/@oclif/plugin-help/wrap-ansi": ["wrap-ansi@https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }], + + "@oclif/command/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@oclif/config/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/config/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@oclif/help/@oclif/config/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@oclif/help/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/help/@oclif/errors/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "@oclif/parser/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/plugin-help/@oclif/command/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@oclif/plugin-help/@oclif/config/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@oclif/plugin-help/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/plugin-help/@oclif/errors/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "@oclif/plugin-help/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@oclif/plugin-help/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@oclif/plugin-help/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@oclif/plugin-help/wrap-ansi/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@oclif/plugin-help/wrap-ansi/string-width": ["string-width@https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", { "dependencies": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" } }], + + "@oclif/plugin-help/wrap-ansi/strip-ansi": ["strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", { "dependencies": { "ansi-regex": "^3.0.0" } }], + + "@rc-component/color-picker/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "@rc-component/color-picker/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "@rc-component/color-picker/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@rc-component/context/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "@rc-component/context/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "@rc-component/mutate-observer/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@rc-component/portal/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@rc-component/tour/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@rc-component/trigger/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "@rc-component/trigger/rc-resize-observer/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "@rc-component/trigger/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "@rc-component/trigger/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@semantic-release/github/aggregate-error/clean-stack": ["clean-stack@5.2.0", "", { "dependencies": { "escape-string-regexp": "5.0.0" } }, "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ=="], + + "@semantic-release/github/aggregate-error/indent-string": ["indent-string@5.0.0", "", {}, "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg=="], + + "@semantic-release/npm/aggregate-error/clean-stack": ["clean-stack@5.2.0", "", { "dependencies": { "escape-string-regexp": "5.0.0" } }, "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ=="], + + "@semantic-release/npm/aggregate-error/indent-string": ["indent-string@5.0.0", "", {}, "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg=="], + + "@semantic-release/npm/execa/get-stream": ["get-stream@8.0.1", "", {}, "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA=="], + + "@semantic-release/npm/execa/human-signals": ["human-signals@5.0.0", "", {}, "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ=="], + + "@semantic-release/npm/execa/is-stream": ["is-stream@https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", {}], + + "@semantic-release/npm/execa/npm-run-path": ["npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", { "dependencies": { "path-key": "^4.0.0" } }], + + "@semantic-release/npm/execa/onetime": ["onetime@https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", { "dependencies": { "mimic-fn": "^4.0.0" } }], + + "@semantic-release/npm/execa/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + + "@semantic-release/npm/execa/strip-final-newline": ["strip-final-newline@https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", {}], + + "@semantic-release/npm/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@semantic-release/npm/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@semantic-release/npm/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@storybook/addon-docs/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/addon-docs/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/builder-manager/express/body-parser": ["body-parser@https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", { "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" } }], + + "@storybook/builder-manager/express/content-disposition": ["content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", { "dependencies": { "safe-buffer": "5.2.1" } }], + + "@storybook/builder-manager/express/cookie": ["cookie@https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", {}], + + "@storybook/builder-manager/express/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "@storybook/builder-manager/express/depd": ["depd@https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", {}], + + "@storybook/builder-manager/express/finalhandler": ["finalhandler@https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }], + + "@storybook/builder-manager/express/on-finished": ["on-finished@https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", { "dependencies": { "ee-first": "1.1.1" } }], + + "@storybook/builder-manager/express/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", {}], + + "@storybook/builder-manager/express/qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", { "dependencies": { "side-channel": "^1.0.4" } }], + + "@storybook/builder-manager/express/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "@storybook/builder-manager/express/send": ["send@https://registry.npmjs.org/send/-/send-0.18.0.tgz", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }], + + "@storybook/builder-manager/express/serve-static": ["serve-static@https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }], + + "@storybook/builder-manager/express/setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", {}], + + "@storybook/builder-manager/express/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", {}], + + "@storybook/builder-manager/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/builder-manager/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/builder-vite/express/body-parser": ["body-parser@https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", { "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" } }], + + "@storybook/builder-vite/express/content-disposition": ["content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", { "dependencies": { "safe-buffer": "5.2.1" } }], + + "@storybook/builder-vite/express/cookie": ["cookie@https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", {}], + + "@storybook/builder-vite/express/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "@storybook/builder-vite/express/depd": ["depd@https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", {}], + + "@storybook/builder-vite/express/finalhandler": ["finalhandler@https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }], + + "@storybook/builder-vite/express/on-finished": ["on-finished@https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", { "dependencies": { "ee-first": "1.1.1" } }], + + "@storybook/builder-vite/express/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", {}], + + "@storybook/builder-vite/express/qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", { "dependencies": { "side-channel": "^1.0.4" } }], + + "@storybook/builder-vite/express/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "@storybook/builder-vite/express/send": ["send@https://registry.npmjs.org/send/-/send-0.18.0.tgz", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }], + + "@storybook/builder-vite/express/serve-static": ["serve-static@https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }], + + "@storybook/builder-vite/express/setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", {}], + + "@storybook/builder-vite/express/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", {}], + + "@storybook/builder-vite/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/builder-vite/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/cli/@babel/core/@babel/generator": ["@babel/generator@7.22.9", "", { "dependencies": { "@babel/types": "^7.22.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" } }, "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw=="], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", "browserslist": "^4.21.9", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="], + + "@storybook/cli/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/cli/@babel/core/@babel/helpers": ["@babel/helpers@7.22.6", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.6", "@babel/types": "^7.22.5" } }, "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA=="], + + "@storybook/cli/@babel/core/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/cli/@babel/core/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/cli/@babel/core/@babel/traverse": ["@babel/traverse@7.22.8", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.7", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/types": "^7.22.5", "debug": "^4.1.0", "globals": "^11.1.0" } }, "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw=="], + + "@storybook/cli/@babel/core/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@storybook/cli/@babel/preset-env/@babel/compat-data": ["@babel/compat-data@7.22.9", "", {}, "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="], + + "@storybook/cli/@babel/preset-env/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", "browserslist": "^4.21.9", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="], + + "@storybook/cli/@babel/preset-env/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@storybook/cli/@babel/preset-env/@babel/helper-validator-option": ["@babel/helper-validator-option@7.22.5", "", {}, "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-transform-optional-chaining": "^7.22.5" } }, "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-proposal-private-property-in-object": ["@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", "", {}, "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.22.5", "", { "dependencies": { "@babel/helper-module-imports": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-remap-async-to-generator": "^7.22.5" } }, "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.22.6", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" } }, "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/template": "^7.22.5" } }, "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.22.5", "", { "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.22.5", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.22.5", "", { "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.22.5", "", { "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-simple-access": "^7.22.5" } }, "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.22.5", "", { "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.22.5", "", { "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.5" } }, "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "regenerator-transform": "^0.15.1" } }, "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg=="], + + "@storybook/cli/@babel/preset-env/babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@0.4.5", "", { "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.4.2", "semver": "^6.3.1" } }, "sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg=="], + + "@storybook/cli/@babel/preset-env/babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.8.3", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.4.2", "core-js-compat": "^3.31.0" } }, "sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA=="], + + "@storybook/cli/@babel/preset-env/babel-plugin-polyfill-regenerator": ["babel-plugin-polyfill-regenerator@0.5.2", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.4.2" } }, "sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA=="], + + "@storybook/cli/@babel/preset-env/core-js-compat": ["core-js-compat@3.31.1", "", { "dependencies": { "browserslist": "^4.21.9" } }, "sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA=="], + + "@storybook/cli/@babel/preset-env/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@storybook/cli/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@storybook/cli/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/express/body-parser": ["body-parser@https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", { "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" } }], + + "@storybook/cli/express/content-disposition": ["content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", { "dependencies": { "safe-buffer": "5.2.1" } }], + + "@storybook/cli/express/cookie": ["cookie@https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", {}], + + "@storybook/cli/express/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "@storybook/cli/express/depd": ["depd@https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", {}], + + "@storybook/cli/express/finalhandler": ["finalhandler@https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }], + + "@storybook/cli/express/on-finished": ["on-finished@https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", { "dependencies": { "ee-first": "1.1.1" } }], + + "@storybook/cli/express/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", {}], + + "@storybook/cli/express/qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", { "dependencies": { "side-channel": "^1.0.4" } }], + + "@storybook/cli/express/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "@storybook/cli/express/send": ["send@https://registry.npmjs.org/send/-/send-0.18.0.tgz", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }], + + "@storybook/cli/express/serve-static": ["serve-static@https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }], + + "@storybook/cli/express/setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", {}], + + "@storybook/cli/express/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", {}], + + "@storybook/cli/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/cli/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/cli/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@storybook/cli/read-pkg-up/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "@storybook/cli/read-pkg-up/read-pkg": ["read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }], + + "@storybook/cli/read-pkg-up/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", {}], + + "@storybook/cli/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@storybook/cli/tempy/temp-dir": ["temp-dir@https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", {}], + + "@storybook/cli/tempy/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", {}], + + "@storybook/cli/tempy/unique-string": ["unique-string@https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", { "dependencies": { "crypto-random-string": "^2.0.0" } }], + + "@storybook/codemod/@babel/core/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/codemod/@babel/core/@babel/generator": ["@babel/generator@7.22.9", "", { "dependencies": { "@babel/types": "^7.22.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" } }, "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw=="], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", "browserslist": "^4.21.9", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="], + + "@storybook/codemod/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/codemod/@babel/core/@babel/helpers": ["@babel/helpers@7.22.6", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/traverse": "^7.22.6", "@babel/types": "^7.22.5" } }, "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA=="], + + "@storybook/codemod/@babel/core/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/codemod/@babel/core/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/codemod/@babel/core/@babel/traverse": ["@babel/traverse@7.22.8", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/generator": "^7.22.7", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/parser": "^7.22.7", "@babel/types": "^7.22.5", "debug": "^4.1.0", "globals": "^11.1.0" } }, "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw=="], + + "@storybook/codemod/@babel/core/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@storybook/codemod/@babel/preset-env/@babel/compat-data": ["@babel/compat-data@7.22.9", "", {}, "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.22.9", "", { "dependencies": { "@babel/compat-data": "^7.22.9", "@babel/helper-validator-option": "^7.22.5", "browserslist": "^4.21.9", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="], + + "@storybook/codemod/@babel/preset-env/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.22.5", "", {}, "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="], + + "@storybook/codemod/@babel/preset-env/@babel/helper-validator-option": ["@babel/helper-validator-option@7.22.5", "", {}, "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-transform-optional-chaining": "^7.22.5" } }, "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-proposal-private-property-in-object": ["@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", "", {}, "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.22.5", "", { "dependencies": { "@babel/helper-module-imports": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-remap-async-to-generator": "^7.22.5" } }, "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.22.6", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" } }, "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/template": "^7.22.5" } }, "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.22.5", "", { "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.22.5", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.5", "@babel/helper-function-name": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.22.5", "", { "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.22.5", "", { "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-simple-access": "^7.22.5" } }, "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.22.5", "", { "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.22.5", "", { "dependencies": { "@babel/helper-module-transforms": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.5" } }, "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "regenerator-transform": "^0.15.1" } }, "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.22.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.22.5", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" } }, "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg=="], + + "@storybook/codemod/@babel/preset-env/babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@0.4.5", "", { "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.4.2", "semver": "^6.3.1" } }, "sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg=="], + + "@storybook/codemod/@babel/preset-env/babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.8.3", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.4.2", "core-js-compat": "^3.31.0" } }, "sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA=="], + + "@storybook/codemod/@babel/preset-env/babel-plugin-polyfill-regenerator": ["babel-plugin-polyfill-regenerator@0.5.2", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.4.2" } }, "sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA=="], + + "@storybook/codemod/@babel/preset-env/core-js-compat": ["core-js-compat@3.31.1", "", { "dependencies": { "browserslist": "^4.21.9" } }, "sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA=="], + + "@storybook/codemod/@babel/preset-env/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@storybook/codemod/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@storybook/codemod/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@storybook/core-common/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/core-common/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/core-server/express/body-parser": ["body-parser@https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", { "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" } }], + + "@storybook/core-server/express/content-disposition": ["content-disposition@https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", { "dependencies": { "safe-buffer": "5.2.1" } }], + + "@storybook/core-server/express/cookie": ["cookie@https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", {}], + + "@storybook/core-server/express/debug": ["debug@https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", { "dependencies": { "ms": "2.0.0" } }], + + "@storybook/core-server/express/depd": ["depd@https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", {}], + + "@storybook/core-server/express/finalhandler": ["finalhandler@https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }], + + "@storybook/core-server/express/on-finished": ["on-finished@https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", { "dependencies": { "ee-first": "1.1.1" } }], + + "@storybook/core-server/express/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", {}], + + "@storybook/core-server/express/qs": ["qs@https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", { "dependencies": { "side-channel": "^1.0.4" } }], + + "@storybook/core-server/express/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "@storybook/core-server/express/send": ["send@https://registry.npmjs.org/send/-/send-0.18.0.tgz", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }], + + "@storybook/core-server/express/serve-static": ["serve-static@https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }], + + "@storybook/core-server/express/setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", {}], + + "@storybook/core-server/express/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", {}], + + "@storybook/core-server/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/core-server/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/core-server/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@storybook/core-server/read-pkg-up/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "@storybook/core-server/read-pkg-up/read-pkg": ["read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }], + + "@storybook/core-server/read-pkg-up/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", {}], + + "@storybook/core-server/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@storybook/csf-tools/@babel/generator/jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", {}], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/csf-tools/@babel/traverse/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/csf-tools/@babel/traverse/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/csf-tools/@babel/traverse/@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="], + + "@storybook/csf-tools/@babel/traverse/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/csf-tools/@babel/traverse/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@storybook/csf-tools/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@storybook/csf-tools/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/csf-tools/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/csf-tools/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/manager-api/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@storybook/react-vite/@vitejs/plugin-react/@babel/plugin-transform-react-jsx-self": ["@babel/plugin-transform-react-jsx-self@https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.21.0.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" } }], + + "@storybook/react-vite/@vitejs/plugin-react/@babel/plugin-transform-react-jsx-source": ["@babel/plugin-transform-react-jsx-source@https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz", { "dependencies": { "@babel/helper-plugin-utils": "^7.19.0" } }], + + "@storybook/react-vite/@vitejs/plugin-react/magic-string": ["magic-string@https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.13" } }], + + "@storybook/react-vite/@vitejs/plugin-react/react-refresh": ["react-refresh@https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", {}], + + "@storybook/telemetry/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "@storybook/telemetry/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "@storybook/telemetry/read-pkg-up/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "@storybook/telemetry/read-pkg-up/read-pkg": ["read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }], + + "@storybook/telemetry/read-pkg-up/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", {}], + + "@svgr/core/cosmiconfig/yaml": ["yaml@https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", {}], + + "@svgx/core/svgo/commander": ["commander@https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", {}], + + "@svgx/core/svgo/css-select": ["css-select@https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", { "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" } }], + + "@svgx/core/svgo/css-tree": ["css-tree@https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", { "dependencies": { "mdn-data": "2.0.30", "source-map-js": "^1.0.1" } }], + + "@svgx/core/svgo/csso": ["csso@https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", { "dependencies": { "css-tree": "~2.2.0" } }], + + "@svgx/vite-plugin-react/vite/esbuild": ["esbuild@0.17.19", "", { "optionalDependencies": { "@esbuild/android-arm": "0.17.19", "@esbuild/android-arm64": "0.17.19", "@esbuild/android-x64": "0.17.19", "@esbuild/darwin-arm64": "0.17.19", "@esbuild/darwin-x64": "0.17.19", "@esbuild/freebsd-arm64": "0.17.19", "@esbuild/freebsd-x64": "0.17.19", "@esbuild/linux-arm": "0.17.19", "@esbuild/linux-arm64": "0.17.19", "@esbuild/linux-ia32": "0.17.19", "@esbuild/linux-loong64": "0.17.19", "@esbuild/linux-mips64el": "0.17.19", "@esbuild/linux-ppc64": "0.17.19", "@esbuild/linux-riscv64": "0.17.19", "@esbuild/linux-s390x": "0.17.19", "@esbuild/linux-x64": "0.17.19", "@esbuild/netbsd-x64": "0.17.19", "@esbuild/openbsd-x64": "0.17.19", "@esbuild/sunos-x64": "0.17.19", "@esbuild/win32-arm64": "0.17.19", "@esbuild/win32-ia32": "0.17.19", "@esbuild/win32-x64": "0.17.19" } }, "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw=="], + + "@svgx/vite-plugin-react/vite/postcss": ["postcss@8.4.30", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g=="], + + "@testing-library/jest-dom/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "@tufjs/models/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "@typescript-eslint/eslint-plugin/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@typescript-eslint/experimental-utils/@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", { "dependencies": { "@typescript-eslint/types": "4.33.0", "eslint-visitor-keys": "^2.0.0" } }], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", { "dependencies": { "@typescript-eslint/types": "4.33.0", "eslint-visitor-keys": "^2.0.0" } }], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@typescript-eslint/experimental-utils/eslint-scope/estraverse": ["estraverse@https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", {}], + + "@typescript-eslint/experimental-utils/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", {}], + + "@typescript-eslint/typescript-estree/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@typescript-eslint/typescript-estree/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@typescript-eslint/utils/eslint-scope/estraverse": ["estraverse@https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", {}], + + "@typescript-eslint/utils/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@umijs/fabric/eslint/@babel/code-frame": ["@babel/code-frame@https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", { "dependencies": { "@babel/highlight": "^7.10.4" } }], + + "@umijs/fabric/eslint/@eslint/eslintrc": ["@eslint/eslintrc@https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.1.1", "espree": "^7.3.0", "globals": "^13.9.0", "ignore": "^4.0.6", "import-fresh": "^3.2.1", "js-yaml": "^3.13.1", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" } }], + + "@umijs/fabric/eslint/@humanwhocodes/config-array": ["@humanwhocodes/config-array@https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", { "dependencies": { "@humanwhocodes/object-schema": "^1.2.0", "debug": "^4.1.1", "minimatch": "^3.0.4" } }], + + "@umijs/fabric/eslint/eslint-scope": ["eslint-scope@https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }], + + "@umijs/fabric/eslint/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", {}], + + "@umijs/fabric/eslint/espree": ["espree@https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", { "dependencies": { "acorn": "^7.4.0", "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^1.3.0" } }], + + "@umijs/fabric/eslint/glob-parent": ["glob-parent@https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", { "dependencies": { "is-glob": "^4.0.1" } }], + + "@umijs/fabric/eslint/ignore": ["ignore@https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", {}], + + "@umijs/fabric/eslint/js-yaml": ["js-yaml@https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", { "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" } }], + + "@umijs/fabric/eslint/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@umijs/fabric/eslint-plugin-unicorn/ci-info": ["ci-info@https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up": ["read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }], + + "@umijs/fabric/eslint-plugin-unicorn/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "@vitejs/plugin-react/@babel/core/@babel/code-frame": ["@babel/code-frame@7.29.0", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw=="], + + "@vitejs/plugin-react/@babel/core/@babel/generator": ["@babel/generator@7.29.1", "", { "dependencies": { "@babel/parser": "^7.29.0", "@babel/types": "^7.29.0", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" } }, "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.28.6", "", { "dependencies": { "@babel/compat-data": "^7.28.6", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.28.6", "", { "dependencies": { "@babel/helper-module-imports": "^7.28.6", "@babel/helper-validator-identifier": "^7.28.5", "@babel/traverse": "^7.28.6" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helpers": ["@babel/helpers@7.28.6", "", { "dependencies": { "@babel/template": "^7.28.6", "@babel/types": "^7.28.6" } }, "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw=="], + + "@vitejs/plugin-react/@babel/core/@babel/parser": ["@babel/parser@7.29.0", "", { "dependencies": { "@babel/types": "^7.29.0" }, "bin": "./bin/babel-parser.js" }, "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww=="], + + "@vitejs/plugin-react/@babel/core/@babel/template": ["@babel/template@7.28.6", "", { "dependencies": { "@babel/code-frame": "^7.28.6", "@babel/parser": "^7.28.6", "@babel/types": "^7.28.6" } }, "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ=="], + + "@vitejs/plugin-react/@babel/core/@babel/traverse": ["@babel/traverse@7.29.0", "", { "dependencies": { "@babel/code-frame": "^7.29.0", "@babel/generator": "^7.29.0", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.29.0", "@babel/template": "^7.28.6", "@babel/types": "^7.29.0", "debug": "^4.3.1" } }, "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA=="], + + "@vitejs/plugin-react/@babel/core/@babel/types": ["@babel/types@7.29.0", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.28.5" } }, "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A=="], + + "@vitejs/plugin-react/@babel/core/convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], + + "@vitejs/plugin-react/@babel/core/debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="], + + "@vitejs/plugin-react/@babel/core/gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="], + + "@vitejs/plugin-react/@babel/core/json5": ["json5@2.2.3", "", { "bin": { "json5": "lib/cli.js" } }, "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="], + + "@vitejs/plugin-react/@babel/core/semver": ["semver@6.3.1", "", {}, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@vitest/runner/p-limit/yocto-queue": ["yocto-queue@1.0.0", "", {}, "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g=="], + + "@vitest/snapshot/pretty-format/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", {}], + + "@vitest/snapshot/pretty-format/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@vitest/utils/pretty-format/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", {}], + + "@vitest/utils/pretty-format/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "@vitjs/runtime/react-router-dom/react-router": ["react-router@https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", { "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", "hoist-non-react-statics": "^3.1.0", "loose-envify": "^1.3.1", "path-to-regexp": "^1.7.0", "prop-types": "^15.6.2", "react-is": "^16.6.0", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0" } }], + + "@vitjs/vit/@ant-design/icons/@ant-design/colors": ["@ant-design/colors@https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz", { "dependencies": { "@ctrl/tinycolor": "^3.4.0" } }], + + "@vitjs/vit/@ant-design/icons/rc-util": ["rc-util@https://registry.npmjs.org/rc-util/-/rc-util-5.30.0.tgz", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }], + + "@vitjs/vit/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@vitjs/vit/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "ajv-formats/ajv/json-schema-traverse": ["json-schema-traverse@https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", {}], + + "antd/@ant-design/icons/@ant-design/colors": ["@ant-design/colors@https://registry.npmjs.org/@ant-design/colors/-/colors-7.0.0.tgz", { "dependencies": { "@ctrl/tinycolor": "^3.4.0" } }], + + "antd/@ant-design/icons/@ant-design/icons-svg": ["@ant-design/icons-svg@4.3.1", "", {}, "sha512-4QBZg8ccyC6LPIRii7A0bZUk3+lEDCLnhB+FVsflGdcWPPmV+j3fire4AwwoqHV/BibgvBmR9ZIo4s867smv+g=="], + + "antd/@ant-design/icons/classnames": ["classnames@https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", {}], + + "antd/@ant-design/icons/rc-util": ["rc-util@5.34.0", "", { "dependencies": { "@babel/runtime": "^7.18.3", "react-is": "^16.12.0" } }, "sha512-+zCDJ1gq+KwqbaZPAk7PGlNAssoTcnZSnTsr5KMYDBhzdPNFxyuglnewWMP5PyP/kAC6uW4r9Ejc08M+Lei04A=="], + + "antd/rc-resize-observer/classnames": ["classnames@https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", {}], + + "antd/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "bin-links/write-file-atomic/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], + + "bl/readable-stream/string_decoder": ["string_decoder@https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", { "dependencies": { "safe-buffer": "~5.2.0" } }], + + "body-parser/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "body-parser/http-errors/inherits": ["inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", {}], + + "body-parser/http-errors/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", {}], + + "builtins/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "c8/yargs/cliui": ["cliui@https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }], + + "cacache/glob/jackspeak": ["jackspeak@2.3.6", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="], + + "cacache/glob/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "cacache/glob/minipass": ["minipass@7.0.2", "", {}, "sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA=="], + + "chalk-template/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + + "chalk-template/chalk/supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + + "cli-truncate/string-width/emoji-regex": ["emoji-regex@https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", {}], + + "cli-truncate/string-width/strip-ansi": ["strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", { "dependencies": { "ansi-regex": "^6.0.1" } }], + + "cli-ux/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "cli-ux/@oclif/errors/fs-extra": ["fs-extra@https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }], + + "cli-ux/@oclif/errors/indent-string": ["indent-string@https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", {}], + + "cli-ux/@oclif/errors/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "cli-ux/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "cli-ux/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "cli-ux/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", {}], + + "cli-ux/strip-ansi/ansi-regex": ["ansi-regex@https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", {}], + + "cli-ux/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "cli-ux/supports-hyperlinks/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", {}], + + "compression/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "connect/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "connect/finalhandler/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", {}], + + "conventional-changelog-writer/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "cross-fetch/node-fetch/whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }], + + "dom-helpers/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "env-ci/execa/get-stream": ["get-stream@8.0.1", "", {}, "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA=="], + + "env-ci/execa/human-signals": ["human-signals@5.0.0", "", {}, "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ=="], + + "env-ci/execa/is-stream": ["is-stream@https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", {}], + + "env-ci/execa/npm-run-path": ["npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", { "dependencies": { "path-key": "^4.0.0" } }], + + "env-ci/execa/onetime": ["onetime@https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", { "dependencies": { "mimic-fn": "^4.0.0" } }], + + "env-ci/execa/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + + "env-ci/execa/strip-final-newline": ["strip-final-newline@https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", {}], + + "eslint-import-resolver-node/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "eslint-import-resolver-typescript/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", {}], + + "eslint-module-utils/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "eslint-plugin-import/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "eslint-plugin-unicorn/read-pkg-up/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "eslint-plugin-unicorn/read-pkg-up/read-pkg": ["read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }], + + "eslint-plugin-unicorn/read-pkg-up/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", {}], + + "eslint-plugin-unicorn/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "estree-util-build-jsx/estree-walker/@types/estree": ["@types/estree@https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", {}], + + "express/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "extract-zip/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "fbjs/cross-fetch/node-fetch": ["node-fetch@https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", { "dependencies": { "whatwg-url": "^5.0.0" } }], + + "file-system-cache/fs-extra/jsonfile": ["jsonfile@https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }], + + "file-system-cache/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", {}], + + "filelist/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "finalhandler/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "find-cache-dir/pkg-dir/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "giget/https-proxy-agent/agent-base": ["agent-base@https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", { "dependencies": { "debug": "4" } }], + + "giget/tar/fs-minipass": ["fs-minipass@https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", { "dependencies": { "minipass": "^3.0.0" } }], + + "giget/tar/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", {}], + + "giget/tar/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "glob/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "globby/fast-glob/glob-parent": ["glob-parent@https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", { "dependencies": { "is-glob": "^4.0.1" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/graphql-file-loader": ["@graphql-tools/graphql-file-loader@https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz", { "dependencies": { "@graphql-tools/import": "6.7.18", "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/json-file-loader": ["@graphql-tools/json-file-loader@https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/load": ["@graphql-tools/load@https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", { "dependencies": { "@graphql-tools/schema": "^9.0.18", "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/merge": ["@graphql-tools/merge@https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.1.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader": ["@graphql-tools/url-loader@https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz", { "dependencies": { "@ardatan/sync-fetch": "^0.0.1", "@graphql-tools/delegate": "^9.0.31", "@graphql-tools/executor-graphql-ws": "^0.0.14", "@graphql-tools/executor-http": "^0.1.7", "@graphql-tools/executor-legacy-ws": "^0.0.11", "@graphql-tools/utils": "^9.2.1", "@graphql-tools/wrap": "^9.4.2", "@types/ws": "^8.0.0", "@whatwg-node/fetch": "^0.8.0", "isomorphic-ws": "^5.0.0", "tslib": "^2.4.0", "value-or-promise": "^1.0.11", "ws": "^8.12.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/utils": ["@graphql-tools/utils@https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }], + + "graphql-language-service-interface/graphql-config/cosmiconfig": ["cosmiconfig@https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz", { "dependencies": { "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "parse-json": "^5.0.0", "path-type": "^4.0.0" } }], + + "graphql-language-service-interface/graphql-config/jiti": ["jiti@https://registry.npmjs.org/jiti/-/jiti-1.17.1.tgz", {}], + + "graphql-language-service-interface/graphql-config/minimatch": ["minimatch@4.2.3", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng=="], + + "graphql-language-service-interface/graphql-language-service-utils/@types/json-schema": ["@types/json-schema@https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", {}], + + "graphql-language-service-types/graphql-config/@graphql-tools/graphql-file-loader": ["@graphql-tools/graphql-file-loader@https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz", { "dependencies": { "@graphql-tools/import": "6.7.18", "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/json-file-loader": ["@graphql-tools/json-file-loader@https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/load": ["@graphql-tools/load@https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", { "dependencies": { "@graphql-tools/schema": "^9.0.18", "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/merge": ["@graphql-tools/merge@https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.1.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader": ["@graphql-tools/url-loader@https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz", { "dependencies": { "@ardatan/sync-fetch": "^0.0.1", "@graphql-tools/delegate": "^9.0.31", "@graphql-tools/executor-graphql-ws": "^0.0.14", "@graphql-tools/executor-http": "^0.1.7", "@graphql-tools/executor-legacy-ws": "^0.0.11", "@graphql-tools/utils": "^9.2.1", "@graphql-tools/wrap": "^9.4.2", "@types/ws": "^8.0.0", "@whatwg-node/fetch": "^0.8.0", "isomorphic-ws": "^5.0.0", "tslib": "^2.4.0", "value-or-promise": "^1.0.11", "ws": "^8.12.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/utils": ["@graphql-tools/utils@https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }], + + "graphql-language-service-types/graphql-config/cosmiconfig": ["cosmiconfig@https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz", { "dependencies": { "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "parse-json": "^5.0.0", "path-type": "^4.0.0" } }], + + "graphql-language-service-types/graphql-config/jiti": ["jiti@https://registry.npmjs.org/jiti/-/jiti-1.17.1.tgz", {}], + + "graphql-language-service-types/graphql-config/minimatch": ["minimatch@4.2.3", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng=="], + + "graphql-request/cross-fetch/node-fetch": ["node-fetch@https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", { "dependencies": { "whatwg-url": "^5.0.0" } }], + + "htmlparser2/domutils/dom-serializer": ["dom-serializer@https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", { "dependencies": { "domelementtype": "^2.0.1", "entities": "^2.0.0" } }], + + "htmlparser2/readable-stream/string_decoder": ["string_decoder@https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", { "dependencies": { "safe-buffer": "~5.2.0" } }], + + "ignore-walk/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "init-package-json/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "inquirer/figures/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "isomorphic-fetch/node-fetch/whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }], + + "jest-haste-map/@jest/types/@jest/schemas": ["@jest/schemas@https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", { "dependencies": { "@sinclair/typebox": "^0.25.16" } }], + + "jest-haste-map/@jest/types/@types/yargs": ["@types/yargs@https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", { "dependencies": { "@types/yargs-parser": "*" } }], + + "jest-util/@jest/types/@jest/schemas": ["@jest/schemas@https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", { "dependencies": { "@sinclair/typebox": "^0.25.16" } }], + + "jest-util/@jest/types/@types/yargs": ["@types/yargs@https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", { "dependencies": { "@types/yargs-parser": "*" } }], + + "jscodeshift/recast/ast-types": ["ast-types@https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", { "dependencies": { "tslib": "^2.0.1" } }], + + "jsdom/http-proxy-agent/agent-base": ["agent-base@https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", { "dependencies": { "debug": "4" } }], + + "jsdom/https-proxy-agent/agent-base": ["agent-base@https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", { "dependencies": { "debug": "4" } }], + + "libnpmdiff/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "libnpmexec/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "libnpmpublish/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "libnpmversion/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "lint-staged/execa/get-stream": ["get-stream@https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", {}], + + "lint-staged/execa/human-signals": ["human-signals@https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", {}], + + "lint-staged/execa/is-stream": ["is-stream@https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", {}], + + "lint-staged/execa/npm-run-path": ["npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", { "dependencies": { "path-key": "^4.0.0" } }], + + "lint-staged/execa/onetime": ["onetime@https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", { "dependencies": { "mimic-fn": "^4.0.0" } }], + + "lint-staged/execa/strip-final-newline": ["strip-final-newline@https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", {}], + + "lint-staged/listr2/cli-truncate": ["cli-truncate@https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", { "dependencies": { "slice-ansi": "^3.0.0", "string-width": "^4.2.0" } }], + + "lint-staged/listr2/colorette": ["colorette@https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", {}], + + "listr2/cli-truncate/slice-ansi": ["slice-ansi@https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }], + + "marked-terminal/ansi-escapes/type-fest": ["type-fest@3.13.1", "", {}, "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="], + + "mdast-util-to-markdown/unist-util-visit/unist-util-is": ["unist-util-is@https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", { "dependencies": { "@types/unist": "^2.0.0" } }], + + "mdast-util-to-markdown/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" } }], + + "minipass-flush/minipass/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "minipass-json-stream/minipass/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "minipass-pipeline/minipass/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "minipass-sized/minipass/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "needle/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "node-fetch/whatwg-url/tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}], + + "node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}], + + "node-gyp/glob/jackspeak": ["jackspeak@2.3.6", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="], + + "node-gyp/glob/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "node-gyp/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "node-gyp/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], + + "normalize-package-data/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "npm-install-checks/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "npm-package-arg/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "npm-pick-manifest/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "npm/glob/jackspeak": ["jackspeak@2.3.6", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="], + + "npm/glob/minipass": ["minipass@7.0.2", "", {}, "sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA=="], + + "npm/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "npm/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "npm/strip-ansi/ansi-regex": ["ansi-regex@https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", {}], + + "npm/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], + + "npm/write-file-atomic/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], + + "os-locale/execa/get-stream": ["get-stream@https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", { "dependencies": { "pump": "^3.0.0" } }], + + "os-locale/execa/human-signals": ["human-signals@https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", {}], + + "password-prompt/cross-spawn/path-key": ["path-key@https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", {}], + + "password-prompt/cross-spawn/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "password-prompt/cross-spawn/shebang-command": ["shebang-command@https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", { "dependencies": { "shebang-regex": "^1.0.0" } }], + + "password-prompt/cross-spawn/which": ["which@https://registry.npmjs.org/which/-/which-1.3.1.tgz", { "dependencies": { "isexe": "^2.0.0" } }], + + "pkg-conf/find-up/locate-path": ["locate-path@2.0.0", "", { "dependencies": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" } }, "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA=="], + + "postcss-less/postcss/nanoid": ["nanoid@3.3.6", "", {}, "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="], + + "postcss-less/postcss/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "postcss-safe-parser/postcss/picocolors": ["picocolors@https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", {}], + + "postcss-sass/postcss/picocolors": ["picocolors@https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", {}], + + "postcss-scss/postcss/picocolors": ["picocolors@https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", {}], + + "prettier-plugin-two-style-order/postcss/nanoid": ["nanoid@3.3.6", "", {}, "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="], + + "prettier-plugin-two-style-order/postcss/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "puppeteer-core/https-proxy-agent/agent-base": ["agent-base@https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", {}], + + "puppeteer-core/rimraf/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "raw-body/http-errors/depd": ["depd@https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", {}], + + "raw-body/http-errors/inherits": ["inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", {}], + + "raw-body/http-errors/setprototypeof": ["setprototypeof@https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", {}], + + "raw-body/http-errors/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", {}], + + "rc-cascader/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-checkbox/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-checkbox/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-checkbox/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-collapse/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-collapse/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-dialog/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-dialog/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-dialog/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-drawer/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-drawer/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-drawer/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-dropdown/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-field-form/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-image/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-input-number/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-input-number/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-input-number/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-input/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-mentions/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-mentions/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-menu/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-menu/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-motion/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-notification/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-notification/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-notification/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-overflow/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-pagination/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-pagination/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-pagination/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-picker/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-picker/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-picker/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-progress/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-progress/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-progress/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-rate/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-rate/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-segmented/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-select/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-select/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-select/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-slider/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-slider/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-steps/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-steps/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-steps/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-switch/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-table/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-table/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-table/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-tabs/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-textarea/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-textarea/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-tree-select/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-tree-select/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-tree-select/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-tree/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-tree/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-tree/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-upload/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "rc-virtual-list/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "rc-virtual-list/rc-util/@babel/runtime": ["@babel/runtime@https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", { "dependencies": { "regenerator-runtime": "^0.13.11" } }], + + "rc-virtual-list/rc-util/react-is": ["react-is@18.2.0", "", {}, "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="], + + "react-virtualized/@babel/runtime/regenerator-runtime": ["regenerator-runtime@0.14.0", "", {}, "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="], + + "read-package-json/glob/jackspeak": ["jackspeak@2.3.6", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ=="], + + "read-package-json/glob/minimatch": ["minimatch@9.0.3", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg=="], + + "read-pkg/parse-json/@babel/code-frame": ["@babel/code-frame@7.23.5", "", { "dependencies": { "@babel/highlight": "^7.23.4", "chalk": "^2.4.2" } }, "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA=="], + + "remark-parse/mdast-util-from-markdown/mdast-util-to-string": ["mdast-util-to-string@https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", {}], + + "remark-parse/mdast-util-from-markdown/micromark": ["micromark@https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz", { "dependencies": { "debug": "^4.0.0", "parse-entities": "^2.0.0" } }], + + "remark-parse/mdast-util-from-markdown/unist-util-stringify-position": ["unist-util-stringify-position@https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", { "dependencies": { "@types/unist": "^2.0.2" } }], + + "remark-stringify/mdast-util-to-markdown/longest-streak": ["longest-streak@https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz", {}], + + "remark-stringify/mdast-util-to-markdown/mdast-util-to-string": ["mdast-util-to-string@https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", {}], + + "remark-stringify/mdast-util-to-markdown/zwitch": ["zwitch@https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", {}], + + "remark/unified/bail": ["bail@https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", {}], + + "remark/unified/is-buffer": ["is-buffer@https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", {}], + + "remark/unified/is-plain-obj": ["is-plain-obj@https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", {}], + + "remark/unified/trough": ["trough@https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", {}], + + "remark/unified/vfile": ["vfile@https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", { "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", "unist-util-stringify-position": "^2.0.0", "vfile-message": "^2.0.0" } }], + + "rollup-plugin-copy/globby/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "rollup-plugin-copy/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", {}], + + "semantic-release/aggregate-error/clean-stack": ["clean-stack@5.2.0", "", { "dependencies": { "escape-string-regexp": "5.0.0" } }, "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ=="], + + "semantic-release/aggregate-error/indent-string": ["indent-string@5.0.0", "", {}, "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg=="], + + "semantic-release/execa/get-stream": ["get-stream@8.0.1", "", {}, "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA=="], + + "semantic-release/execa/human-signals": ["human-signals@5.0.0", "", {}, "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ=="], + + "semantic-release/execa/is-stream": ["is-stream@https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", {}], + + "semantic-release/execa/npm-run-path": ["npm-run-path@https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", { "dependencies": { "path-key": "^4.0.0" } }], + + "semantic-release/execa/onetime": ["onetime@https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", { "dependencies": { "mimic-fn": "^4.0.0" } }], + + "semantic-release/execa/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + + "semantic-release/execa/strip-final-newline": ["strip-final-newline@https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", {}], + + "semantic-release/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "semver-diff/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "send/http-errors/inherits": ["inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", {}], + + "send/http-errors/statuses": ["statuses@https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", {}], + + "signale/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "signale/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "signale/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "signale/figures/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "simple-update-notifier/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "sort-package-json/globby/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "sort-package-json/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "stylelint/cosmiconfig/yaml": ["yaml@https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", {}], + + "stylelint/meow/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", { "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", "semver": "^7.3.4", "validate-npm-package-license": "^3.0.1" } }], + + "stylelint/meow/read-pkg-up": ["read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }], + + "stylelint/meow/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", {}], + + "stylelint/meow/yargs-parser": ["yargs-parser@https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", {}], + + "stylelint/postcss/picocolors": ["picocolors@https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", {}], + + "sugarss/postcss/picocolors": ["picocolors@https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", {}], + + "table/ajv/json-schema-traverse": ["json-schema-traverse@https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", {}], + + "tar-stream/readable-stream/string_decoder": ["string_decoder@https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", { "dependencies": { "safe-buffer": "~5.2.0" } }], + + "tar/fs-minipass/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "temp/rimraf/glob": ["glob@https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }], + + "unplugin-auto-import/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "vite-node/mlly/acorn": ["acorn@8.11.2", "", {}, "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w=="], + + "vite-node/mlly/pkg-types": ["pkg-types@1.0.3", "", { "dependencies": { "jsonc-parser": "^3.2.0", "mlly": "^1.2.0", "pathe": "^1.1.0" } }, "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A=="], + + "vite-node/mlly/ufo": ["ufo@1.3.1", "", {}, "sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw=="], + + "vite-node/vite/esbuild": ["esbuild@0.18.20", "", { "optionalDependencies": { "@esbuild/android-arm": "0.18.20", "@esbuild/android-arm64": "0.18.20", "@esbuild/android-x64": "0.18.20", "@esbuild/darwin-arm64": "0.18.20", "@esbuild/darwin-x64": "0.18.20", "@esbuild/freebsd-arm64": "0.18.20", "@esbuild/freebsd-x64": "0.18.20", "@esbuild/linux-arm": "0.18.20", "@esbuild/linux-arm64": "0.18.20", "@esbuild/linux-ia32": "0.18.20", "@esbuild/linux-loong64": "0.18.20", "@esbuild/linux-mips64el": "0.18.20", "@esbuild/linux-ppc64": "0.18.20", "@esbuild/linux-riscv64": "0.18.20", "@esbuild/linux-s390x": "0.18.20", "@esbuild/linux-x64": "0.18.20", "@esbuild/netbsd-x64": "0.18.20", "@esbuild/openbsd-x64": "0.18.20", "@esbuild/sunos-x64": "0.18.20", "@esbuild/win32-arm64": "0.18.20", "@esbuild/win32-ia32": "0.18.20", "@esbuild/win32-x64": "0.18.20" } }, "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA=="], + + "vite-node/vite/postcss": ["postcss@8.4.30", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g=="], + + "vite-node/vite/rollup": ["rollup@3.29.3", "", { "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-T7du6Hum8jOkSWetjRgbwpM6Sy0nECYrYRSmZjayFcOddtKJWU4d17AC3HNUk7HRuqy4p+G7aEZclSHytqUmEg=="], + + "vite-plugin-mock/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.14.54", "", {}, "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw=="], + + "vitest/vite/esbuild": ["esbuild@0.18.20", "", { "optionalDependencies": { "@esbuild/android-arm": "0.18.20", "@esbuild/android-arm64": "0.18.20", "@esbuild/android-x64": "0.18.20", "@esbuild/darwin-arm64": "0.18.20", "@esbuild/darwin-x64": "0.18.20", "@esbuild/freebsd-arm64": "0.18.20", "@esbuild/freebsd-x64": "0.18.20", "@esbuild/linux-arm": "0.18.20", "@esbuild/linux-arm64": "0.18.20", "@esbuild/linux-ia32": "0.18.20", "@esbuild/linux-loong64": "0.18.20", "@esbuild/linux-mips64el": "0.18.20", "@esbuild/linux-ppc64": "0.18.20", "@esbuild/linux-riscv64": "0.18.20", "@esbuild/linux-s390x": "0.18.20", "@esbuild/linux-x64": "0.18.20", "@esbuild/netbsd-x64": "0.18.20", "@esbuild/openbsd-x64": "0.18.20", "@esbuild/sunos-x64": "0.18.20", "@esbuild/win32-arm64": "0.18.20", "@esbuild/win32-ia32": "0.18.20", "@esbuild/win32-x64": "0.18.20" } }, "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA=="], + + "vitest/vite/postcss": ["postcss@8.4.30", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g=="], + + "vitest/vite/rollup": ["rollup@3.29.3", "", { "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-T7du6Hum8jOkSWetjRgbwpM6Sy0nECYrYRSmZjayFcOddtKJWU4d17AC3HNUk7HRuqy4p+G7aEZclSHytqUmEg=="], + + "@ardatan/relay-compiler/yargs/cliui/wrap-ansi": ["wrap-ansi@https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }], + + "@ardatan/relay-compiler/yargs/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "@ardatan/relay-compiler/yargs/yargs-parser/camelcase": ["camelcase@https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", {}], + + "@ardatan/sync-fetch/node-fetch/whatwg-url/tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}], + + "@ardatan/sync-fetch/node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}], + + "@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@babel/plugin-transform-object-rest-spread/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.22.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" } }, "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="], + + "@babel/register/find-cache-dir/pkg-dir/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", { "dependencies": { "locate-path": "^3.0.0" } }], + + "@graphql-codegen/named-operations-object/@graphql-codegen/plugin-helpers/@graphql-tools/utils/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", {}], + + "@graphql-codegen/typescript-urql/@graphql-codegen/plugin-helpers/@graphql-tools/utils/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", {}], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/optimize/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", {}], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/relay-operation-optimizer/@graphql-tools/utils": ["@graphql-tools/utils@https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/relay-operation-optimizer/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", {}], + + "@graphql-codegen/typescript-urql/@graphql-codegen/visitor-plugin-common/@graphql-tools/utils/tslib": ["tslib@https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", {}], + + "@graphql-tools/apollo-engine-loader/@whatwg-node/fetch/@whatwg-node/node-fetch/@whatwg-node/events": ["@whatwg-node/events@0.1.1", "", {}, "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w=="], + + "@graphql-tools/executor-http/@whatwg-node/fetch/@whatwg-node/node-fetch/@whatwg-node/events": ["@whatwg-node/events@0.1.1", "", {}, "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w=="], + + "@graphql-tools/github-loader/@whatwg-node/fetch/@whatwg-node/node-fetch/@whatwg-node/events": ["@whatwg-node/events@0.1.1", "", {}, "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/generator/jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", {}], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.22.9", "", {}, "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.22.5", "", {}, "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/traverse/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/traverse/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/traverse/@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/traverse/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/traverse/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@graphql-tools/prisma-loader/@whatwg-node/fetch/@whatwg-node/node-fetch/@whatwg-node/events": ["@whatwg-node/events@0.1.1", "", {}, "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w=="], + + "@graphql-tools/url-loader/@whatwg-node/fetch/@whatwg-node/node-fetch/@whatwg-node/events": ["@whatwg-node/events@0.1.1", "", {}, "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w=="], + + "@istanbuljs/load-nyc-config/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "@jest/transform/@jest/types/@jest/schemas/@sinclair/typebox": ["@sinclair/typebox@https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", {}], + + "@npmcli/arborist/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "@npmcli/arborist/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@npmcli/config/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@npmcli/fs/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@npmcli/git/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@npmcli/map-workspaces/glob/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "@npmcli/map-workspaces/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "@npmcli/metavuln-calculator/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@npmcli/package-json/glob/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "@npmcli/package-json/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@oclif/command/@oclif/config/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@oclif/command/@oclif/plugin-help/@oclif/command/@oclif/config": ["@oclif/config@https://registry.npmjs.org/@oclif/config/-/config-1.18.8.tgz", { "dependencies": { "@oclif/errors": "^1.3.6", "@oclif/parser": "^3.8.10", "debug": "^4.3.4", "globby": "^11.1.0", "is-wsl": "^2.1.1", "tslib": "^2.5.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/command/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/config/@oclif/errors": ["@oclif/errors@https://registry.npmjs.org/@oclif/errors/-/errors-1.3.6.tgz", { "dependencies": { "clean-stack": "^3.0.0", "fs-extra": "^8.1", "indent-string": "^4.0.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/config/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/errors/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "@oclif/command/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@oclif/help/@oclif/config/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@oclif/plugin-help/@oclif/command/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@oclif/plugin-help/@oclif/config/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@oclif/plugin-help/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@oclif/plugin-help/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@oclif/plugin-help/wrap-ansi/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@oclif/plugin-help/wrap-ansi/string-width/is-fullwidth-code-point": ["is-fullwidth-code-point@https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", {}], + + "@oclif/plugin-help/wrap-ansi/strip-ansi/ansi-regex": ["ansi-regex@https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", {}], + + "@semantic-release/github/aggregate-error/clean-stack/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", {}], + + "@semantic-release/npm/aggregate-error/clean-stack/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", {}], + + "@semantic-release/npm/execa/npm-run-path/path-key": ["path-key@https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", {}], + + "@semantic-release/npm/execa/onetime/mimic-fn": ["mimic-fn@https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", {}], + + "@semantic-release/npm/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@storybook/builder-manager/express/body-parser/bytes": ["bytes@https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", {}], + + "@storybook/builder-manager/express/body-parser/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/builder-manager/express/body-parser/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }], + + "@storybook/builder-manager/express/body-parser/raw-body": ["raw-body@https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }], + + "@storybook/builder-manager/express/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "@storybook/builder-manager/express/send/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/builder-manager/express/send/mime": ["mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", {}], + + "@storybook/builder-manager/express/send/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "@storybook/builder-vite/express/body-parser/bytes": ["bytes@https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", {}], + + "@storybook/builder-vite/express/body-parser/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/builder-vite/express/body-parser/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }], + + "@storybook/builder-vite/express/body-parser/raw-body": ["raw-body@https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }], + + "@storybook/builder-vite/express/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "@storybook/builder-vite/express/send/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/builder-vite/express/send/mime": ["mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", {}], + + "@storybook/builder-vite/express/send/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/cli/@babel/core/@babel/generator/jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", {}], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.22.9", "", {}, "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.22.5", "", {}, "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@storybook/cli/@babel/core/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/cli/@babel/core/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/cli/@babel/core/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/core/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/core/@babel/traverse/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/core/@babel/traverse/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/cli/@babel/core/@babel/traverse/@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="], + + "@storybook/cli/@babel/core/@babel/traverse/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/core/@babel/traverse/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/helper-compilation-targets/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-wrap-function": "^7.22.9" } }, "sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-exponentiation-operator/@babel/helper-builder-binary-assignment-operator-visitor": ["@babel/helper-builder-binary-assignment-operator-visitor@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@storybook/cli/@babel/preset-env/babel-plugin-polyfill-corejs2/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.4.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" } }, "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="], + + "@storybook/cli/@babel/preset-env/babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.4.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" } }, "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="], + + "@storybook/cli/@babel/preset-env/babel-plugin-polyfill-regenerator/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.4.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" } }, "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="], + + "@storybook/cli/@babel/preset-env/core-js-compat/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@storybook/cli/express/body-parser/bytes": ["bytes@https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", {}], + + "@storybook/cli/express/body-parser/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/cli/express/body-parser/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }], + + "@storybook/cli/express/body-parser/raw-body": ["raw-body@https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }], + + "@storybook/cli/express/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "@storybook/cli/express/send/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/cli/express/send/mime": ["mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", {}], + + "@storybook/cli/express/send/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "@storybook/cli/read-pkg-up/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "@storybook/cli/read-pkg-up/read-pkg/@types/normalize-package-data": ["@types/normalize-package-data@https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", {}], + + "@storybook/cli/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }], + + "@storybook/cli/read-pkg-up/read-pkg/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", {}], + + "@storybook/cli/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@storybook/cli/tempy/unique-string/crypto-random-string": ["crypto-random-string@https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", {}], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/codemod/@babel/core/@babel/generator/jsesc": ["jsesc@https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", {}], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.22.9", "", {}, "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.22.5", "", {}, "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@storybook/codemod/@babel/core/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/codemod/@babel/core/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/codemod/@babel/core/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/core/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/core/@babel/traverse/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/core/@babel/traverse/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/codemod/@babel/core/@babel/traverse/@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="], + + "@storybook/codemod/@babel/core/@babel/traverse/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/core/@babel/traverse/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/helper-compilation-targets/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-wrap-function": "^7.22.9" } }, "sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/globals": ["globals@https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-exponentiation-operator/@babel/helper-builder-binary-assignment-operator-visitor": ["@babel/helper-builder-binary-assignment-operator-visitor@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-module-imports": "^7.22.5", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.5" } }, "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.22.9", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.22.5", "@babel/helper-member-expression-to-functions": "^7.22.5", "@babel/helper-optimise-call-expression": "^7.22.5" } }, "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.22.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" } }, "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw=="], + + "@storybook/codemod/@babel/preset-env/babel-plugin-polyfill-corejs2/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.4.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" } }, "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="], + + "@storybook/codemod/@babel/preset-env/babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.4.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" } }, "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="], + + "@storybook/codemod/@babel/preset-env/babel-plugin-polyfill-regenerator/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.4.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" } }, "sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw=="], + + "@storybook/codemod/@babel/preset-env/core-js-compat/browserslist": ["browserslist@4.21.9", "", { "dependencies": { "caniuse-lite": "^1.0.30001503", "electron-to-chromium": "^1.4.431", "node-releases": "^2.0.12", "update-browserslist-db": "^1.0.11" } }, "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg=="], + + "@storybook/core-server/express/body-parser/bytes": ["bytes@https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", {}], + + "@storybook/core-server/express/body-parser/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/core-server/express/body-parser/iconv-lite": ["iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }], + + "@storybook/core-server/express/body-parser/raw-body": ["raw-body@https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }], + + "@storybook/core-server/express/debug/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", {}], + + "@storybook/core-server/express/send/destroy": ["destroy@https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", {}], + + "@storybook/core-server/express/send/mime": ["mime@https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", {}], + + "@storybook/core-server/express/send/ms": ["ms@https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", {}], + + "@storybook/core-server/read-pkg-up/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "@storybook/core-server/read-pkg-up/read-pkg/@types/normalize-package-data": ["@types/normalize-package-data@https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", {}], + + "@storybook/core-server/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }], + + "@storybook/core-server/read-pkg-up/read-pkg/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", {}], + + "@storybook/core-server/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/csf-tools/@babel/traverse/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/manager-api/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@storybook/telemetry/read-pkg-up/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "@storybook/telemetry/read-pkg-up/read-pkg/@types/normalize-package-data": ["@types/normalize-package-data@https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", {}], + + "@storybook/telemetry/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }], + + "@storybook/telemetry/read-pkg-up/read-pkg/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", {}], + + "@svgx/core/svgo/css-select/domhandler": ["domhandler@https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", { "dependencies": { "domelementtype": "^2.3.0" } }], + + "@svgx/core/svgo/css-select/domutils": ["domutils@https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", { "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" } }], + + "@svgx/core/svgo/css-tree/mdn-data": ["mdn-data@https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", {}], + + "@svgx/core/svgo/css-tree/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "@svgx/core/svgo/csso/css-tree": ["css-tree@https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", { "dependencies": { "mdn-data": "2.0.28", "source-map-js": "^1.0.1" } }], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.17.19", "", {}, "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.17.19", "", {}, "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.17.19", "", {}, "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.17.19", "", {}, "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.17.19", "", {}, "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.17.19", "", {}, "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.17.19", "", {}, "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.17.19", "", {}, "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.17.19", "", {}, "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.17.19", "", {}, "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.17.19", "", {}, "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.17.19", "", {}, "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.17.19", "", {}, "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.17.19", "", {}, "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.17.19", "", {}, "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.17.19", "", {}, "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.17.19", "", {}, "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.17.19", "", {}, "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.17.19", "", {}, "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.17.19", "", {}, "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.17.19", "", {}, "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw=="], + + "@svgx/vite-plugin-react/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.17.19", "", {}, "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA=="], + + "@svgx/vite-plugin-react/vite/postcss/nanoid": ["nanoid@3.3.6", "", {}, "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="], + + "@svgx/vite-plugin-react/vite/postcss/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "@tufjs/models/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "@typescript-eslint/eslint-plugin/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@typescript-eslint/experimental-utils/@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", {}], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", {}], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@typescript-eslint/typescript-estree/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@typescript-eslint/utils/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/read-pkg": ["read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@umijs/fabric/eslint/eslint-scope/estraverse": ["estraverse@https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", {}], + + "@umijs/fabric/eslint/espree/eslint-visitor-keys": ["eslint-visitor-keys@https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", {}], + + "@umijs/fabric/eslint/js-yaml/argparse": ["argparse@https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", { "dependencies": { "sprintf-js": "~1.0.2" } }], + + "@umijs/fabric/eslint/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "@vitejs/plugin-react/@babel/core/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="], + + "@vitejs/plugin-react/@babel/core/@babel/code-frame/js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], + + "@vitejs/plugin-react/@babel/core/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "@vitejs/plugin-react/@babel/core/@babel/generator/@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.13", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA=="], + + "@vitejs/plugin-react/@babel/core/@babel/generator/@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.31", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw=="], + + "@vitejs/plugin-react/@babel/core/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.29.0", "", {}, "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.27.1", "", {}, "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.28.1", "", { "dependencies": { "baseline-browser-mapping": "^2.9.0", "caniuse-lite": "^1.0.30001759", "electron-to-chromium": "^1.5.263", "node-releases": "^2.0.27", "update-browserslist-db": "^1.2.0" }, "bin": { "browserslist": "cli.js" } }, "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.28.6", "", { "dependencies": { "@babel/traverse": "^7.28.6", "@babel/types": "^7.28.6" } }, "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="], + + "@vitejs/plugin-react/@babel/core/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="], + + "@vitejs/plugin-react/@babel/core/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="], + + "@vitejs/plugin-react/@babel/core/debug/ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + + "@vitjs/runtime/react-router-dom/react-router/path-to-regexp": ["path-to-regexp@https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", { "dependencies": { "isarray": "0.0.1" } }], + + "@vitjs/vit/@ant-design/icons/@ant-design/colors/@ctrl/tinycolor": ["@ctrl/tinycolor@https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz", {}], + + "@vitjs/vit/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "antd/@ant-design/icons/@ant-design/colors/@ctrl/tinycolor": ["@ctrl/tinycolor@https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz", {}], + + "bl/readable-stream/string_decoder/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "builtins/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "cacache/glob/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "chalk-template/chalk/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], + + "chalk-template/chalk/supports-color/has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], + + "cli-truncate/string-width/strip-ansi/ansi-regex": ["ansi-regex@https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", {}], + + "cli-ux/@oclif/errors/fs-extra/universalify": ["universalify@https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", {}], + + "cli-ux/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "conventional-changelog-writer/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "cross-fetch/node-fetch/whatwg-url/tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}], + + "cross-fetch/node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}], + + "env-ci/execa/npm-run-path/path-key": ["path-key@https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", {}], + + "env-ci/execa/onetime/mimic-fn": ["mimic-fn@https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", {}], + + "eslint-plugin-unicorn/read-pkg-up/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "eslint-plugin-unicorn/read-pkg-up/read-pkg/@types/normalize-package-data": ["@types/normalize-package-data@https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", {}], + + "eslint-plugin-unicorn/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }], + + "eslint-plugin-unicorn/read-pkg-up/read-pkg/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", {}], + + "eslint-plugin-unicorn/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "fbjs/cross-fetch/node-fetch/whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }], + + "filelist/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "find-cache-dir/pkg-dir/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "giget/tar/fs-minipass/minipass": ["minipass@https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "glob/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "graphql-language-service-interface/graphql-config/@graphql-tools/graphql-file-loader/@graphql-tools/import": ["@graphql-tools/import@https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.18.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "resolve-from": "5.0.0", "tslib": "^2.4.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/graphql-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/json-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/load/@graphql-tools/schema": ["@graphql-tools/schema@https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", { "dependencies": { "@graphql-tools/merge": "^8.4.1", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate": ["@graphql-tools/delegate@https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.34.tgz", { "dependencies": { "@graphql-tools/batch-execute": "^8.5.21", "@graphql-tools/executor": "^0.0.19", "@graphql-tools/schema": "^9.0.19", "@graphql-tools/utils": "^9.2.1", "dataloader": "^2.2.2", "tslib": "^2.5.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-graphql-ws": ["@graphql-tools/executor-graphql-ws@https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@repeaterjs/repeater": "3.0.4", "@types/ws": "^8.0.0", "graphql-ws": "5.12.1", "isomorphic-ws": "5.0.0", "tslib": "^2.4.0", "ws": "8.13.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-http": ["@graphql-tools/executor-http@https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.1.9.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@repeaterjs/repeater": "^3.0.4", "@whatwg-node/fetch": "^0.8.1", "dset": "^3.1.2", "extract-files": "^11.0.0", "meros": "^1.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-legacy-ws": ["@graphql-tools/executor-legacy-ws@https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@types/ws": "^8.0.0", "isomorphic-ws": "5.0.0", "tslib": "^2.4.0", "ws": "8.13.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/wrap": ["@graphql-tools/wrap@https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.4.2.tgz", { "dependencies": { "@graphql-tools/delegate": "^9.0.31", "@graphql-tools/schema": "^9.0.18", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", {}], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/ws": ["ws@https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", {}], + + "graphql-language-service-types/graphql-config/@graphql-tools/graphql-file-loader/@graphql-tools/import": ["@graphql-tools/import@https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.18.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "resolve-from": "5.0.0", "tslib": "^2.4.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/graphql-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/json-file-loader/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/load/@graphql-tools/schema": ["@graphql-tools/schema@https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", { "dependencies": { "@graphql-tools/merge": "^8.4.1", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate": ["@graphql-tools/delegate@https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.34.tgz", { "dependencies": { "@graphql-tools/batch-execute": "^8.5.21", "@graphql-tools/executor": "^0.0.19", "@graphql-tools/schema": "^9.0.19", "@graphql-tools/utils": "^9.2.1", "dataloader": "^2.2.2", "tslib": "^2.5.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-graphql-ws": ["@graphql-tools/executor-graphql-ws@https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@repeaterjs/repeater": "3.0.4", "@types/ws": "^8.0.0", "graphql-ws": "5.12.1", "isomorphic-ws": "5.0.0", "tslib": "^2.4.0", "ws": "8.13.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-http": ["@graphql-tools/executor-http@https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.1.9.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@repeaterjs/repeater": "^3.0.4", "@whatwg-node/fetch": "^0.8.1", "dset": "^3.1.2", "extract-files": "^11.0.0", "meros": "^1.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-legacy-ws": ["@graphql-tools/executor-legacy-ws@https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@types/ws": "^8.0.0", "isomorphic-ws": "5.0.0", "tslib": "^2.4.0", "ws": "8.13.0" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/wrap": ["@graphql-tools/wrap@https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.4.2.tgz", { "dependencies": { "@graphql-tools/delegate": "^9.0.31", "@graphql-tools/schema": "^9.0.18", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/isomorphic-ws": ["isomorphic-ws@https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", {}], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/ws": ["ws@https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", {}], + + "graphql-request/cross-fetch/node-fetch/whatwg-url": ["whatwg-url@https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }], + + "htmlparser2/domutils/dom-serializer/domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", {}], + + "htmlparser2/domutils/dom-serializer/entities": ["entities@https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", {}], + + "htmlparser2/readable-stream/string_decoder/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "ignore-walk/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "init-package-json/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "isomorphic-fetch/node-fetch/whatwg-url/tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}], + + "isomorphic-fetch/node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}], + + "jest-haste-map/@jest/types/@jest/schemas/@sinclair/typebox": ["@sinclair/typebox@https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", {}], + + "jest-util/@jest/types/@jest/schemas/@sinclair/typebox": ["@sinclair/typebox@https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", {}], + + "libnpmdiff/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "libnpmexec/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "libnpmpublish/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "libnpmversion/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "lint-staged/execa/npm-run-path/path-key": ["path-key@https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", {}], + + "lint-staged/execa/onetime/mimic-fn": ["mimic-fn@https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", {}], + + "lint-staged/listr2/cli-truncate/slice-ansi": ["slice-ansi@https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }], + + "node-gyp/glob/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "node-gyp/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "normalize-package-data/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "npm-install-checks/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "npm-package-arg/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "npm-pick-manifest/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "npm/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "npm/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "password-prompt/cross-spawn/shebang-command/shebang-regex": ["shebang-regex@https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", {}], + + "pkg-conf/find-up/locate-path/p-locate": ["p-locate@2.0.0", "", { "dependencies": { "p-limit": "^1.1.0" } }, "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg=="], + + "pkg-conf/find-up/locate-path/path-exists": ["path-exists@https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", {}], + + "read-package-json/glob/minimatch/brace-expansion": ["brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", { "dependencies": { "balanced-match": "^1.0.0" } }], + + "read-pkg/parse-json/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.23.4", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", "js-tokens": "^4.0.0" } }, "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A=="], + + "read-pkg/parse-json/@babel/code-frame/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "remark/unified/vfile/unist-util-stringify-position": ["unist-util-stringify-position@https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", { "dependencies": { "@types/unist": "^2.0.2" } }], + + "remark/unified/vfile/vfile-message": ["vfile-message@https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^2.0.0" } }], + + "semantic-release/aggregate-error/clean-stack/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", {}], + + "semantic-release/execa/npm-run-path/path-key": ["path-key@https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", {}], + + "semantic-release/execa/onetime/mimic-fn": ["mimic-fn@https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", {}], + + "semantic-release/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "semver-diff/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "signale/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "signale/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "simple-update-notifier/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "stylelint/meow/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "stylelint/meow/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", { "dependencies": { "lru-cache": "^6.0.0" } }], + + "stylelint/meow/read-pkg-up/find-up": ["find-up@https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }], + + "stylelint/meow/read-pkg-up/read-pkg": ["read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }], + + "stylelint/meow/read-pkg-up/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", {}], + + "tar-stream/readable-stream/string_decoder/safe-buffer": ["safe-buffer@https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", {}], + + "unplugin-auto-import/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "vite-node/mlly/pkg-types/mlly": ["mlly@https://registry.npmjs.org/mlly/-/mlly-1.2.0.tgz", { "dependencies": { "acorn": "^8.8.2", "pathe": "^1.1.0", "pkg-types": "^1.0.2", "ufo": "^1.1.1" } }], + + "vite-node/mlly/pkg-types/pathe": ["pathe@https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", {}], + + "vite-node/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.18.20", "", {}, "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw=="], + + "vite-node/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.18.20", "", {}, "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ=="], + + "vite-node/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.18.20", "", {}, "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg=="], + + "vite-node/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.18.20", "", {}, "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA=="], + + "vite-node/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.18.20", "", {}, "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ=="], + + "vite-node/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.18.20", "", {}, "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw=="], + + "vite-node/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.18.20", "", {}, "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ=="], + + "vite-node/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.18.20", "", {}, "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg=="], + + "vite-node/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.18.20", "", {}, "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA=="], + + "vite-node/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.18.20", "", {}, "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA=="], + + "vite-node/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.18.20", "", {}, "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg=="], + + "vite-node/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.18.20", "", {}, "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ=="], + + "vite-node/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.18.20", "", {}, "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA=="], + + "vite-node/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.18.20", "", {}, "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A=="], + + "vite-node/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.18.20", "", {}, "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ=="], + + "vite-node/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.18.20", "", {}, "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w=="], + + "vite-node/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.18.20", "", {}, "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A=="], + + "vite-node/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.18.20", "", {}, "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg=="], + + "vite-node/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.18.20", "", {}, "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ=="], + + "vite-node/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.18.20", "", {}, "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg=="], + + "vite-node/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.18.20", "", {}, "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g=="], + + "vite-node/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.18.20", "", {}, "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ=="], + + "vite-node/vite/postcss/nanoid": ["nanoid@3.3.6", "", {}, "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="], + + "vite-node/vite/postcss/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "vitest/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.18.20", "", {}, "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw=="], + + "vitest/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.18.20", "", {}, "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ=="], + + "vitest/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.18.20", "", {}, "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg=="], + + "vitest/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.18.20", "", {}, "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA=="], + + "vitest/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.18.20", "", {}, "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ=="], + + "vitest/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.18.20", "", {}, "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw=="], + + "vitest/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.18.20", "", {}, "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ=="], + + "vitest/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.18.20", "", {}, "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg=="], + + "vitest/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.18.20", "", {}, "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA=="], + + "vitest/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.18.20", "", {}, "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA=="], + + "vitest/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.18.20", "", {}, "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg=="], + + "vitest/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.18.20", "", {}, "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ=="], + + "vitest/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.18.20", "", {}, "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA=="], + + "vitest/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.18.20", "", {}, "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A=="], + + "vitest/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.18.20", "", {}, "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ=="], + + "vitest/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.18.20", "", {}, "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w=="], + + "vitest/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.18.20", "", {}, "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A=="], + + "vitest/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.18.20", "", {}, "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg=="], + + "vitest/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.18.20", "", {}, "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ=="], + + "vitest/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.18.20", "", {}, "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg=="], + + "vitest/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.18.20", "", {}, "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g=="], + + "vitest/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.18.20", "", {}, "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ=="], + + "vitest/vite/postcss/nanoid": ["nanoid@3.3.6", "", {}, "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="], + + "vitest/vite/postcss/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "@ardatan/relay-compiler/yargs/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-split-export-declaration/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.22.5", "", {}, "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="], + + "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/register/find-cache-dir/pkg-dir/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", { "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@istanbuljs/load-nyc-config/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@npmcli/map-workspaces/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "@npmcli/package-json/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "@oclif/command/@oclif/plugin-help/@oclif/command/@oclif/config/globby": ["globby@https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/command/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/command/@oclif/errors/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "@oclif/command/@oclif/plugin-help/@oclif/config/@oclif/errors/clean-stack": ["clean-stack@https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz", { "dependencies": { "escape-string-regexp": "4.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/config/@oclif/errors/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "@oclif/command/@oclif/plugin-help/@oclif/config/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@oclif/plugin-help/@oclif/command/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@oclif/plugin-help/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@oclif/plugin-help/wrap-ansi/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@storybook/cli/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@storybook/cli/@babel/preset-env/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@storybook/cli/@babel/preset-env/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@storybook/cli/@babel/preset-env/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.22.9", "", { "dependencies": { "@babel/helper-function-name": "^7.22.5", "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/cli/@babel/preset-env/core-js-compat/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@storybook/cli/@babel/preset-env/core-js-compat/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@storybook/cli/@babel/preset-env/core-js-compat/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@storybook/cli/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "@storybook/cli/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", {}], + + "@storybook/cli/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@storybook/codemod/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@storybook/codemod/@babel/preset-env/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@storybook/codemod/@babel/preset-env/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.22.9", "", { "dependencies": { "@babel/helper-function-name": "^7.22.5", "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-simple-access": ["@babel/helper-simple-access@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.22.6", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.22.5", "", {}, "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.22.5", "", { "dependencies": { "@babel/types": "^7.22.5" } }, "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="], + + "@storybook/codemod/@babel/preset-env/core-js-compat/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001517", "", {}, "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="], + + "@storybook/codemod/@babel/preset-env/core-js-compat/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.468", "", {}, "sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag=="], + + "@storybook/codemod/@babel/preset-env/core-js-compat/browserslist/node-releases": ["node-releases@2.0.13", "", {}, "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="], + + "@storybook/core-server/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "@storybook/core-server/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", {}], + + "@storybook/core-server/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/telemetry/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "@storybook/telemetry/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", {}], + + "@storybook/telemetry/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "@svgx/core/svgo/css-select/domhandler/domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", {}], + + "@svgx/core/svgo/css-select/domutils/dom-serializer": ["dom-serializer@https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", { "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }], + + "@svgx/core/svgo/css-select/domutils/domelementtype": ["domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", {}], + + "@svgx/core/svgo/csso/css-tree/mdn-data": ["mdn-data@https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", {}], + + "@svgx/core/svgo/csso/css-tree/source-map-js": ["source-map-js@https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", {}], + + "@typescript-eslint/experimental-utils/@typescript-eslint/typescript-estree/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/read-pkg/@types/normalize-package-data": ["@types/normalize-package-data@https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/read-pkg/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@umijs/fabric/eslint/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "@vitejs/plugin-react/@babel/core/@babel/generator/@jridgewell/gen-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@vitejs/plugin-react/@babel/core/@babel/generator/@jridgewell/trace-mapping/@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], + + "@vitejs/plugin-react/@babel/core/@babel/generator/@jridgewell/trace-mapping/@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001778", "", {}, "sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.313", "", {}, "sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.36", "", {}, "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.2.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/lru-cache/yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], + + "@vitjs/runtime/react-router-dom/react-router/path-to-regexp/isarray": ["isarray@https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", {}], + + "cacache/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "chalk-template/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], + + "eslint-plugin-unicorn/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "eslint-plugin-unicorn/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", {}], + + "eslint-plugin-unicorn/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "fbjs/cross-fetch/node-fetch/whatwg-url/tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}], + + "fbjs/cross-fetch/node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}], + + "find-cache-dir/pkg-dir/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/graphql-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "graphql-language-service-interface/graphql-config/@graphql-tools/json-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate/@graphql-tools/batch-execute": ["@graphql-tools/batch-execute@https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.21.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "dataloader": "^2.2.2", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate/@graphql-tools/executor": ["@graphql-tools/executor@https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.19.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@graphql-typed-document-node/core": "3.2.0", "@repeaterjs/repeater": "^3.0.4", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate/@graphql-tools/schema": ["@graphql-tools/schema@https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", { "dependencies": { "@graphql-tools/merge": "^8.4.1", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-graphql-ws/graphql-ws": ["graphql-ws@https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.12.1.tgz", {}], + + "graphql-language-service-interface/graphql-config/@graphql-tools/url-loader/@graphql-tools/wrap/@graphql-tools/schema": ["@graphql-tools/schema@https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", { "dependencies": { "@graphql-tools/merge": "^8.4.1", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/graphql-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "graphql-language-service-types/graphql-config/@graphql-tools/json-file-loader/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate/@graphql-tools/batch-execute": ["@graphql-tools/batch-execute@https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.21.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "dataloader": "^2.2.2", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate/@graphql-tools/executor": ["@graphql-tools/executor@https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.19.tgz", { "dependencies": { "@graphql-tools/utils": "^9.2.1", "@graphql-typed-document-node/core": "3.2.0", "@repeaterjs/repeater": "^3.0.4", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/delegate/@graphql-tools/schema": ["@graphql-tools/schema@https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", { "dependencies": { "@graphql-tools/merge": "^8.4.1", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/executor-graphql-ws/graphql-ws": ["graphql-ws@https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.12.1.tgz", {}], + + "graphql-language-service-types/graphql-config/@graphql-tools/url-loader/@graphql-tools/wrap/@graphql-tools/schema": ["@graphql-tools/schema@https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", { "dependencies": { "@graphql-tools/merge": "^8.4.1", "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", "value-or-promise": "^1.0.12" } }], + + "graphql-request/cross-fetch/node-fetch/whatwg-url/tr46": ["tr46@https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", {}], + + "graphql-request/cross-fetch/node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", {}], + + "node-gyp/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "pkg-conf/find-up/locate-path/p-locate/p-limit": ["p-limit@1.3.0", "", { "dependencies": { "p-try": "^1.0.0" } }, "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="], + + "read-package-json/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", {}], + + "read-pkg/parse-json/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.20", "", {}, "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="], + + "read-pkg/parse-json/@babel/code-frame/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "read-pkg/parse-json/@babel/code-frame/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "read-pkg/parse-json/@babel/code-frame/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "signale/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "stylelint/meow/normalize-package-data/hosted-git-info/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "stylelint/meow/normalize-package-data/semver/lru-cache": ["lru-cache@https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", { "dependencies": { "yallist": "^4.0.0" } }], + + "stylelint/meow/read-pkg-up/find-up/locate-path": ["locate-path@https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", { "dependencies": { "p-locate": "^4.1.0" } }], + + "stylelint/meow/read-pkg-up/read-pkg/@types/normalize-package-data": ["@types/normalize-package-data@https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", {}], + + "stylelint/meow/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }], + + "stylelint/meow/read-pkg-up/read-pkg/type-fest": ["type-fest@https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", {}], + + "vite-node/mlly/pkg-types/mlly/acorn": ["acorn@https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", {}], + + "vite-node/mlly/pkg-types/mlly/pkg-types": ["pkg-types@https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.2.tgz", { "dependencies": { "jsonc-parser": "^3.2.0", "mlly": "^1.1.1", "pathe": "^1.1.0" } }], + + "vite-node/mlly/pkg-types/mlly/ufo": ["ufo@https://registry.npmjs.org/ufo/-/ufo-1.1.1.tgz", {}], + + "@ardatan/relay-compiler/yargs/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@babel/register/find-cache-dir/pkg-dir/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", { "dependencies": { "p-limit": "^2.0.0" } }], + + "@babel/register/find-cache-dir/pkg-dir/find-up/locate-path/path-exists": ["path-exists@https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", {}], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@oclif/command/@oclif/plugin-help/@oclif/command/@oclif/config/globby/slash": ["slash@https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/cli/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/helper-function-name": ["@babel/helper-function-name@7.22.5", "", { "dependencies": { "@babel/template": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template": ["@babel/template@7.22.5", "", { "dependencies": { "@babel/code-frame": "^7.22.5", "@babel/parser": "^7.22.5", "@babel/types": "^7.22.5" } }, "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/core-server/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/telemetry/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist/update-browserslist-db/escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], + + "@vitejs/plugin-react/@babel/core/@babel/helper-compilation-targets/browserslist/update-browserslist-db/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "eslint-plugin-unicorn/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "find-cache-dir/pkg-dir/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "pkg-conf/find-up/locate-path/p-locate/p-limit/p-try": ["p-try@1.0.0", "", {}, "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww=="], + + "read-pkg/parse-json/@babel/code-frame/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "read-pkg/parse-json/@babel/code-frame/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "stylelint/meow/normalize-package-data/hosted-git-info/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "stylelint/meow/normalize-package-data/semver/lru-cache/yallist": ["yallist@https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", {}], + + "stylelint/meow/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", { "dependencies": { "p-limit": "^2.2.0" } }], + + "stylelint/meow/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", {}], + + "stylelint/meow/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", {}], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@babel/register/find-cache-dir/pkg-dir/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame": ["@babel/code-frame@7.22.5", "", { "dependencies": { "@babel/highlight": "^7.22.5" } }, "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/parser": ["@babel/parser@7.22.7", "", {}, "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@umijs/fabric/eslint-plugin-unicorn/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "read-pkg/parse-json/@babel/code-frame/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "stylelint/meow/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", { "dependencies": { "p-try": "^2.0.0" } }], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@graphql-tools/graphql-tag-pluck/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/codemod/@babel/core/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight": ["@babel/highlight@7.22.5", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/csf-tools/@babel/traverse/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.22.5", "", {}, "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk": ["chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles": ["ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", { "dependencies": { "color-convert": "^1.9.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color": ["supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", { "dependencies": { "has-flag": "^3.0.0" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", { "dependencies": { "color-name": "1.1.3" } }], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/supports-color/has-flag": ["has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-function-name/@babel/helper-function-name/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/cli/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + + "@storybook/codemod/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", {}], + } +} diff --git a/config/routes.ts b/config/routes.ts index 1a1b385f..904e2a86 100644 --- a/config/routes.ts +++ b/config/routes.ts @@ -9,20 +9,33 @@ export default [ path: paths.CALLBACK, component: "./pages/Callback", }, + { + path: paths.SIGNIN, + component: "./pages/SignIn", + }, + { + path: paths.SIGNUP, + component: "./pages/SignUp", + }, + { + path: paths.LOGOUT, + component: "./pages/Logout", + }, + // Legacy auth paths redirect to new paths { path: paths.AUTH, routes: [ { - path: paths.SIGNUP, - component: "./pages/SignUp", + path: `${paths.AUTH}/signup`, + redirect: paths.SIGNUP, }, { - path: paths.SIGNIN, - component: "./pages/SignIn", + path: `${paths.AUTH}/signin`, + redirect: paths.SIGNIN, }, { - path: paths.LOGOUT, - component: "./pages/Logout", + path: `${paths.AUTH}/logout`, + redirect: paths.LOGOUT, }, { redirect: paths.SIGNIN, @@ -57,6 +70,9 @@ export default [ path: `${paths.REPORTS}/:reportId?`, component: "./pages/Reports", }, + { + component: "./pages/404", + }, ], }, { @@ -95,6 +111,21 @@ export default [ path: paths.INFO, component: "./pages/PersonalInfo", }, + { + path: paths.ADMIN_TEAM_PROPERTIES, + component: "./pages/AdminTeamProperties", + }, + { + path: paths.ADMIN_MEMBER_PROPERTIES, + component: "./pages/AdminMemberProperties", + }, + { + path: paths.ADMIN_QUERY_RULES, + component: "./pages/AdminQueryRules", + }, + { + component: "./pages/404", + }, ], }, { diff --git a/index.html b/index.html index b1e95436..03732510 100644 --- a/index.html +++ b/index.html @@ -2,34 +2,34 @@ - + + + + - + - + - + - + - - Synmetrix: seamlessly connect, analyze, and innovate with the Metrics - Store - + FraiOS Semantic Layer diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 00000000..aec8180d --- /dev/null +++ b/nginx.conf @@ -0,0 +1,84 @@ +server { + listen 80; + server_name localhost; + root /usr/share/nginx/html; + index index.html; + + # Security headers + add_header X-Frame-Options DENY always; + add_header X-Content-Type-Options nosniff always; + add_header X-XSS-Protection "1; mode=block" always; + add_header Referrer-Policy "strict-origin-when-cross-origin" always; + + # Gzip compression + gzip on; + gzip_vary on; + gzip_min_length 1024; + gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript application/wasm; + + # Proxy GraphQL API to Hasura + location /v1/graphql { + proxy_pass http://synmetrix-hasura:8080; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection 'upgrade'; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_cache_bypass $http_upgrade; + } + + # Proxy WebSocket for GraphQL subscriptions + location /v1/ws { + proxy_pass http://synmetrix-hasura:8080/v1/graphql; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Proxy authentication service (WorkOS via Actions) + location /auth { + proxy_pass http://synmetrix-actions:3000; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Proxy backend API — streaming exports need buffering off and extended timeout + location /api/v1 { + proxy_pass http://synmetrix-cubejs:4000; + proxy_http_version 1.1; + proxy_buffering off; + proxy_read_timeout 600s; + proxy_send_timeout 600s; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Cache static assets + location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { + expires 1y; + add_header Cache-Control "public, immutable"; + } + + # Health check endpoint + location /health { + access_log off; + return 200 "healthy\n"; + add_header Content-Type text/plain; + } + + # Handle client-side routing (must be last) + location / { + try_files $uri /index.html; + } +} \ No newline at end of file diff --git a/package.json b/package.json index 4eec8907..9a25fc60 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,32 @@ { - "name": "synmetrix-client", + "name": "fraios-semantic-layer", "version": "1.0.0", "scripts": { - "build": "vite build", + "build": "./node_modules/.bin/vite build", "postbuild": "tar -czvf dist.tar.gz dist && zip -r dist.zip dist", - "build-storybook": "storybook build", - "codegen": "graphql-codegen", - "codegen:watch": "graphql-codegen --watch", - "dev": "cross-env BROWSER=chrome vite --host", - "dev:force": "npm run dev -- --force", - "lint": "npm run lint:js && tsc", - "lint-staged": "lint-staged", - "lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx", - "lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src", - "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src", - "loadschema": "gq http://localhost:8080/v1/graphql -H \"X-Hasura-Admin-Secret: devsecret\" --introspect --format json > src/graphql/schemas/hasura.json", - "prepare": "husky install .husky", - "prettier": "prettier --check --write \"src/**/*\"", - "semantic-release": "semantic-release", - "serve": "vite preview --host", - "start": "npm run dev", - "storybook": "storybook dev -p 6007", - "test": "vitest" + "build-storybook": "bunx --bun storybook build", + "codegen": "bunx --bun graphql-codegen", + "codegen:watch": "bunx --bun graphql-codegen --watch", + "dev": "./node_modules/.bin/vite --host", + "dev:force": "bun run dev -- --force", + "lint": "bun run lint:js && bunx --bun tsc", + "lint-staged": "bunx --bun lint-staged", + "lint-staged:js": "bunx --bun eslint --ext .js,.jsx,.ts,.tsx", + "lint:fix": "bunx --bun eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src", + "lint:js": "bunx --bun eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src", + "loadschema": "bunx --bun gq http://localhost:8080/v1/graphql -H \"X-Hasura-Admin-Secret: devsecret\" --introspect --format json > src/graphql/schemas/hasura.json", + "prepare": "node node_modules/husky/lib/bin.js install .husky", + "prettier": "bunx --bun prettier --check --write \"src/**/*\"", + "semantic-release": "bunx --bun semantic-release", + "serve": "./node_modules/.bin/vite preview --host", + "start": "bun run dev", + "storybook": "bunx --bun storybook dev -p 6007", + "test": "bunx --bun vitest" }, "lint-staged": { "{,!(node_modules)/**/}*.{js,jsx,ts,tsx}": [ - "eslint --fix", - "prettier --write" + "node ./node_modules/eslint/bin/eslint.js --fix", + "node ./node_modules/prettier/bin-prettier.js --write" ] }, "browserslist": [ @@ -60,6 +60,7 @@ "@vitjs/runtime": "^0.9.2", "ahooks": "^3.7.8", "antd": "^5.13.1", + "apache-arrow": "^21.1.0", "classnames": "^2.3.2", "copy-to-clipboard": "^3.3.3", "cronstrue": "^2.31.0", @@ -87,6 +88,7 @@ "react-fast-marquee": "^1.5.2", "react-hook-form": "^7.45.1", "react-i18next": "^13.0.1", + "react-querybuilder": "^8.14.0", "react-resizable": "^3.0.5", "react-responsive-masonry": "^2.1.7", "react-responsive-modal": "^6.4.2", @@ -97,6 +99,7 @@ "unchanged": "^2.2.1", "urql": "^4.0.5", "use-local-storage-state": "^19.1.0", + "yaml": "^2.3.4", "zustand": "^4.4.1" }, "devDependencies": { @@ -142,10 +145,9 @@ "@typescript-eslint/eslint-plugin": "^5.59.1", "@typescript-eslint/parser": "^5.59.1", "@umijs/fabric": "^2.14.1", - "@vitejs/plugin-react": "^4.2.1", + "@vitejs/plugin-react": "^5.2.0", "@vitjs/vit": "^0.9.1", "babel-loader": "^9.1.2", - "cross-env": "^7.0.3", "eslint": "^8.39.0", "eslint-config-prettier": "^8.7.0", "eslint-import-resolver-typescript": "^3.5.5", @@ -166,13 +168,12 @@ "storybook": "^7.4.5", "typescript": "^5.0.4", "unplugin-auto-import": "^0.15.3", - "vite": "^4.4.9", + "vite": "^8.0.0", "vite-plugin-imp": "^2.4.0", "vite-plugin-monaco-editor": "^1.1.0", "vite-plugin-rewrite-all": "^1.0.1", "vite-plugin-svg-loader": "^1.0.0", "vite-plugin-windicss": "^1.8.10", - "vite-tsconfig-paths": "^4.2.0", "vitest": "^0.34.6", "windicss": "^3.5.6" }, diff --git a/public/Frai-OSAppIcon.png b/public/Frai-OSAppIcon.png new file mode 100644 index 00000000..1b922f6f Binary files /dev/null and b/public/Frai-OSAppIcon.png differ diff --git a/public/FraioS-icon-darktheme.svg b/public/FraioS-icon-darktheme.svg new file mode 100644 index 00000000..66949530 --- /dev/null +++ b/public/FraioS-icon-darktheme.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/FraioS-icon-lighttheme.svg b/public/FraioS-icon-lighttheme.svg new file mode 100644 index 00000000..66949530 --- /dev/null +++ b/public/FraioS-icon-lighttheme.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/FraioS-logo-darktheme.svg b/public/FraioS-logo-darktheme.svg new file mode 100644 index 00000000..dcae7bcf --- /dev/null +++ b/public/FraioS-logo-darktheme.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/FraioS-logo-lighttheme.svg b/public/FraioS-logo-lighttheme.svg new file mode 100644 index 00000000..5365d242 --- /dev/null +++ b/public/FraioS-logo-lighttheme.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/cxs-logo.svg b/public/cxs-logo.svg new file mode 100644 index 00000000..4735bc61 --- /dev/null +++ b/public/cxs-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/cxs.svg b/public/cxs.svg new file mode 100644 index 00000000..e1112f0d --- /dev/null +++ b/public/cxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 82775591..5b488fa4 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -30,6 +30,7 @@ "columns": "columns", "select_all": "Select all", "clear": "Clear", + "copy": "Copy", "docs": "Docs", "team": "Team", "host": "Host", diff --git a/public/locales/en/explore.json b/public/locales/en/explore.json index 34842e42..36731322 100644 --- a/public/locales/en/explore.json +++ b/public/locales/en/explore.json @@ -21,6 +21,11 @@ "sql": "Generated SQL", "rest_api": "REST API", "run_query": "Run Query", + "query_time": "Query time", + "apply_to_explore": "Apply to Explore", + "apply_to_explore_success": "Query applied to Explore. Click Run Query to execute.", + "apply_to_explore_error": "Could not apply query", + "copy": "Copy", "export": "Export", "new": "New", "results": "Results", diff --git a/public/locales/en/models.json b/public/locales/en/models.json index a639e20d..c7bde4a5 100644 --- a/public/locales/en/models.json +++ b/public/locales/en/models.json @@ -34,5 +34,11 @@ "remove_branch": "Remove branch" }, "last_modify": "Last modify", - "no_model": "Select model to edit" + "no_model": "Select model to edit", + "smart_gen": { + "output_names_title": "Output names & save location", + "output_save_branch_label": "Save generated model to branch", + "output_save_branch_hint": "The new file and version are created on this branch (can differ from the sidebar). By default, matches the branch you used when profiling; change it here before Preview or Apply.", + "no_branches": "This data source has no branches. Create a branch first, then use Smart Generate." + } } diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 75f8376c..dbab5e3a 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -30,6 +30,7 @@ "columns": "столбцы", "select_all": "Выбрать все", "clear": "Очистить", + "copy": "Копировать", "docs": "Документация", "team": "Команда", "host": "Хост", diff --git a/public/locales/ru/explore.json b/public/locales/ru/explore.json index 4f074e47..39e3c16e 100644 --- a/public/locales/ru/explore.json +++ b/public/locales/ru/explore.json @@ -21,6 +21,11 @@ "sql": "Сгенерированный SQL", "rest_api": "REST API", "run_query": "Выполнить запрос", + "query_time": "Время запроса", + "apply_to_explore": "Применить к Explore", + "apply_to_explore_success": "Запрос применён к Explore. Нажмите «Выполнить запрос».", + "apply_to_explore_error": "Не удалось применить запрос", + "copy": "Копировать", "export": "Экспорт", "new": "Новый", "results": "Результаты", diff --git a/public/locales/ru/models.json b/public/locales/ru/models.json index c9f1bc10..99713dd6 100644 --- a/public/locales/ru/models.json +++ b/public/locales/ru/models.json @@ -34,5 +34,11 @@ "remove_branch": "Удалить ветку" }, "last_modify": "Последнее изменение", - "no_model": "Выберите модель для редактирования" + "no_model": "Выберите модель для редактирования", + "smart_gen": { + "output_names_title": "Имена и место сохранения", + "output_save_branch_label": "Сохранить сгенерированную модель в ветку", + "output_save_branch_hint": "Новый файл и версия создаются в этой ветке (может отличаться от боковой панели). По умолчанию совпадает с веткой, в которой вы запускали профилирование; перед предпросмотром или применением можно сменить.", + "no_branches": "У источника данных нет веток. Сначала создайте ветку, затем запустите умную генерацию." + } } diff --git a/public/locales/zh/common.json b/public/locales/zh/common.json index 42378775..bf1c4707 100644 --- a/public/locales/zh/common.json +++ b/public/locales/zh/common.json @@ -30,6 +30,7 @@ "columns": "列", "select_all": "全选", "clear": "清除", + "copy": "复制", "docs": "文档", "team": "团队", "host": "主机", diff --git a/public/locales/zh/explore.json b/public/locales/zh/explore.json index e5469328..86fbb046 100644 --- a/public/locales/zh/explore.json +++ b/public/locales/zh/explore.json @@ -21,6 +21,11 @@ "sql": "生成的 SQL", "rest_api": "REST API", "run_query": "运行查询", + "query_time": "查询时间", + "apply_to_explore": "应用到 Explore", + "apply_to_explore_success": "查询已应用到 Explore。点击运行查询以执行。", + "apply_to_explore_error": "无法应用查询", + "copy": "复制", "export": "导出", "new": "新建", "results": "结果", diff --git a/public/locales/zh/models.json b/public/locales/zh/models.json index 8285aeea..6c9cfc20 100644 --- a/public/locales/zh/models.json +++ b/public/locales/zh/models.json @@ -34,5 +34,11 @@ "remove_branch": "删除分支" }, "last_modify": "上次修改", - "no_model": "选择要编辑的模型" + "no_model": "选择要编辑的模型", + "smart_gen": { + "output_names_title": "输出名称与保存位置", + "output_save_branch_label": "将生成的模型保存到分支", + "output_save_branch_hint": "新文件和版本会写入此分支(可与侧栏不同)。默认与剖析时所在分支一致;在预览或应用前可在此修改。", + "no_branches": "此数据源还没有分支。请先创建分支,再使用智能生成。" + } } diff --git a/specs/004-rebranding/checklists/requirements.md b/specs/004-rebranding/checklists/requirements.md new file mode 100644 index 00000000..82d69b77 --- /dev/null +++ b/specs/004-rebranding/checklists/requirements.md @@ -0,0 +1,36 @@ +# Specification Quality Checklist: FraiOS Semantic Layer Rebranding + +**Purpose**: Validate specification completeness and quality before proceeding to planning +**Created**: 2026-03-07 +**Feature**: [spec.md](../spec.md) + +## Content Quality + +- [x] No implementation details (languages, frameworks, APIs) +- [x] Focused on user value and business needs +- [x] Written for non-technical stakeholders +- [x] All mandatory sections completed + +## Requirement Completeness + +- [x] No [NEEDS CLARIFICATION] markers remain +- [x] Requirements are testable and unambiguous +- [x] Success criteria are measurable +- [x] Success criteria are technology-agnostic (no implementation details) +- [x] All acceptance scenarios are defined +- [x] Edge cases are identified +- [x] Scope is clearly bounded +- [x] Dependencies and assumptions identified + +## Feature Readiness + +- [x] All functional requirements have clear acceptance criteria +- [x] User scenarios cover primary flows +- [x] Feature meets measurable outcomes defined in Success Criteria +- [x] No implementation details leak into specification + +## Notes + +- All items pass validation. Spec is ready for `/speckit.clarify` or `/speckit.plan`. +- Minor note: FR-003, FR-004 reference specific file paths from `public/` folder. These are asset references (not implementation details) and are acceptable since they describe WHAT assets to use, not HOW to use them. +- SC-006 references "Storybook" which is a project tool, not an implementation detail — acceptable for validation criteria. diff --git a/specs/004-rebranding/contracts/README.md b/specs/004-rebranding/contracts/README.md new file mode 100644 index 00000000..acbc421c --- /dev/null +++ b/specs/004-rebranding/contracts/README.md @@ -0,0 +1,7 @@ +# Contracts: FraiOS Semantic Layer Rebranding + +This feature has no external interface contracts. It is a purely visual +rebranding effort that modifies CSS values, static assets, and text +strings within the existing frontend application. + +No APIs, GraphQL operations, or data contracts are added or changed. diff --git a/specs/004-rebranding/data-model.md b/specs/004-rebranding/data-model.md new file mode 100644 index 00000000..c622c013 --- /dev/null +++ b/specs/004-rebranding/data-model.md @@ -0,0 +1,65 @@ +# Data Model: FraiOS Semantic Layer Rebranding + +**Branch**: `004-rebranding` | **Date**: 2026-03-07 + +This feature involves no data model changes. It is a purely visual/UI +rebranding effort affecting: + +- Static assets (logos, favicon, OG image) +- CSS custom properties and color tokens +- Ant Design theme configuration +- Typography declarations +- Glass morphism styling on layout surfaces +- User-facing text strings + +No database schema, GraphQL operations, or state management changes +are required. + +## Entities Affected (UI Only) + +### Brand Assets (Static Files) + +| Asset | Current File | Replacement | +|-------|-------------|-------------| +| Favicon | `public/logo.png` | `public/FraioS-icon-lighttheme.svg` | +| Sidebar icon | `public/logo_bg.png` | `public/FraioS-icon-lighttheme.svg` | +| Header logo | `public/logo_with_text.png` | `public/FraioS-logo-lighttheme.svg` | +| OG image | `public/og.png` | `public/Frai-OSAppIcon.png` | + +### Color Tokens + +| Token | Current Value | New Value | +|-------|--------------|-----------| +| `--color-primary` | `#470d69` | `#3f6587` | +| `--color-mediumpurple` | `#a56edd` | `#5a8ab5` | +| `--color-darkorchid` | `#b65cf8` | `#6ba3d6` | +| `--color-dimgray-100` | `#463854` | `#3a4f63` | +| `--color-dimgray-200` | `rgba(70,56,84,0.2)` | `rgba(58,79,99,0.2)` | +| `--color-dimgray-300` | `rgba(70,56,84,0.1)` | `rgba(58,79,99,0.1)` | +| `--color-whitesmoke` | `#e9e8ee` | `#e8edf2` | +| Ant Design `colorPrimary` | `#470D69` | `#3f6587` | + +### Typography Tokens + +| Token | Current Value | New Value | +|-------|--------------|-----------| +| `--font-manrope` | `"Manrope"` | `"Inter"` | +| Ant Design `fontFamily` | `"Manrope"` | `"Inter"` | +| Heading font | Manrope | Lato | +| Body font | Manrope | Inter | + +### Hardcoded Color Replacements + +| Pattern | Replacement | Files Affected | +|---------|-------------|----------------| +| `#470d69` / `#470D69` | `#3f6587` | 8 LESS + 2 TS files | +| `#a31bcb` / `#A31BCB` | `#4a7faa` | ~15 LESS files | +| `rgba(71, 13, 105, *)` | `rgba(63, 101, 135, *)` | ~8 LESS files | +| `rgba(163, 27, 203, *)` | `rgba(74, 127, 170, *)` | ~12 LESS files | +| `#470D6999` | `#3f658799` | 1 TS file (colors.ts) | +| `#A31BCB80` | `#4a7faa80` | 1 TS file (colors.ts) | +| `#892C6C99` | `#4a6f8999` | 1 TS file (colors.ts) | +| `#EDE7F0` (light purple tag) | `#E0EAF0` (light blue tag) | 2 TSX files | +| `#470D69` / `#A31BCB` in SVGs | `#3f6587` / `#4a7faa` | ~33 SVG assets | +| `starColor="#A31BCB"` | `starColor="#4a7faa"` | 2 TSX files (AlertForm, ReportForm) | +| `color="#A31BCB"` (Badge) | `color="#4a7faa"` | 1 TSX file (VersionPreview) | diff --git a/specs/004-rebranding/plan.md b/specs/004-rebranding/plan.md new file mode 100644 index 00000000..44bbe108 --- /dev/null +++ b/specs/004-rebranding/plan.md @@ -0,0 +1,161 @@ +# Implementation Plan: FraiOS Semantic Layer Rebranding + +**Branch**: `004-rebranding` | **Date**: 2026-03-07 | **Spec**: [spec.md](spec.md) +**Input**: Feature specification from `/specs/004-rebranding/spec.md` + +## Summary + +Rebrand the Synmetrix Client application as "FraiOS Semantic Layer" by +replacing all visual identity elements (logos, favicon, OG tags), +migrating the purple color system to FraiOS blue, updating typography +from Manrope to Lato/Inter, applying glass morphism to key layout +surfaces, and removing all user-facing Synmetrix text references. + +## Technical Context + +**Language/Version**: TypeScript 5 + React 18 +**Primary Dependencies**: Ant Design 5, Vite 4, LESS, CSS Modules +**Storage**: N/A (no data model changes) +**Testing**: Vitest + Testing Library +**Target Platform**: Web (modern browsers) +**Project Type**: Single-page web application +**Performance Goals**: No degradation from current — glass morphism +backdrop-blur must not cause visible jank on mid-range devices +**Constraints**: Must not modify backend service names (nginx.conf +proxy targets), must preserve existing component functionality +**Scale/Scope**: ~35 LESS files, ~10 TSX files, ~33 SVG assets, +1 HTML file, 2 config files (~80 files total) + +## Constitution Check + +*GATE: Must pass before Phase 0 research. Re-check after Phase 1 design.* + +### I. Blueprint Alignment (FraiOS-First) + +- **PASS**: This feature directly advances FraiOS alignment by adopting + FraiOS visual identity, color system, typography, and glass morphism + design language. + +### II. Type Safety + +- **PASS**: No new types introduced. Existing TypeScript interfaces + unchanged. Color constants in `colors.ts` remain typed string arrays. + +### III. Component Conventions + +- **PASS**: All changes follow existing component structure + (`ComponentName/index.tsx` + `index.module.less`). No new components + created — only modifications to existing ones. + +### IV. Testing Discipline + +- **PASS**: Visual regression testing via Storybook. Build validation + via `bun run build`. Lint validation via `bun run lint`. No new + behavioral logic requiring unit tests. + +### V. Simplicity + +- **PASS**: Minimal changes per file — primarily value replacements + (colors, fonts, asset paths, text strings). Glass morphism adds CSS + properties to existing selectors rather than new abstractions. + +## Project Structure + +### Documentation (this feature) + +```text +specs/004-rebranding/ +├── plan.md # This file +├── research.md # Branding audit and color mapping +├── data-model.md # Token replacement tables +├── quickstart.md # Validation guide +└── tasks.md # Phase 2 output (via /speckit.tasks) +``` + +### Source Code (repository root) + +```text +src/ +├── global.less # CSS custom properties (color + font tokens) +├── layouts/ +│ └── RootLayout.tsx # Ant Design theme (colorPrimary, fontFamily) +├── components/ +│ ├── SideMenu/ +│ │ ├── index.tsx # Logo import +│ │ └── index.module.less # Sidebar background, glass morphism +│ ├── Header/ +│ │ ├── index.tsx # Logo import +│ │ └── index.module.less # Header background, glass morphism +│ ├── Navbar/ +│ │ ├── index.tsx # Docs link URL +│ │ └── index.module.less # Docs button color +│ ├── Sidebar/ +│ │ └── index.module.less # Right sidebar background, glass morphism +│ ├── Footer/ +│ │ └── index.tsx # Copyright text (commented) +│ ├── ModelsSidebar/index.module.less # Hardcoded purple +│ ├── CodeEditor/index.module.less # Hardcoded purple +│ ├── AlertForm/index.module.less # Hardcoded purple +│ ├── ReportForm/index.module.less # Hardcoded purple +│ ├── PageHeader/index.module.less # Hardcoded purple +│ ├── RestAPI/index.module.less # Hardcoded purple +│ ├── DataSourcesMenu/index.module.less # Hardcoded purple +│ ├── VersionsList/index.module.less # Hardcoded purple +│ ├── BranchSelection/index.module.less # rgba purple +│ ├── ExploreCubes/index.module.less # rgba purple +│ ├── ExploreCubesCategoryItem/index.module.less +│ ├── ExploreDataSection/index.module.less +│ ├── ExploreSegmentsSection/index.module.less +│ ├── ExploreCubesCategoryItemFilter/index.module.less +│ ├── ExploreFiltersSection/index.module.less +│ ├── Input/index.module.less +│ ├── RequestInfo/index.module.less +│ ├── QueryFilters/index.module.less +│ ├── SQLRunner/index.module.less +│ ├── FormTile/index.module.less +│ ├── SignInForm/index.module.less +│ ├── SignUpForm/index.module.less +│ ├── LogoutSessions/index.module.less +│ ├── DataSourceSetup/index.module.less +│ ├── DataModelGeneration/index.module.less +│ ├── SidebarMenu/index.module.less +│ ├── StepFormHeader/index.module.less +│ ├── ApiSetup/index.module.less +│ └── VirtualTable/index.module.less +├── pages/ +│ ├── Members/index.module.less # Hardcoded purple +│ ├── Callback/index.module.less # Purple +│ ├── ExportModels/index.module.less # Purple +│ ├── Logout/index.module.less # Purple +│ └── Teams/index.tsx # Avatar colors + Tag colors +├── components/ (additional TSX with hardcoded colors) +│ ├── TeamsTable/index.tsx # Avatar colors + Tag colors +│ ├── VersionPreview/index.tsx # Badge color="#A31BCB" +│ ├── AlertForm/index.tsx # starColor="#A31BCB" +│ ├── ReportForm/index.tsx # starColor="#A31BCB" +│ └── NestedTag/index.stories.tsx # Story color examples +├── utils/ +│ └── constants/ +│ ├── colors.ts # Chart color constants +│ └── links.ts # docs.synmetrix.org URLs +├── assets/ # ~33 SVG icons with hardcoded purple +│ ├── alert-close.svg, alert.svg # #470D69 +│ ├── branch-colored.svg, copy.svg # #470D69, #A31BCB +│ ├── member-*.svg (9 files) # #470D69 +│ ├── report.svg, save.svg, send.svg # #470D69, #A31BCB +│ └── ... (see research.md for full list) +├── mocks/ +│ ├── members.ts # Mock emails +│ └── request.ts # Mock path +index.html # Title, favicon, OG tags +package.json # Package name +``` + +**Structure Decision**: Single project, frontend-only. All changes are +CSS/LESS value replacements, asset swaps, and text string updates +within the existing `src/` structure. No new directories or files +needed. + +## Complexity Tracking + +> No constitution violations. No complexity justifications needed. diff --git a/specs/004-rebranding/quickstart.md b/specs/004-rebranding/quickstart.md new file mode 100644 index 00000000..ee40c1d1 --- /dev/null +++ b/specs/004-rebranding/quickstart.md @@ -0,0 +1,74 @@ +# Quickstart: FraiOS Semantic Layer Rebranding + +**Branch**: `004-rebranding` | **Date**: 2026-03-07 + +## Prerequisites + +- Bun installed (`bun --version`) +- Repository cloned and on `004-rebranding` branch +- FraiOS brand assets present in `public/` folder: + - `FraioS-icon-lighttheme.svg` + - `FraioS-icon-darktheme.svg` + - `FraioS-logo-lighttheme.svg` + - `FraioS-logo-darktheme.svg` + - `Frai-OSAppIcon.png` + +## Setup + +```bash +git checkout 004-rebranding +bun install +``` + +## Development + +```bash +bun run dev +``` + +Open `http://localhost:8000` to see the application. Verify: + +1. **Favicon**: Browser tab shows FraiOS pinwheel icon +2. **Page title**: Tab reads "FraiOS Semantic Layer" +3. **Sidebar**: Blue-tinted glass sidebar with FraiOS icon +4. **Header**: FraiOS full logo displayed +5. **Colors**: No purple elements visible — all blue palette +6. **Typography**: Inter body text, Lato headings + +## Validation Checklist + +```bash +# Build succeeds +bun run build + +# Lint passes +bun run lint + +# Tests pass +bun run test + +# No remaining Synmetrix references in user-facing code +grep -ri "synmetrix" src/ --include="*.tsx" --include="*.ts" \ + --include="*.less" --include="*.css" | \ + grep -v "node_modules" | grep -v ".spec." | grep -v "mocks/" + +# No remaining purple colors +grep -ri "#470d69\|#470D69\|#a31bcb\|#A31BCB" src/ \ + --include="*.less" --include="*.tsx" --include="*.ts" + +# Storybook renders +bun run storybook +``` + +## Key Files Modified + +| Category | Files | +|----------|-------| +| HTML/Meta | `index.html` | +| Theme | `src/layouts/RootLayout.tsx` | +| CSS Variables | `src/global.less` | +| Sidebar | `src/components/SideMenu/index.tsx`, `*.module.less` | +| Header | `src/components/Header/index.tsx`, `*.module.less` | +| Navbar | `src/components/Navbar/index.tsx`, `*.module.less` | +| Colors | ~35 `.module.less` files, `src/utils/constants/colors.ts` | +| Text | `src/utils/constants/links.ts`, `package.json` | diff --git a/specs/004-rebranding/research.md b/specs/004-rebranding/research.md new file mode 100644 index 00000000..4beefcf3 --- /dev/null +++ b/specs/004-rebranding/research.md @@ -0,0 +1,231 @@ +# Research: FraiOS Semantic Layer Rebranding + +**Branch**: `004-rebranding` | **Date**: 2026-03-07 + +## R1: Synmetrix Branding Touchpoints + +### Decision +All Synmetrix branding references must be replaced across 6 categories +of touchpoints identified in the codebase. + +### Findings + +**Category 1: HTML & Meta Tags** (`index.html`) +- Lines 8, 12, 15, 17, 20, 22, 29-31: page title, description, + og:title, og:description, twitter:title, twitter:description +- Favicon reference: `logo.png` +- OG image reference: `og.png` + +**Category 2: Logo Image References** +- `src/components/SideMenu/index.tsx` — imports `/logo_bg.png` +- `src/components/Header/index.tsx` — imports `logo_with_text.png` +- `README.md:1` — logo image reference + +**Category 3: Text Strings** +- `package.json:2` — `"name": "synmetrix-client"` +- `src/components/Navbar/index.tsx:65` — `href="https://docs.synmetrix.org"` +- `src/components/Footer/index.tsx:28,37` — copyright + email (commented out) +- `src/utils/constants/links.ts:2,4` — docs.synmetrix.org URLs +- `src/mocks/members.ts` — 6 mock email addresses `@synmetrix*.com` +- `src/mocks/request.ts:3` — mock path `/Synmetrixjs/datasources/v1/load` +- `README.md` — ~17 instances throughout + +**Category 4: Infrastructure (out of scope for user-facing rebranding)** +- `nginx.conf` — 4 proxy_pass references to `synmetrix-*` service names +- `.github/workflows/build-and-release.yml:58` — Docker image tag +- These are backend service names, NOT user-facing + +**Category 5: i18n** +- No "Synmetrix" strings found in translation JSON files (translations + use generic keys). No changes needed. + +**Category 6: Constitution/Specs** +- `.specify/memory/constitution.md:29` — title references Synmetrix + +### Alternatives Considered +- Partial rebrand (logos only): Rejected — leaves inconsistent text + references that confuse users. +- Automated find-replace: Risky — must preserve backend service names + in nginx.conf and Docker configs. + +--- + +## R2: Color System Scope + +### Decision +Replace all purple color values with FraiOS blue equivalents. Use CSS +custom properties as the primary mechanism; fix hardcoded values in +component files. + +### Findings + +**Central Definitions (2 locations):** +1. `src/global.less:123-124` — `--color-primary: #470d69`, + `--color-mediumpurple: #a56edd` +2. `src/layouts/RootLayout.tsx:19` — Ant Design `colorPrimary: "#470D69"` + +**CSS Variable Consumers (21 `.module.less` files):** +These files use `var(--color-primary)` and will automatically update +when the variable changes: Navbar, SideMenu, Button, Card, Avatar, +SignInForm, SignUpForm, SearchInput, LanguageToggler, LogoutSessions, +DataSourceSelection, DataSourceSetup, DataSourceCard, +DataModelGeneration, DataModelSelection, StepFormHeader, ApiSetup, +AccessCard, ExploreCubes, VirtualTable, Members page. + +**Hardcoded Purple Values (8 `.module.less` files):** +Files with `#470d69` hardcoded instead of using the CSS variable: +ModelsSidebar, CodeEditor, AlertForm, PageHeader, RestAPI, ReportForm, +DataSourcesMenu, VersionsList. + +**Additional Purple Colors (#a31bcb and rgba variants):** +~24 additional `.module.less` files use `#a31bcb`, +`rgba(163, 27, 203, *)`, or `rgba(71, 13, 105, *)` variants. + +**TypeScript/React hardcoded colors:** +- `src/utils/constants/colors.ts` — chart colors with `#470D6999`, + `#A31BCB80`, `#892C6C99` +- `src/components/TeamsTable/index.tsx:26` — avatar colors array + `["#000000", "#470D69", "#A31BCB"]` +- `src/pages/Teams/index.tsx:44` — duplicate avatar colors array +- `src/components/VersionPreview/index.tsx:50` — `color="#A31BCB"` Badge +- `src/components/AlertForm/index.tsx:202,241` — `starColor="#A31BCB"` +- `src/components/ReportForm/index.tsx:110,152` — `starColor="#A31BCB"` +- `src/components/NestedTag/index.stories.tsx` — story examples +- `src/pages/Teams/index.tsx:94` — Tag `color="#EDE7F0"` (light purple) +- `src/components/TeamsTable/index.tsx:45` — Tag `color="#EDE7F0"` + +**SVG assets with hardcoded purple (33 files in `src/assets/`):** +SVG icons containing `#470D69` or `#A31BCB`: alert-close, alert, +branch-colored, console-close, copy, csv, docs, eye, js-file, mail, +member-boolean through member-time (9 files), report, save, send, +table, webhook, yml-file, access-full, access-no, access-partial, +and others. + +**Other CSS variables needing review:** +- `--color-dimgray-100: #463854` (has purple tint) +- `--color-whitesmoke: #e9e8ee` (has purple tint) +- `--color-darkorchid: #b65cf8` (bright purple) +- `--color-dimgray-200/300` (rgba variants of purple-tinted gray) + +### Color Mapping + +| Synmetrix (Current) | FraiOS (Target) | Usage | +|---------------------|-----------------|-------| +| `#470d69` (primary purple) | `#3f6587` (brand blue) | Primary brand | +| `#a56edd` (medium purple) | `#5a8ab5` (medium blue) | Accent/secondary | +| `#a31bcb` (bright purple) | `#4a7faa` (bright blue) | Highlights | +| `#b65cf8` (dark orchid) | `#6ba3d6` (light blue) | Decorative | +| `rgba(71,13,105,*)` | `rgba(63,101,135,*)` | Transparent overlays | +| `rgba(163,27,203,*)` | `rgba(74,127,170,*)` | Transparent accents | +| `#463854` (dimgray) | `#3a4f63` (slate gray) | Dark text/borders | +| `#e9e8ee` (whitesmoke) | `#e8edf2` (cool gray) | Light backgrounds | + +### Alternatives Considered +- CSS-only variable swap: Would miss ~35 LESS files with hardcoded + values, ~10 TSX files, and ~33 SVG assets. +- Full Tailwind migration: Out of scope — constitution allows LESS for + existing code, Tailwind only for new code. +- SVG color via CSS currentColor: Would require refactoring SVG imports + to use `currentColor` instead of hardcoded fills. Viable but higher + effort. Direct hex replacement is simpler for this scope. + +--- + +## R3: Typography Migration + +### Decision +Replace Manrope with Lato (headings) and Inter (body text) to match +FraiOS font system. Load via Google Fonts CDN. + +### Findings + +**Font declarations:** +- `src/global.less` — `@font-face` declarations for Manrope + (Regular, Medium, SemiBold, Bold, ExtraBold) from `/fonts/` directory +- `src/global.less` — `--font-manrope: "Manrope"` CSS variable +- `src/layouts/RootLayout.tsx:18` — Ant Design `fontFamily: "Manrope"` + +**Font references in components:** +- `src/components/SideMenu/index.module.less:52` — `var(--font-manrope)` +- Multiple components inherit via Ant Design theme or CSS cascade + +### Alternatives Considered +- Self-hosted fonts: Viable but adds build complexity. Google Fonts CDN + is simpler and consistent with FraiOS pattern. +- Keep Manrope: Rejected — typography is a key brand identifier. + +--- + +## R4: Glass Morphism Surfaces + +### Decision +Apply glass morphism to header, sidebar, and right sidebar. Use +backdrop-blur with semi-transparent backgrounds matching FraiOS +`glass-panel.ts` patterns. + +### Findings + +**Surfaces for glass treatment:** + +1. **Header** (`src/components/Header/index.module.less`) + - Currently: `background: var(--color-white)`, solid white + - Target: Semi-transparent with backdrop-blur + +2. **SideMenu** (`src/components/SideMenu/index.module.less`) + - Currently: `.menu { background: var(--color-primary) }` solid purple + - Target: Glass-tinted with brand blue and backdrop-blur + - Already has glass-like button states: `rgba(255,255,255,0.02/0.1)` + +3. **Right Sidebar** (`src/components/Sidebar/index.module.less`) + - Currently: `background: #f9f9f9`, solid light gray + - Target: Semi-transparent with backdrop-blur + - Resize handle uses `rgba(163, 27, 203, 0.3)` — needs color update + +4. **Sidebar wrapper** — `background: #f9f9f9` in both SideMenu and + Sidebar components + +**Existing glass morphism already in codebase:** +- `src/components/SignInForm/index.module.less:64` — + `.magicLink { backdrop-filter: blur(10px); background: rgba(163, 27, 203, 0.1) }` +- `src/components/SignUpForm/index.module.less:19` — + `.magicLink { backdrop-filter: blur(10px); background: rgba(163, 27, 203, 0.1) }` +- These need color updates (purple → blue) but the pattern is already + established in the codebase. + +**FraiOS glass-panel.ts reference patterns:** +- Standard: `rgba(255,255,255,0.6)` bg, `blur(12px)`, white 20% border +- Container: `rgba(255,255,255,0.4)` bg, `blur(8px)`, white 15% border +- Card: `rgba(255,255,255,0.5)` bg, `blur(10px)`, white 20% border +- Dark: `rgba(0,14,74,0.3)` bg, `blur(16px)`, white 5% border + +### Alternatives Considered +- Full glass morphism on all cards/panels: Deferred per spec assumptions. + Limited to layout-level surfaces for this feature. +- No glass morphism: Rejected — it's a signature FraiOS design element. + +--- + +## R5: Asset Inventory + +### Decision +Use existing FraiOS brand assets from `public/` folder. Create new +OG image from app icon. + +### Findings + +**Available FraiOS assets:** +- `public/FraioS-icon-lighttheme.svg` — 258x258 pinwheel icon +- `public/FraioS-icon-darktheme.svg` — 258x258 pinwheel icon +- `public/FraioS-logo-lighttheme.svg` — Full logo with text +- `public/FraioS-logo-darktheme.svg` — Full logo with text (white) +- `public/Frai-OSAppIcon.png` — Dark app icon (for OG image) + +**Synmetrix assets to replace:** +- `public/logo.png` — favicon (replace with FraiOS icon) +- `public/logo_bg.png` — sidebar logo (replace with FraiOS icon SVG) +- `public/logo_with_text.png` — header logo (replace with FraiOS logo SVG) +- `public/og.png` — Open Graph image (replace with Frai-OSAppIcon.png) + +### Alternatives Considered +- Generate new OG image: Could be done later. Using Frai-OSAppIcon.png + is sufficient for initial rebrand. diff --git a/specs/004-rebranding/spec.md b/specs/004-rebranding/spec.md new file mode 100644 index 00000000..841c601f --- /dev/null +++ b/specs/004-rebranding/spec.md @@ -0,0 +1,257 @@ +# Feature Specification: FraiOS Semantic Layer Rebranding + +**Feature Branch**: `004-rebranding` +**Created**: 2026-03-07 +**Status**: Draft +**Input**: User description: "Rebranding" + +## User Scenarios & Testing *(mandatory)* + +### User Story 1 - Visual Identity Replacement (Priority: P1) + +A user navigates to the application and sees consistent FraiOS Semantic +Layer branding throughout: the sidebar logo, header logo, browser tab +favicon, page titles, and Open Graph metadata all reflect the new +"FraiOS Semantic Layer" identity instead of Synmetrix branding. + +**Why this priority**: Brand identity is the most visible and +foundational aspect of rebranding. Every user interaction begins with +visual identity. Without this, no other rebranding work is meaningful. + +**Independent Test**: Can be fully tested by loading the application +and visually confirming that all logo placements, favicon, browser tab +title, and Open Graph tags display FraiOS Semantic Layer branding with +the pinwheel icon. No Synmetrix logos, text, or references remain +visible. + +**Acceptance Scenarios**: + +1. **Given** a user loads the sign-in page, **When** the page renders, + **Then** the header displays the FraiOS logo (light theme variant) + instead of the Synmetrix logo with text. +2. **Given** a user is authenticated, **When** they view the sidebar, + **Then** the sidebar displays the FraiOS pinwheel icon instead of + the Synmetrix `logo_bg.png`. +3. **Given** a user views the browser tab, **When** the page loads, + **Then** the favicon is the FraiOS pinwheel icon and the page title + reads "FraiOS Semantic Layer" instead of "Synmetrix". +4. **Given** a link to the application is shared, **When** it is + previewed (e.g., in Slack or social media), **Then** the Open Graph + image, title, and description reflect FraiOS Semantic Layer + branding. + +--- + +### User Story 2 - Color System Migration (Priority: P2) + +A user navigates the application and experiences the FraiOS color +palette throughout. The primary purple (`#470D69`) is replaced with the +FraiOS brand blue (`#3f6587`). Accent colors, hover states, +backgrounds, and component theming all align with the FraiOS design +language. + +**Why this priority**: Color is the next most impactful visual change +after logos. It affects every interactive element and defines the +overall aesthetic feel. Must be done comprehensively to avoid a +patchwork appearance. + +**Independent Test**: Can be tested by navigating through all major +pages (sign-in, sidebar, explore, models, settings) and confirming +that no purple-themed elements remain; all interactive and decorative +color usage reflects the FraiOS blue palette. + +**Acceptance Scenarios**: + +1. **Given** a user views the sidebar, **When** it renders, **Then** + the background uses FraiOS brand blue instead of Synmetrix purple. +2. **Given** a user interacts with buttons, links, and form controls, + **When** they hover or click, **Then** the active/hover states use + FraiOS blue tones instead of purple tones. +3. **Given** the Ant Design theme configuration, **When** the + application renders any themed component, **Then** the primary + color token reflects FraiOS brand blue. +4. **Given** a user views any page, **When** they inspect CSS custom + properties, **Then** `--color-primary` and related variables use + FraiOS values. + +--- + +### User Story 3 - Typography Update (Priority: P3) + +A user reads text throughout the application and encounters the FraiOS +typeface system (Lato for headings, Inter for body text) instead of +Manrope. + +**Why this priority**: Typography reinforces brand identity but is +less immediately noticeable than logos or colors. It creates a cohesive +feel when combined with the other visual changes. + +**Independent Test**: Can be tested by inspecting rendered text on +sign-in, dashboard, settings, and models pages to confirm Lato and +Inter are applied and Manrope references are removed. + +**Acceptance Scenarios**: + +1. **Given** a user views any page, **When** text renders, **Then** + headings use Lato and body text uses Inter. +2. **Given** the application CSS, **When** font-family declarations + are inspected, **Then** no references to Manrope remain. +3. **Given** the Ant Design theme configuration, **When** the + fontFamily token is inspected, **Then** it specifies the FraiOS + font stack. + +--- + +### User Story 4 - Glass Morphism Design Language (Priority: P4) + +A user experiences the FraiOS glass morphism aesthetic on key layout +surfaces: the header, sidebar, and card containers feature +semi-transparent backgrounds with backdrop blur, subtle borders, and +soft shadows consistent with FraiOS visual design. + +**Why this priority**: Glass morphism is a signature FraiOS design +element that distinguishes it from the flat Synmetrix aesthetic. It +adds visual polish but is cosmetic rather than functional, making it +lower priority than identity and color changes. + +**Independent Test**: Can be tested by navigating through the +application and confirming that the header, sidebar, and primary card +containers exhibit glass-like transparency, backdrop blur effects, and +subtle border styling. + +**Acceptance Scenarios**: + +1. **Given** a user views the header, **When** it renders, **Then** it + has a semi-transparent background with backdrop-blur. +2. **Given** a user views the sidebar, **When** it renders, **Then** + it exhibits glass morphism styling with subtle transparency. +3. **Given** a user views card-like containers (e.g., settings panels, + exploration cards), **When** they render, **Then** they use glass + card styling with semi-transparent backgrounds and soft shadows. + +--- + +### User Story 5 - External Reference Cleanup (Priority: P5) + +A user encounters no residual Synmetrix branding in any text content: +documentation links, footer text, placeholder strings, alt text, ARIA +labels, and error messages all reference "FraiOS Semantic Layer" +where appropriate or use generic phrasing. + +**Why this priority**: Text references are the least visible branding +element but create inconsistency if left unchanged. This is cleanup +work that follows the primary visual rebranding. + +**Independent Test**: Can be tested by searching the codebase for +any remaining "Synmetrix" or "synmetrix" string references and +confirming they are either replaced or intentionally retained (e.g., +in backend API URLs that are not part of user-facing branding). + +**Acceptance Scenarios**: + +1. **Given** the application codebase, **When** searching for + "Synmetrix" (case-insensitive) in user-facing strings, **Then** no + results are found except where referencing external backend URLs. +2. **Given** a user views the Docs button in the navbar, **When** they + inspect its link, **Then** it points to FraiOS documentation (or is + updated/removed as appropriate). +3. **Given** a user views any error message, empty state, or + placeholder, **When** it renders, **Then** it does not reference + Synmetrix. + +--- + +### Edge Cases + +- What happens when dark mode is introduced? FraiOS logos have both + light and dark theme variants; the application must serve the correct + variant based on theme context. For P1, use the light-theme variant + as the current application has no dark mode. Dark mode logo switching + is deferred to a future dark-mode feature. +- What happens with cached assets? Users with cached Synmetrix favicons + or OG images may see stale branding until browser cache expires. This + is acceptable and no cache-busting mechanism is required beyond + standard asset hashing by Vite. +- What happens with i18n translation files? Both English and Russian + translation files must be updated to replace any "Synmetrix" + references with "FraiOS Semantic Layer". + +## Requirements *(mandatory)* + +### Functional Requirements + +- **FR-001**: Application MUST display the FraiOS pinwheel icon as the + favicon in the browser tab. +- **FR-002**: Application MUST display "FraiOS Semantic Layer" as the + page title in the browser tab. +- **FR-003**: Sidebar MUST display the FraiOS pinwheel icon (from + `public/FraioS-icon-lighttheme.svg`) as the collapsed/primary logo. +- **FR-004**: Header MUST display the FraiOS full logo (from + `public/FraioS-logo-lighttheme.svg`) where the Synmetrix logo + with text previously appeared. +- **FR-005**: Open Graph meta tags MUST use FraiOS branding (title: + "FraiOS Semantic Layer", image: FraiOS app icon, description + referencing FraiOS Semantic Layer). +- **FR-006**: Primary color throughout the application MUST change + from `#470D69` (purple) to FraiOS brand blue (`#3f6587`). +- **FR-007**: All CSS custom properties referencing Synmetrix purple + palette MUST be updated to FraiOS blue palette equivalents. +- **FR-008**: Ant Design ConfigProvider theme token `colorPrimary` + MUST be set to FraiOS brand blue. +- **FR-009**: Typography MUST change from Manrope to Lato (headings) + and Inter (body), matching FraiOS font system. +- **FR-010**: Key layout surfaces (header, sidebar) MUST adopt glass + morphism styling (semi-transparent backgrounds, backdrop-blur). +- **FR-011**: All user-facing strings referencing "Synmetrix" MUST be + replaced with "FraiOS Semantic Layer" or appropriate alternatives. +- **FR-012**: i18n translation files (English, Russian) MUST be + updated to reflect new branding. +- **FR-013**: Storybook stories MUST render correctly with new + branding and color tokens. + +### Key Entities + +- **Brand Assets**: Logo files (icon and full logo, light/dark + variants), favicon, Open Graph image. +- **Color Tokens**: CSS custom properties and Ant Design theme tokens + that define the application's color palette. +- **Typography Tokens**: Font family declarations in CSS and Ant + Design theme configuration. +- **Layout Surfaces**: Header, sidebar, cards, and panels that receive + glass morphism treatment. + +## Success Criteria *(mandatory)* + +### Measurable Outcomes + +- **SC-001**: Zero visible instances of Synmetrix branding (logo, name, + or purple color) remain in the user interface across all pages. +- **SC-002**: All logo placements display the correct FraiOS asset + (pinwheel icon or full logo) at appropriate sizes without distortion. +- **SC-003**: Color palette consistency: no purple (`#470D69` or + related shades) appears in any rendered component; all primary color + usage reflects FraiOS blue. +- **SC-004**: Typography renders consistently with the FraiOS font + stack on all pages. +- **SC-005**: Glass morphism is visible on header and sidebar surfaces + with functional backdrop-blur effects. +- **SC-006**: Storybook renders all existing stories without visual + regression beyond intended rebranding changes. +- **SC-007**: Production build succeeds without errors after all + branding changes are applied. +- **SC-008**: All i18n translations updated: searching for "Synmetrix" + in translation JSON files returns zero user-facing results. + +### Assumptions + +- The current application has no dark mode; light-theme logo variants + are used exclusively. Dark mode support will be a separate feature. +- External URLs (e.g., backend API endpoints containing "synmetrix") + are not part of user-facing branding and are out of scope. +- The FraiOS brand assets in the `public/` folder are final and + approved for production use. +- Glass morphism treatment is limited to header, sidebar, and + card-level containers. Full glass morphism across all components is + deferred to the broader FraiOS migration. +- Font files for Lato and Inter will be loaded via Google Fonts or + bundled; the method is an implementation decision. diff --git a/specs/004-rebranding/tasks.md b/specs/004-rebranding/tasks.md new file mode 100644 index 00000000..f5ff47cf --- /dev/null +++ b/specs/004-rebranding/tasks.md @@ -0,0 +1,269 @@ +# Tasks: FraiOS Semantic Layer Rebranding + +**Input**: Design documents from `/specs/004-rebranding/` +**Prerequisites**: plan.md (required), spec.md (required), research.md, data-model.md + +**Tests**: No test tasks included — spec does not request TDD. Validation is via visual inspection, `bun run build`, `bun run lint`, and Storybook. + +**Organization**: Tasks grouped by user story for independent implementation and testing. + +## Format: `[ID] [P?] [Story] Description` + +- **[P]**: Can run in parallel (different files, no dependencies) +- **[Story]**: Which user story this task belongs to (e.g., US1, US2) +- Include exact file paths in descriptions + +--- + +## Phase 1: Setup + +**Purpose**: No project initialization needed — working within existing codebase. This phase adds font dependencies. + +- [x] T001 Add Google Fonts link for Lato and Inter to `index.html` (add `` tags in `` for `https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Lato:wght@300;400;700;900&display=swap`) + +--- + +## Phase 2: Foundational (Blocking Prerequisites) + +**Purpose**: Update central token definitions that all user stories depend on. These changes cascade to 21+ components via CSS variables and Ant Design theme. + +**CRITICAL**: No user story work can begin until this phase is complete. + +- [x] T002 Update CSS custom properties in `src/global.less`: change `--color-primary: #470d69` to `#3f6587`, `--color-mediumpurple: #a56edd` to `#5a8ab5`, `--color-darkorchid: #b65cf8` to `#6ba3d6`, `--color-dimgray-100: #463854` to `#3a4f63`, `--color-dimgray-200: rgba(70, 56, 84, 0.2)` to `rgba(58, 79, 99, 0.2)`, `--color-dimgray-300: rgba(70, 56, 84, 0.1)` to `rgba(58, 79, 99, 0.1)`, `--color-whitesmoke: #e9e8ee` to `#e8edf2` +- [x] T003 Update Ant Design theme tokens in `src/layouts/RootLayout.tsx`: change `colorPrimary: "#470D69"` to `"#3f6587"` and `fontFamily: "Manrope"` to `"Inter"` +- [x] T004 Replace Manrope `@font-face` declarations in `src/global.less` with Lato and Inter `@font-face` declarations (or remove them if using Google Fonts CDN from T001). Update `--font-manrope` variable to `--font-inter: "Inter"` and add `--font-lato: "Lato"`. Update body `font-family` rule to use Inter and heading rules (`h1-h5`) to use Lato. + +**Checkpoint**: Foundation ready — CSS variables, Ant Design theme, and fonts updated. All 21 component LESS files using `var(--color-primary)` automatically reflect new blue color. + +--- + +## Phase 3: User Story 1 - Visual Identity Replacement (Priority: P1) MVP + +**Goal**: Replace all Synmetrix logos, favicon, page title, and OG metadata with FraiOS branding. + +**Independent Test**: Load the application — browser tab shows FraiOS pinwheel favicon and "FraiOS Semantic Layer" title. Header shows FraiOS full logo. Sidebar shows FraiOS pinwheel icon. Sharing a link previews FraiOS OG metadata. + +### Implementation for User Story 1 + +- [x] T005 [P] [US1] Update `index.html`: change `` href from `/logo.png` to `/FraioS-icon-lighttheme.svg`, change `type` from `image/png` to `image/svg+xml` +- [x] T006 [P] [US1] Update `index.html`: change `` from "Synmetrix: seamlessly connect, analyze, and innovate with the Metrics Store" to "FraiOS Semantic Layer" +- [x] T007 [P] [US1] Update `index.html`: change all `<meta>` description content from Synmetrix descriptions to FraiOS Semantic Layer descriptions (lines 8, 12, 15, 17, 20, 22 — og:title, og:description, twitter:title, twitter:description, and general description/keywords) +- [x] T008 [P] [US1] Update `index.html`: change `<meta property="og:image">` and `<meta property="twitter:image">` from `/og.png` to `/Frai-OSAppIcon.png` +- [x] T009 [US1] Update `src/components/Header/index.tsx`: change logo import from `import logo from "@/assets/logo_with_text.png"` to import `FraioS-logo-lighttheme.svg` from `/public/` (or as a static path). Update the `<img>` tag `src` and ensure SVG renders at appropriate size within `.logo` / `.logoText` constraints +- [x] T010 [US1] Update `src/components/SideMenu/index.tsx`: change logo `src` from `"/logo_bg.png"` to `"/FraioS-icon-lighttheme.svg"`. Adjust `.logo` max-width in `src/components/SideMenu/index.module.less` if needed for SVG sizing (current: 40px) +- [x] T011 [US1] Update `package.json`: change `"name"` from `"synmetrix-client"` to `"fraios-semantic-layer"` + +**Checkpoint**: Visual identity fully replaced. FraiOS logos, favicon, title, and OG tags all active. + +--- + +## Phase 4: User Story 2 - Color System Migration (Priority: P2) + +**Goal**: Replace all hardcoded purple color values with FraiOS blue equivalents across LESS files, TSX files, and SVG assets. + +**Independent Test**: Navigate all pages (sign-in, sidebar, explore, models, settings). No purple elements visible. All interactive colors are blue. + +### Implementation for User Story 2 + +#### Hardcoded hex values in LESS files (#470d69 → #3f6587) + +- [x] T012 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/ModelsSidebar/index.module.less` +- [x] T013 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/CodeEditor/index.module.less` +- [x] T014 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/AlertForm/index.module.less` +- [x] T015 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/PageHeader/index.module.less` +- [x] T016 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/RestAPI/index.module.less` +- [x] T017 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/ReportForm/index.module.less` +- [x] T018 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/DataSourcesMenu/index.module.less` +- [x] T019 [P] [US2] Replace `#470d69` with `#3f6587` in `src/components/VersionsList/index.module.less` + +#### Secondary purple (#a31bcb → #4a7faa) and rgba variants in LESS files + +- [x] T020 [P] [US2] Replace `#a31bcb` and `rgba(163, 27, 203, *)` variants with `#4a7faa` and `rgba(74, 127, 170, *)` in `src/components/ModelsSidebar/index.module.less` +- [x] T021 [P] [US2] Replace `rgba(163, 27, 203, *)` with `rgba(74, 127, 170, *)` in `src/components/Sidebar/index.module.less` +- [x] T022 [P] [US2] Replace purple rgba variants with blue equivalents in `src/components/ExploreCubes/index.module.less` +- [x] T023 [P] [US2] Replace `rgba(163, 27, 203, *)` with `rgba(74, 127, 170, *)` in `src/components/ExploreCubesCategoryItem/index.module.less` +- [x] T024 [P] [US2] Replace purple colors in `src/components/ExploreDataSection/index.module.less` +- [x] T025 [P] [US2] Replace `rgba(71, 13, 105, 0.1)` with `rgba(63, 101, 135, 0.1)` in `src/components/Navbar/index.module.less` +- [x] T026 [P] [US2] Replace purple colors in `src/components/SidebarMenu/index.module.less` (gradient with `rgba(71, 13, 105, 0.1)`) +- [x] T027 [P] [US2] Replace purple rgba variants in `src/components/SignInForm/index.module.less` (`rgba(163, 27, 203, 0.1)` → `rgba(74, 127, 170, 0.1)`) +- [x] T028 [P] [US2] Replace purple rgba variants in `src/components/SignUpForm/index.module.less` (`rgba(163, 27, 203, 0.1)` → `rgba(74, 127, 170, 0.1)`) +- [x] T029 [P] [US2] Replace `#a31bcb` and `rgba(163, 27, 203, *)` and `rgba(71, 13, 105, *)` in `src/components/ReportForm/index.module.less` +- [x] T030 [P] [US2] Replace `rgba(163, 27, 203, 0.1)` in `src/components/LogoutSessions/index.module.less` +- [x] T031 [P] [US2] Replace purple colors in `src/components/ExploreSegmentsSection/index.module.less` +- [x] T032 [P] [US2] Replace purple colors in `src/components/ExploreCubesCategoryItemFilter/index.module.less` +- [x] T033 [P] [US2] Replace purple colors in `src/components/DataSourceSetup/index.module.less` +- [x] T034 [P] [US2] Replace purple colors in `src/components/DataModelGeneration/index.module.less` +- [x] T035 [P] [US2] Replace `#a31bcb` and `rgba(163, 27, 203, *)` and `rgba(71, 13, 105, *)` in `src/components/CodeEditor/index.module.less` +- [x] T036 [P] [US2] Replace `rgba(163, 27, 203, *)` in `src/components/BranchSelection/index.module.less` +- [x] T037 [P] [US2] Replace `#a31bcb` and `rgba(163, 27, 203, *)` in `src/components/AlertForm/index.module.less` +- [x] T038 [P] [US2] Replace purple colors in `src/components/VirtualTable/index.module.less` +- [x] T039 [P] [US2] Replace purple colors in `src/pages/Members/index.module.less` +- [x] T040 [P] [US2] Replace `#a31bcb` in `src/components/Input/index.module.less` +- [x] T041 [P] [US2] Replace `#a31bcb` in `src/components/RequestInfo/index.module.less` +- [x] T042 [P] [US2] Replace `#a31bcb` in `src/components/ExploreFiltersSection/index.module.less` +- [x] T043 [P] [US2] Replace purple colors in `src/components/QueryFilters/index.module.less` +- [x] T044 [P] [US2] Replace purple colors in `src/components/SQLRunner/index.module.less` +- [x] T045 [P] [US2] Replace purple colors in `src/components/FormTile/index.module.less` +- [x] T046 [P] [US2] Replace purple colors in `src/components/StepFormHeader/index.module.less` +- [x] T047 [P] [US2] Replace purple colors in `src/components/ApiSetup/index.module.less` +- [x] T048 [P] [US2] Replace purple colors in `src/pages/Callback/index.module.less` +- [x] T049 [P] [US2] Replace purple colors in `src/pages/ExportModels/index.module.less` +- [x] T050 [P] [US2] Replace purple colors in `src/pages/Logout/index.module.less` + +#### Hardcoded colors in TypeScript/React files + +- [x] T051 [P] [US2] Update chart colors in `src/utils/constants/colors.ts`: replace `#470D6999` with `#3f658799`, `#A31BCB80` with `#4a7faa80`, `#892C6C99` with `#4a6f8999` +- [x] T052 [P] [US2] Update avatar colors in `src/pages/Teams/index.tsx`: replace `#470D69` with `#3f6587`, `#A31BCB` with `#4a7faa`, and Tag `color="#EDE7F0"` with `"#E0EAF0"` +- [x] T053 [P] [US2] Update avatar colors in `src/components/TeamsTable/index.tsx`: same replacements as T052 +- [x] T054 [P] [US2] Update `color="#A31BCB"` to `"#4a7faa"` in `src/components/VersionPreview/index.tsx` +- [x] T055 [P] [US2] Update `starColor="#A31BCB"` to `"#4a7faa"` in `src/components/AlertForm/index.tsx` +- [x] T056 [P] [US2] Update `starColor="#A31BCB"` to `"#4a7faa"` in `src/components/ReportForm/index.tsx` +- [x] T057 [P] [US2] Update color values in `src/components/NestedTag/index.stories.tsx`: replace purple hex values with blue equivalents + +#### SVG asset color updates + +- [x] T058 [US2] Batch-replace `#470D69` with `#3f6587` and `#A31BCB` with `#4a7faa` across all SVG files in `src/assets/` (~33 files). Use find-and-replace across the directory. Verify each SVG still renders correctly. + +**Checkpoint**: All purple eliminated. Color system fully migrated to FraiOS blue. + +--- + +## Phase 5: User Story 3 - Typography Update (Priority: P3) + +**Goal**: Replace Manrope with Lato (headings) and Inter (body text) throughout the application. + +**Independent Test**: Inspect rendered text on sign-in, models, explore, and settings pages. Headings use Lato, body text uses Inter. No Manrope references in CSS. + +### Implementation for User Story 3 + +- [x] T059 [US3] Update `src/components/SideMenu/index.module.less`: replace `var(--font-manrope)` with `var(--font-inter)` (or `var(--font-lato)` for heading-like text) +- [x] T060 [US3] Search for any remaining `Manrope` or `--font-manrope` references in all `*.less`, `*.tsx`, and `*.ts` files under `src/` and replace with appropriate FraiOS font variable. Run `grep -ri "manrope" src/` to verify zero results after completion. + +**Checkpoint**: Typography fully migrated. Lato for headings, Inter for body. + +--- + +## Phase 6: User Story 4 - Glass Morphism Design Language (Priority: P4) + +**Goal**: Apply glass morphism styling (backdrop-blur, semi-transparent backgrounds, subtle borders) to header, sidebar, and right sidebar. + +**Independent Test**: Navigate authenticated pages. Header has frosted glass appearance. Sidebar has glass-tinted blue background with blur. Right sidebar (models, settings) has glass effect. + +### Implementation for User Story 4 + +- [x] T061 [P] [US4] Apply glass morphism to header in `src/components/Header/index.module.less`: change `.header` background from `var(--color-white)` to `rgba(255, 255, 255, 0.6)`, add `backdrop-filter: blur(12px)`, add `border-bottom: 1px solid rgba(255, 255, 255, 0.2)`. Update `.headerBordered` border to use glass-style border. +- [x] T062 [P] [US4] Apply glass morphism to sidebar in `src/components/SideMenu/index.module.less`: update `.menu` background from `var(--color-primary)` to a semi-transparent brand blue (e.g., `rgba(63, 101, 135, 0.85)`), add `backdrop-filter: blur(12px)`, add subtle `border-right: 1px solid rgba(255, 255, 255, 0.1)`. Update `.wrapper` background from `#f9f9f9` to `rgba(249, 249, 249, 0.6)`. +- [x] T063 [P] [US4] Apply glass morphism to right sidebar in `src/components/Sidebar/index.module.less`: update `.wrapper` background from `#f9f9f9` to `rgba(255, 255, 255, 0.5)`, add `backdrop-filter: blur(10px)`, update border to `1px solid rgba(255, 255, 255, 0.2)`. Update `.body` background similarly. Update `.resizeHandle` hover color from `rgba(163, 27, 203, 0.3)` to `rgba(63, 101, 135, 0.3)`. + +**Checkpoint**: Glass morphism applied to all three primary layout surfaces. + +--- + +## Phase 7: User Story 5 - External Reference Cleanup (Priority: P5) + +**Goal**: Remove all remaining user-facing "Synmetrix" text references. Update documentation links. Clean up mocks and README. + +**Independent Test**: Run `grep -ri "synmetrix" src/ --include="*.tsx" --include="*.ts" --include="*.less"` — zero results except intentionally retained backend URLs. No user-facing Synmetrix text visible. + +### Implementation for User Story 5 + +- [x] T064 [P] [US5] Update `src/components/Navbar/index.tsx`: change docs link `href` from `"https://docs.synmetrix.org"` to appropriate FraiOS docs URL (or remove the docs button if no FraiOS docs URL exists yet — replace with placeholder) +- [x] T065 [P] [US5] Update `src/utils/constants/links.ts`: replace `docs.synmetrix.org` URLs with FraiOS equivalents (or placeholder URLs) +- [x] T066 [P] [US5] Update `src/components/Footer/index.tsx`: replace commented-out Synmetrix copyright and email with FraiOS equivalents +- [x] T067 [P] [US5] Update `src/mocks/members.ts`: replace `@synmetrix*.com` mock emails with `@fraios.com` equivalents +- [x] T068 [P] [US5] Update `src/mocks/request.ts`: replace `/Synmetrixjs/` path with appropriate FraiOS path +- [x] T069 [P] [US5] Update `README.md`: replace all Synmetrix references with FraiOS Semantic Layer branding, update logo image reference +- [x] T070 [US5] Run final `grep -ri "synmetrix" src/` to verify zero user-facing references remain. Document any intentionally retained references (nginx.conf, CI/CD) in a comment at top of this tasks file. + +**Checkpoint**: All user-facing Synmetrix references eliminated. + +--- + +## Phase 8: Polish & Cross-Cutting Concerns + +**Purpose**: Build validation and final verification. + +- [x] T071 Run `bun run lint` and fix any lint errors introduced by changes +- [x] T072 Run `bun run build` and verify production build succeeds with zero errors +- [x] T073 Run `bun run storybook` and verify all existing stories render correctly with new branding +- [x] T074 Visual smoke test: manually navigate sign-in, sidebar, explore, models, settings, signals pages to verify cohesive FraiOS branding (logos, colors, fonts, glass effects) +- [x] T075 Update `.specify/memory/constitution.md` title from "Synmetrix Client Constitution" to "FraiOS Semantic Layer Constitution" + +--- + +## Dependencies & Execution Order + +### Phase Dependencies + +- **Setup (Phase 1)**: No dependencies — add font links first +- **Foundational (Phase 2)**: Depends on Phase 1 — CSS variables and theme tokens BLOCK all user stories +- **US1 (Phase 3)**: Depends on Phase 2 — logo/identity changes +- **US2 (Phase 4)**: Depends on Phase 2 — color migration (can run in parallel with US1) +- **US3 (Phase 5)**: Depends on Phase 2 — typography (can run in parallel with US1/US2) +- **US4 (Phase 6)**: Depends on Phase 2 + US2 color changes — glass morphism uses new colors +- **US5 (Phase 7)**: No dependencies on other stories — text cleanup is independent +- **Polish (Phase 8)**: Depends on ALL user stories being complete + +### User Story Dependencies + +- **US1 (P1)**: After Phase 2 — independent of other stories +- **US2 (P2)**: After Phase 2 — independent (can parallel with US1, US3, US5) +- **US3 (P3)**: After Phase 2 — independent (can parallel with US1, US2, US5) +- **US4 (P4)**: After Phase 2 + US2 — needs color values finalized first +- **US5 (P5)**: After Phase 2 — independent (can parallel with all others) + +### Within Each User Story + +- US1: T005-T008 are parallel (different lines in same file), T009-T011 sequential +- US2: T012-T057 are ALL parallel (different files). T058 (SVG batch) last. +- US3: T059-T060 sequential (T060 is verification sweep) +- US4: T061-T063 are ALL parallel (different files) +- US5: T064-T069 are ALL parallel (different files). T070 is verification sweep. + +### Parallel Opportunities + +- **After Phase 2**: US1, US2, US3, and US5 can ALL start simultaneously +- **Within US2**: All 47 file-level color replacement tasks (T012-T057) run in parallel +- **Within US4**: All 3 glass morphism tasks (T061-T063) run in parallel +- **Within US5**: All 6 text replacement tasks (T064-T069) run in parallel + +--- + +## Implementation Strategy + +### MVP First (User Story 1 Only) + +1. Complete Phase 1: Font setup +2. Complete Phase 2: Token foundation +3. Complete Phase 3: Logo + favicon + OG tags +4. **STOP and VALIDATE**: FraiOS identity visible, build passes +5. Deploy/demo if ready — users see FraiOS branding immediately + +### Incremental Delivery + +1. Phase 1 + 2 → Foundation ready +2. Add US1 → FraiOS identity visible (MVP!) +3. Add US2 → Purple eliminated, blue throughout +4. Add US3 → Typography matches FraiOS +5. Add US4 → Glass morphism polish +6. Add US5 → Text cleanup complete +7. Phase 8 → Final validation + +### Parallel Execution (Recommended) + +After Phase 2 completes: +- **Stream A**: US1 (identity) → US4 (glass morphism) +- **Stream B**: US2 (colors — largest task set) → verification +- **Stream C**: US3 (typography) + US5 (text cleanup) + +Then Phase 8 for final validation. + +--- + +## Notes + +- [P] tasks = different files, no dependencies +- [Story] label maps task to specific user story for traceability +- Infrastructure files (`nginx.conf`, `.github/workflows/`) intentionally excluded — backend service names are not user-facing +- SVG batch replacement (T058) can use a script or sed command for efficiency +- After US2, run `grep -ri "#470d69\|#470D69\|#a31bcb\|#A31BCB" src/` to verify zero remaining purple diff --git a/src/URQLClient.ts b/src/URQLClient.ts index 264cc7e9..daa65d8c 100644 --- a/src/URQLClient.ts +++ b/src/URQLClient.ts @@ -1,10 +1,9 @@ import { authExchange } from "@urql/exchange-auth"; import { retryExchange } from "@urql/exchange-retry"; -import { history } from "@vitjs/runtime"; import { createClient as createWsClient } from "graphql-ws"; import { createClient, fetchExchange, subscriptionExchange } from "urql"; -import { fetchRefreshToken } from "@/hooks/useAuth"; +import { fetchToken } from "@/hooks/useAuth"; import AuthTokensStore from "@/stores/AuthTokensStore"; import { SIGNIN } from "@/utils/constants/paths"; @@ -45,8 +44,36 @@ type Headers = { Authorization: string; }; +const AUTH_ERROR_CODES = new Set([ + "FORBIDDEN", + "INVALID_JWT", + "INVALID_HEADERS", + "JWT_MISSING_ROLE_CLAIMS", + "UNAUTHENTICATED", + "ACCESS-DENIED", +]); + +function isAuthError(error: CombinedError) { + const responseStatus = error.response?.status; + if (responseStatus === 401 || responseStatus === 403) { + return true; + } + + return error?.graphQLErrors?.some((e) => { + const code = String(e.extensions?.code || "").toUpperCase(); + const message = String(e.message || "").toLowerCase(); + + return ( + AUTH_ERROR_CODES.has(code) || + message.includes("jwt") || + message.includes("not authenticated") || + message.includes("unauthorized") + ); + }); +} + export default () => { - const { accessToken, refreshToken, JWTpayload, setAuthData, cleanTokens } = + const { accessToken, JWTpayload, setAuthData, cleanTokens } = AuthTokensStore(); const client = useMemo(() => { @@ -85,31 +112,30 @@ export default () => { return utils.appendHeaders(operation, headers); }, willAuthError: () => { - const expirationTimeInSeconds = (JWTpayload?.exp || 0) * 1000; - const now = new Date(); - const isValid = expirationTimeInSeconds <= now.getTime(); + // No payload yet — token fetch is in progress, don't trigger refreshAuth + if (!JWTpayload?.exp) return false; - return isValid; + const expirationMs = JWTpayload.exp * 1000; + return expirationMs - Date.now() <= 60 * 1000; }, didAuthError: (error: CombinedError) => { - return error?.graphQLErrors?.some( - (e) => e.extensions?.code === "FORBIDDEN" - ); + return isAuthError(error); }, refreshAuth: async () => { - if (refreshToken) { - const result = await fetchRefreshToken(refreshToken); - - if (result.error) { - cleanTokens(); - history.push(SIGNIN); - return; - } - - setAuthData({ - accessToken: result.jwt_token, - refreshToken: result.refresh_token, - }); + const result = await fetchToken(); + if (!result) { + cleanTokens(); + window.location.href = SIGNIN; + return; + } + + const authAccepted = setAuthData({ + accessToken: result.accessToken, + workosAccessToken: result.workosAccessToken, + }); + if (!authAccepted) { + cleanTokens(); + window.location.href = SIGNIN; } }, })), @@ -133,7 +159,7 @@ export default () => { url: HASURA_GRAPHQL_ENDPOINT, exchanges, }); - }, [JWTpayload, accessToken, cleanTokens, refreshToken, setAuthData]); + }, [JWTpayload, accessToken, cleanTokens, setAuthData]); return client; }; diff --git a/src/assets/access-full.svg b/src/assets/access-full.svg index 620c97cc..0a70aff0 100644 --- a/src/assets/access-full.svg +++ b/src/assets/access-full.svg @@ -1,9 +1,9 @@ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Iconex"> <g id="Lock open"> -<rect id="Rectangle 2" x="2.99805" y="6.75" width="12" height="9" rx="3" stroke="#A31BCB" stroke-width="1.125"/> -<path id="Line" d="M8.99707 12L8.99707 10.5" stroke="#A31BCB" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Vector" d="M10.9991 3.85672C11.1766 4.11162 11.5272 4.17431 11.7821 3.99674C12.037 3.81917 12.0997 3.46857 11.9222 3.21367L10.9991 3.85672ZM6.20767 3.03647C6.01464 3.27988 6.05549 3.63369 6.2989 3.82671C6.54232 4.01974 6.89612 3.97889 7.08915 3.73548L6.20767 3.03647ZM6.56152 6.75V5.25H5.43652V6.75H6.56152ZM6.56152 5.25C6.56152 3.90381 7.65283 2.8125 8.99902 2.8125V1.6875C7.03151 1.6875 5.43652 3.28249 5.43652 5.25H6.56152ZM11.9222 3.21367C11.4973 2.60377 10.8923 2.14205 10.1919 1.89316L9.81522 2.95321C10.2944 3.12351 10.7084 3.43942 10.9991 3.85672L11.9222 3.21367ZM10.1919 1.89316C9.49154 1.64427 8.73085 1.62068 8.0164 1.8257L8.3267 2.90706C8.81554 2.76678 9.33601 2.78292 9.81522 2.95321L10.1919 1.89316ZM8.0164 1.8257C7.30194 2.03072 6.6695 2.45407 6.20767 3.03647L7.08915 3.73548C7.40514 3.337 7.83786 3.04733 8.3267 2.90706L8.0164 1.8257Z" fill="#A31BCB"/> +<rect id="Rectangle 2" x="2.99805" y="6.75" width="12" height="9" rx="3" stroke="#4a7faa" stroke-width="1.125"/> +<path id="Line" d="M8.99707 12L8.99707 10.5" stroke="#4a7faa" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Vector" d="M10.9991 3.85672C11.1766 4.11162 11.5272 4.17431 11.7821 3.99674C12.037 3.81917 12.0997 3.46857 11.9222 3.21367L10.9991 3.85672ZM6.20767 3.03647C6.01464 3.27988 6.05549 3.63369 6.2989 3.82671C6.54232 4.01974 6.89612 3.97889 7.08915 3.73548L6.20767 3.03647ZM6.56152 6.75V5.25H5.43652V6.75H6.56152ZM6.56152 5.25C6.56152 3.90381 7.65283 2.8125 8.99902 2.8125V1.6875C7.03151 1.6875 5.43652 3.28249 5.43652 5.25H6.56152ZM11.9222 3.21367C11.4973 2.60377 10.8923 2.14205 10.1919 1.89316L9.81522 2.95321C10.2944 3.12351 10.7084 3.43942 10.9991 3.85672L11.9222 3.21367ZM10.1919 1.89316C9.49154 1.64427 8.73085 1.62068 8.0164 1.8257L8.3267 2.90706C8.81554 2.76678 9.33601 2.78292 9.81522 2.95321L10.1919 1.89316ZM8.0164 1.8257C7.30194 2.03072 6.6695 2.45407 6.20767 3.03647L7.08915 3.73548C7.40514 3.337 7.83786 3.04733 8.3267 2.90706L8.0164 1.8257Z" fill="#4a7faa"/> </g> </g> </svg> diff --git a/src/assets/access-no.svg b/src/assets/access-no.svg index 0c241f3f..4a1cebad 100644 --- a/src/assets/access-no.svg +++ b/src/assets/access-no.svg @@ -1,10 +1,10 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Iconex"> <g id="Lock x"> -<rect id="Rectangle 2" x="3.00098" y="7.22803" width="12" height="9" rx="3" stroke="#A31BCB" stroke-width="1.125"/> -<path id="Line" d="M7.59085 13.2275L10.5908 10.2275" stroke="#A31BCB" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<rect id="Rectangle 2" x="3.00098" y="7.22803" width="12" height="9" rx="3" stroke="#4a7faa" stroke-width="1.125"/> +<path id="Line" d="M7.59085 13.2275L10.5908 10.2275" stroke="#4a7faa" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> <path id="Line_2" d="M7.59085 10.2278L10.5908 13.2278" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Rectangle 4" d="M12 7.22803V5.72803C12 4.07117 10.6569 2.72803 9 2.72803V2.72803C7.34315 2.72803 6 4.07117 6 5.72803L6 7.22803" stroke="#A31BCB" stroke-width="1.125"/> +<path id="Rectangle 4" d="M12 7.22803V5.72803C12 4.07117 10.6569 2.72803 9 2.72803V2.72803C7.34315 2.72803 6 4.07117 6 5.72803L6 7.22803" stroke="#4a7faa" stroke-width="1.125"/> </g> </g> </svg> diff --git a/src/assets/access-partial.svg b/src/assets/access-partial.svg index b0460e16..3bf19723 100644 --- a/src/assets/access-partial.svg +++ b/src/assets/access-partial.svg @@ -1,9 +1,9 @@ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Iconex"> <g id="Lock check"> -<rect id="Rectangle 2" x="3.00293" y="6.75" width="12" height="9" rx="3" stroke="#A31BCB" stroke-width="1.125"/> -<path id="Line" d="M7.50293 11.25L8.62793 12.375L10.8779 10.125" stroke="#A31BCB" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Rectangle 4" d="M12.0039 6.75V5.25C12.0039 3.59315 10.6608 2.25 9.00391 2.25V2.25C7.34705 2.25 6.00391 3.59315 6.00391 5.25L6.00391 6.75" stroke="#A31BCB" stroke-width="1.125"/> +<rect id="Rectangle 2" x="3.00293" y="6.75" width="12" height="9" rx="3" stroke="#4a7faa" stroke-width="1.125"/> +<path id="Line" d="M7.50293 11.25L8.62793 12.375L10.8779 10.125" stroke="#4a7faa" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Rectangle 4" d="M12.0039 6.75V5.25C12.0039 3.59315 10.6608 2.25 9.00391 2.25V2.25C7.34705 2.25 6.00391 3.59315 6.00391 5.25L6.00391 6.75" stroke="#4a7faa" stroke-width="1.125"/> </g> </g> </svg> diff --git a/src/assets/alert-close.svg b/src/assets/alert-close.svg index 561dbca3..82a44faa 100644 --- a/src/assets/alert-close.svg +++ b/src/assets/alert-close.svg @@ -1,5 +1,5 @@ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect x="1.50098" y="1.5" width="15" height="15" rx="3.75" stroke="#470D69" stroke-width="1.125"/> +<rect x="1.50098" y="1.5" width="15" height="15" rx="3.75" stroke="#3f6587" stroke-width="1.125"/> <path d="M7.4103 10.5912L10.5923 7.40918" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7.4103 7.40933L10.5923 10.5913" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> </svg> diff --git a/src/assets/alert.svg b/src/assets/alert.svg index 00186136..55331298 100644 --- a/src/assets/alert.svg +++ b/src/assets/alert.svg @@ -1,9 +1,9 @@ <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Danger"> -<path id="Rectangle 74" d="M1.50098 12.4451C1.50098 11.9895 1.61707 11.5415 1.83829 11.1433L6.47772 2.79234C6.88897 2.0521 7.60453 1.52978 8.43489 1.36371V1.36371C8.80858 1.28897 9.19337 1.28897 9.56707 1.36371V1.36371C10.3974 1.52978 11.113 2.0521 11.5242 2.79234L16.1637 11.1433C16.3849 11.5415 16.501 11.9895 16.501 12.4451V12.4451C16.501 13.9254 15.3009 15.1255 13.8205 15.1255H4.18141C2.70105 15.1255 1.50098 13.9254 1.50098 12.4451V12.4451Z" stroke="#470D69" stroke-width="1.125"/> +<path id="Rectangle 74" d="M1.50098 12.4451C1.50098 11.9895 1.61707 11.5415 1.83829 11.1433L6.47772 2.79234C6.88897 2.0521 7.60453 1.52978 8.43489 1.36371V1.36371C8.80858 1.28897 9.19337 1.28897 9.56707 1.36371V1.36371C10.3974 1.52978 11.113 2.0521 11.5242 2.79234L16.1637 11.1433C16.3849 11.5415 16.501 11.9895 16.501 12.4451V12.4451C16.501 13.9254 15.3009 15.1255 13.8205 15.1255H4.18141C2.70105 15.1255 1.50098 13.9254 1.50098 12.4451V12.4451Z" stroke="#3f6587" stroke-width="1.125"/> <g id="Group 231"> -<path id="Line" d="M9.00293 5.75049L9.00293 8.75049" stroke="#470D69" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Line_2" d="M9.00293 10.9992L9.00293 11.376" stroke="#470D69" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Line" d="M9.00293 5.75049L9.00293 8.75049" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Line_2" d="M9.00293 10.9992L9.00293 11.376" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> </g> </g> </svg> diff --git a/src/assets/arrow-small.svg b/src/assets/arrow-small.svg index 9c0e9b2a..0413c062 100644 --- a/src/assets/arrow-small.svg +++ b/src/assets/arrow-small.svg @@ -1,3 +1,3 @@ <svg width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M4.05876 5.25225C3.90024 5.25225 3.75933 5.19941 3.65365 5.09372L0.271831 1.71191C0.0428533 1.50054 0.0428533 1.13066 0.271831 0.919292C0.483194 0.690314 0.853081 0.690314 1.06444 0.919292L4.05876 3.896L7.03547 0.919292C7.24683 0.690314 7.61672 0.690314 7.82808 0.919292C8.05706 1.13066 8.05706 1.50054 7.82808 1.71191L4.44626 5.09372C4.34058 5.19941 4.19967 5.25225 4.05876 5.25225Z" fill="#470D69"/> +<path d="M4.05876 5.25225C3.90024 5.25225 3.75933 5.19941 3.65365 5.09372L0.271831 1.71191C0.0428533 1.50054 0.0428533 1.13066 0.271831 0.919292C0.483194 0.690314 0.853081 0.690314 1.06444 0.919292L4.05876 3.896L7.03547 0.919292C7.24683 0.690314 7.61672 0.690314 7.82808 0.919292C8.05706 1.13066 8.05706 1.50054 7.82808 1.71191L4.44626 5.09372C4.34058 5.19941 4.19967 5.25225 4.05876 5.25225Z" fill="#3f6587"/> </svg> diff --git a/src/assets/branch-colored.svg b/src/assets/branch-colored.svg index e43633d5..1f8ae5c7 100644 --- a/src/assets/branch-colored.svg +++ b/src/assets/branch-colored.svg @@ -1,3 +1,3 @@ <svg width="13" height="15" viewBox="0 0 13 15" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M12.75 2.6875C12.75 3.125 12.6315 3.52604 12.3945 3.89062C12.1576 4.25521 11.8385 4.51953 11.4375 4.68359V5.75C11.4375 6.47917 11.1823 7.09896 10.6719 7.60938C10.1615 8.11979 9.54167 8.375 8.8125 8.375H4.4375C4.20052 8.375 3.99089 8.46615 3.80859 8.64844C3.64453 8.8125 3.5625 9.01302 3.5625 9.25V10.3164C3.96354 10.4805 4.28255 10.7448 4.51953 11.1094C4.75651 11.474 4.875 11.875 4.875 12.3125C4.875 12.9141 4.65625 13.4245 4.21875 13.8438C3.79948 14.2812 3.28906 14.5 2.6875 14.5C2.08594 14.5 1.56641 14.2812 1.12891 13.8438C0.709635 13.4245 0.5 12.9141 0.5 12.3125C0.5 11.875 0.61849 11.474 0.855469 11.1094C1.09245 10.7448 1.41146 10.4805 1.8125 10.3164V4.68359C1.41146 4.51953 1.09245 4.25521 0.855469 3.89062C0.61849 3.52604 0.5 3.125 0.5 2.6875C0.5 2.08594 0.709635 1.57552 1.12891 1.15625C1.56641 0.71875 2.08594 0.5 2.6875 0.5C3.28906 0.5 3.79948 0.71875 4.21875 1.15625C4.65625 1.57552 4.875 2.08594 4.875 2.6875C4.875 2.97917 4.82031 3.26172 4.71094 3.53516C4.60156 3.79036 4.44661 4.01823 4.24609 4.21875C4.04557 4.41927 3.81771 4.57422 3.5625 4.68359V6.78906C3.8724 6.67969 4.16406 6.625 4.4375 6.625H8.8125C9.04948 6.625 9.25 6.54297 9.41406 6.37891C9.59635 6.19661 9.6875 5.98698 9.6875 5.75V4.68359C9.28646 4.51953 8.96745 4.25521 8.73047 3.89062C8.49349 3.52604 8.375 3.125 8.375 2.6875C8.375 2.08594 8.58464 1.57552 9.00391 1.15625C9.44141 0.71875 9.96094 0.5 10.5625 0.5C11.1641 0.5 11.6745 0.71875 12.0938 1.15625C12.5312 1.57552 12.75 2.08594 12.75 2.6875ZM3.15234 2.22266C3.02474 2.09505 2.86979 2.03125 2.6875 2.03125C2.50521 2.03125 2.35026 2.09505 2.22266 2.22266C2.09505 2.35026 2.03125 2.50521 2.03125 2.6875C2.03125 2.86979 2.09505 3.02474 2.22266 3.15234C2.35026 3.27995 2.50521 3.34375 2.6875 3.34375C2.86979 3.34375 3.02474 3.27995 3.15234 3.15234C3.27995 3.02474 3.34375 2.86979 3.34375 2.6875C3.34375 2.50521 3.27995 2.35026 3.15234 2.22266ZM2.22266 12.7773C2.35026 12.9049 2.50521 12.9688 2.6875 12.9688C2.86979 12.9688 3.02474 12.9049 3.15234 12.7773C3.27995 12.6497 3.34375 12.4948 3.34375 12.3125C3.34375 12.1302 3.27995 11.9753 3.15234 11.8477C3.02474 11.7201 2.86979 11.6562 2.6875 11.6562C2.50521 11.6562 2.35026 11.7201 2.22266 11.8477C2.09505 11.9753 2.03125 12.1302 2.03125 12.3125C2.03125 12.4948 2.09505 12.6497 2.22266 12.7773ZM11.0273 2.22266C10.8997 2.09505 10.7448 2.03125 10.5625 2.03125C10.3802 2.03125 10.2253 2.09505 10.0977 2.22266C9.97005 2.35026 9.90625 2.50521 9.90625 2.6875C9.90625 2.86979 9.97005 3.02474 10.0977 3.15234C10.2253 3.27995 10.3802 3.34375 10.5625 3.34375C10.7448 3.34375 10.8997 3.27995 11.0273 3.15234C11.1549 3.02474 11.2188 2.86979 11.2188 2.6875C11.2188 2.50521 11.1549 2.35026 11.0273 2.22266Z" fill="#470D69"/> +<path d="M12.75 2.6875C12.75 3.125 12.6315 3.52604 12.3945 3.89062C12.1576 4.25521 11.8385 4.51953 11.4375 4.68359V5.75C11.4375 6.47917 11.1823 7.09896 10.6719 7.60938C10.1615 8.11979 9.54167 8.375 8.8125 8.375H4.4375C4.20052 8.375 3.99089 8.46615 3.80859 8.64844C3.64453 8.8125 3.5625 9.01302 3.5625 9.25V10.3164C3.96354 10.4805 4.28255 10.7448 4.51953 11.1094C4.75651 11.474 4.875 11.875 4.875 12.3125C4.875 12.9141 4.65625 13.4245 4.21875 13.8438C3.79948 14.2812 3.28906 14.5 2.6875 14.5C2.08594 14.5 1.56641 14.2812 1.12891 13.8438C0.709635 13.4245 0.5 12.9141 0.5 12.3125C0.5 11.875 0.61849 11.474 0.855469 11.1094C1.09245 10.7448 1.41146 10.4805 1.8125 10.3164V4.68359C1.41146 4.51953 1.09245 4.25521 0.855469 3.89062C0.61849 3.52604 0.5 3.125 0.5 2.6875C0.5 2.08594 0.709635 1.57552 1.12891 1.15625C1.56641 0.71875 2.08594 0.5 2.6875 0.5C3.28906 0.5 3.79948 0.71875 4.21875 1.15625C4.65625 1.57552 4.875 2.08594 4.875 2.6875C4.875 2.97917 4.82031 3.26172 4.71094 3.53516C4.60156 3.79036 4.44661 4.01823 4.24609 4.21875C4.04557 4.41927 3.81771 4.57422 3.5625 4.68359V6.78906C3.8724 6.67969 4.16406 6.625 4.4375 6.625H8.8125C9.04948 6.625 9.25 6.54297 9.41406 6.37891C9.59635 6.19661 9.6875 5.98698 9.6875 5.75V4.68359C9.28646 4.51953 8.96745 4.25521 8.73047 3.89062C8.49349 3.52604 8.375 3.125 8.375 2.6875C8.375 2.08594 8.58464 1.57552 9.00391 1.15625C9.44141 0.71875 9.96094 0.5 10.5625 0.5C11.1641 0.5 11.6745 0.71875 12.0938 1.15625C12.5312 1.57552 12.75 2.08594 12.75 2.6875ZM3.15234 2.22266C3.02474 2.09505 2.86979 2.03125 2.6875 2.03125C2.50521 2.03125 2.35026 2.09505 2.22266 2.22266C2.09505 2.35026 2.03125 2.50521 2.03125 2.6875C2.03125 2.86979 2.09505 3.02474 2.22266 3.15234C2.35026 3.27995 2.50521 3.34375 2.6875 3.34375C2.86979 3.34375 3.02474 3.27995 3.15234 3.15234C3.27995 3.02474 3.34375 2.86979 3.34375 2.6875C3.34375 2.50521 3.27995 2.35026 3.15234 2.22266ZM2.22266 12.7773C2.35026 12.9049 2.50521 12.9688 2.6875 12.9688C2.86979 12.9688 3.02474 12.9049 3.15234 12.7773C3.27995 12.6497 3.34375 12.4948 3.34375 12.3125C3.34375 12.1302 3.27995 11.9753 3.15234 11.8477C3.02474 11.7201 2.86979 11.6562 2.6875 11.6562C2.50521 11.6562 2.35026 11.7201 2.22266 11.8477C2.09505 11.9753 2.03125 12.1302 2.03125 12.3125C2.03125 12.4948 2.09505 12.6497 2.22266 12.7773ZM11.0273 2.22266C10.8997 2.09505 10.7448 2.03125 10.5625 2.03125C10.3802 2.03125 10.2253 2.09505 10.0977 2.22266C9.97005 2.35026 9.90625 2.50521 9.90625 2.6875C9.90625 2.86979 9.97005 3.02474 10.0977 3.15234C10.2253 3.27995 10.3802 3.34375 10.5625 3.34375C10.7448 3.34375 10.8997 3.27995 11.0273 3.15234C11.1549 3.02474 11.2188 2.86979 11.2188 2.6875C11.2188 2.50521 11.1549 2.35026 11.0273 2.22266Z" fill="#3f6587"/> </svg> diff --git a/src/assets/calendar.svg b/src/assets/calendar.svg index 36460c4c..247ac1f1 100644 --- a/src/assets/calendar.svg +++ b/src/assets/calendar.svg @@ -1,6 +1,6 @@ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Calendar"> -<rect id="Rectangle 2" x="1.25" y="2.62476" width="13.5" height="13.5" rx="3.75" stroke="#470D69" stroke-width="1.125"/> +<rect id="Rectangle 2" x="1.25" y="2.62476" width="13.5" height="13.5" rx="3.75" stroke="#3f6587" stroke-width="1.125"/> <path id="Line" d="M1.25 6.37451H14.75" stroke="#A5A5A5" stroke-width="1.125" stroke-linejoin="round"/> <path id="Line_2" d="M11.375 1.49976L11.375 3.74976" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> <path id="Line_3" d="M4.625 1.49976L4.625 3.74976" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> diff --git a/src/assets/close.svg b/src/assets/close.svg index 0e38a186..8318fdf7 100644 --- a/src/assets/close.svg +++ b/src/assets/close.svg @@ -1,10 +1,10 @@ <svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Iconex"> <g id="Close"> -<rect id="Rectangle 74" x="2.66895" y="3.31079" width="26.6667" height="26.6667" rx="6.66667" stroke="#470D69" stroke-width="2"/> +<rect id="Rectangle 74" x="2.66895" y="3.31079" width="26.6667" height="26.6667" rx="6.66667" stroke="#3f6587" stroke-width="2"/> <g id="Group 235"> -<path id="Line" d="M13.1732 19.4733L18.8301 13.8164" stroke="#470D69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Line_2" d="M13.1732 13.8168L18.8301 19.4736" stroke="#470D69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Line" d="M13.1732 19.4733L18.8301 13.8164" stroke="#3f6587" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Line_2" d="M13.1732 13.8168L18.8301 19.4736" stroke="#3f6587" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> </g> </g> diff --git a/src/assets/console-close.svg b/src/assets/console-close.svg index a6d3ceba..4e72b571 100644 --- a/src/assets/console-close.svg +++ b/src/assets/console-close.svg @@ -1,6 +1,6 @@ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Close"> -<rect id="Rectangle 74" x="1.50098" y="1.5" width="15" height="15" rx="3.75" stroke="#470D69" stroke-width="1.125"/> +<rect id="Rectangle 74" x="1.50098" y="1.5" width="15" height="15" rx="3.75" stroke="#3f6587" stroke-width="1.125"/> <g id="Group 235"> <path id="Line" d="M7.4103 10.5912L10.5923 7.40918" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> <path id="Line_2" d="M7.4103 7.40933L10.5923 10.5913" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> diff --git a/src/assets/copy.svg b/src/assets/copy.svg index fa6f4121..3d569e46 100644 --- a/src/assets/copy.svg +++ b/src/assets/copy.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect x="3.75073" y="2.60608" width="7.5" height="10.5" rx="2.25" stroke="#470D69" stroke-width="1.125"/> -<path d="M13.126 5.90698C13.7985 6.29602 14.251 7.02315 14.251 7.85597V13.856C14.251 15.0986 13.2436 16.106 12.001 16.106H9.00099C8.16817 16.106 7.44104 15.6535 7.052 14.981" stroke="#470D69" stroke-width="1.125" stroke-linecap="round"/> +<rect x="3.75073" y="2.60608" width="7.5" height="10.5" rx="2.25" stroke="#3f6587" stroke-width="1.125"/> +<path d="M13.126 5.90698C13.7985 6.29602 14.251 7.02315 14.251 7.85597V13.856C14.251 15.0986 13.2436 16.106 12.001 16.106H9.00099C8.16817 16.106 7.44104 15.6535 7.052 14.981" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round"/> </svg> diff --git a/src/assets/csv.svg b/src/assets/csv.svg index 3c5cc9bc..5408aeb0 100644 --- a/src/assets/csv.svg +++ b/src/assets/csv.svg @@ -1,3 +1,3 @@ <svg width="12" height="17" viewBox="0 0 12 17" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M11.4062 3.05078C11.8021 3.44661 12 3.92578 12 4.48828V14.1445C12 14.6862 11.8021 15.1549 11.4062 15.5508C11.0104 15.9466 10.5417 16.1445 10 16.1445H2C1.45833 16.1445 0.989583 15.9466 0.59375 15.5508C0.197917 15.1758 0 14.707 0 14.1445V2.14453C0 1.58203 0.1875 1.11328 0.5625 0.738281C0.958333 0.342448 1.4375 0.144531 2 0.144531H7.65625C8.21875 0.144531 8.69792 0.342448 9.09375 0.738281L11.4062 3.05078ZM10.5 14.1445V5.14453H8C7.72917 5.14453 7.48958 5.05078 7.28125 4.86328C7.09375 4.65495 7 4.41536 7 4.14453V1.64453H2C1.85417 1.64453 1.72917 1.69661 1.625 1.80078C1.54167 1.88411 1.5 1.9987 1.5 2.14453V14.1445C1.5 14.2904 1.54167 14.4049 1.625 14.4883C1.72917 14.5924 1.85417 14.6445 2 14.6445H10C10.1458 14.6445 10.2604 14.5924 10.3438 14.4883C10.4479 14.4049 10.5 14.2904 10.5 14.1445ZM5.625 9.45703L6.28125 10.0508C6.57292 10.3008 6.71875 10.5924 6.71875 10.9258C6.71875 11.0924 6.67708 11.2487 6.59375 11.3945C6.53125 11.5404 6.4375 11.6758 6.3125 11.8008C6.20833 11.9049 6.07292 11.9883 5.90625 12.0508C5.73958 12.1133 5.5625 12.1445 5.375 12.1445H5.25C5.10417 12.1445 4.97917 12.1029 4.875 12.0195C4.79167 11.9154 4.75 11.7904 4.75 11.6445C4.75 11.4987 4.79167 11.3841 4.875 11.3008C4.97917 11.1966 5.10417 11.1445 5.25 11.1445H5.375C5.60417 11.1445 5.71875 11.0716 5.71875 10.9258C5.71875 10.8841 5.6875 10.8529 5.625 10.832L4.96875 10.2383C4.67708 9.98828 4.53125 9.69661 4.53125 9.36328C4.53125 9.13411 4.59375 8.92578 4.71875 8.73828C4.84375 8.55078 5 8.40495 5.1875 8.30078C5.39583 8.19661 5.625 8.14453 5.875 8.14453H6C6.14583 8.14453 6.26042 8.19661 6.34375 8.30078C6.44792 8.38411 6.5 8.4987 6.5 8.64453C6.5 8.79036 6.44792 8.91536 6.34375 9.01953C6.26042 9.10286 6.14583 9.14453 6 9.14453H5.875C5.64583 9.14453 5.53125 9.21745 5.53125 9.36328C5.53125 9.40495 5.5625 9.4362 5.625 9.45703ZM3.84375 9.01953C3.76042 9.10286 3.64583 9.14453 3.5 9.14453C3.35417 9.14453 3.22917 9.19661 3.125 9.30078C3.04167 9.38411 3 9.4987 3 9.64453V10.6445C3 10.7904 3.04167 10.9154 3.125 11.0195C3.22917 11.1029 3.35417 11.1445 3.5 11.1445C3.64583 11.1445 3.76042 11.1966 3.84375 11.3008C3.94792 11.3841 4 11.4987 4 11.6445C4 11.7904 3.94792 11.9154 3.84375 12.0195C3.76042 12.1029 3.64583 12.1445 3.5 12.1445C3.08333 12.1445 2.72917 11.9987 2.4375 11.707C2.14583 11.4154 2 11.0612 2 10.6445V9.64453C2 9.22786 2.14583 8.8737 2.4375 8.58203C2.72917 8.29036 3.08333 8.14453 3.5 8.14453C3.64583 8.14453 3.76042 8.19661 3.84375 8.30078C3.94792 8.38411 4 8.4987 4 8.64453C4 8.79036 3.94792 8.91536 3.84375 9.01953ZM8 8.64453V9.05078C8 9.69661 8.16667 10.2904 8.5 10.832C8.83333 10.2904 9 9.69661 9 9.05078V8.64453C9 8.4987 9.04167 8.38411 9.125 8.30078C9.22917 8.19661 9.35417 8.14453 9.5 8.14453C9.64583 8.14453 9.76042 8.19661 9.84375 8.30078C9.94792 8.38411 10 8.4987 10 8.64453V9.05078C10 10.1966 9.625 11.1758 8.875 11.9883C8.77083 12.0924 8.64583 12.1445 8.5 12.1445C8.35417 12.1445 8.22917 12.0924 8.125 11.9883C7.375 11.1758 7 10.1966 7 9.05078V8.64453C7 8.4987 7.04167 8.38411 7.125 8.30078C7.22917 8.19661 7.35417 8.14453 7.5 8.14453C7.64583 8.14453 7.76042 8.19661 7.84375 8.30078C7.94792 8.38411 8 8.4987 8 8.64453Z" fill="#470D69"/> +<path d="M11.4062 3.05078C11.8021 3.44661 12 3.92578 12 4.48828V14.1445C12 14.6862 11.8021 15.1549 11.4062 15.5508C11.0104 15.9466 10.5417 16.1445 10 16.1445H2C1.45833 16.1445 0.989583 15.9466 0.59375 15.5508C0.197917 15.1758 0 14.707 0 14.1445V2.14453C0 1.58203 0.1875 1.11328 0.5625 0.738281C0.958333 0.342448 1.4375 0.144531 2 0.144531H7.65625C8.21875 0.144531 8.69792 0.342448 9.09375 0.738281L11.4062 3.05078ZM10.5 14.1445V5.14453H8C7.72917 5.14453 7.48958 5.05078 7.28125 4.86328C7.09375 4.65495 7 4.41536 7 4.14453V1.64453H2C1.85417 1.64453 1.72917 1.69661 1.625 1.80078C1.54167 1.88411 1.5 1.9987 1.5 2.14453V14.1445C1.5 14.2904 1.54167 14.4049 1.625 14.4883C1.72917 14.5924 1.85417 14.6445 2 14.6445H10C10.1458 14.6445 10.2604 14.5924 10.3438 14.4883C10.4479 14.4049 10.5 14.2904 10.5 14.1445ZM5.625 9.45703L6.28125 10.0508C6.57292 10.3008 6.71875 10.5924 6.71875 10.9258C6.71875 11.0924 6.67708 11.2487 6.59375 11.3945C6.53125 11.5404 6.4375 11.6758 6.3125 11.8008C6.20833 11.9049 6.07292 11.9883 5.90625 12.0508C5.73958 12.1133 5.5625 12.1445 5.375 12.1445H5.25C5.10417 12.1445 4.97917 12.1029 4.875 12.0195C4.79167 11.9154 4.75 11.7904 4.75 11.6445C4.75 11.4987 4.79167 11.3841 4.875 11.3008C4.97917 11.1966 5.10417 11.1445 5.25 11.1445H5.375C5.60417 11.1445 5.71875 11.0716 5.71875 10.9258C5.71875 10.8841 5.6875 10.8529 5.625 10.832L4.96875 10.2383C4.67708 9.98828 4.53125 9.69661 4.53125 9.36328C4.53125 9.13411 4.59375 8.92578 4.71875 8.73828C4.84375 8.55078 5 8.40495 5.1875 8.30078C5.39583 8.19661 5.625 8.14453 5.875 8.14453H6C6.14583 8.14453 6.26042 8.19661 6.34375 8.30078C6.44792 8.38411 6.5 8.4987 6.5 8.64453C6.5 8.79036 6.44792 8.91536 6.34375 9.01953C6.26042 9.10286 6.14583 9.14453 6 9.14453H5.875C5.64583 9.14453 5.53125 9.21745 5.53125 9.36328C5.53125 9.40495 5.5625 9.4362 5.625 9.45703ZM3.84375 9.01953C3.76042 9.10286 3.64583 9.14453 3.5 9.14453C3.35417 9.14453 3.22917 9.19661 3.125 9.30078C3.04167 9.38411 3 9.4987 3 9.64453V10.6445C3 10.7904 3.04167 10.9154 3.125 11.0195C3.22917 11.1029 3.35417 11.1445 3.5 11.1445C3.64583 11.1445 3.76042 11.1966 3.84375 11.3008C3.94792 11.3841 4 11.4987 4 11.6445C4 11.7904 3.94792 11.9154 3.84375 12.0195C3.76042 12.1029 3.64583 12.1445 3.5 12.1445C3.08333 12.1445 2.72917 11.9987 2.4375 11.707C2.14583 11.4154 2 11.0612 2 10.6445V9.64453C2 9.22786 2.14583 8.8737 2.4375 8.58203C2.72917 8.29036 3.08333 8.14453 3.5 8.14453C3.64583 8.14453 3.76042 8.19661 3.84375 8.30078C3.94792 8.38411 4 8.4987 4 8.64453C4 8.79036 3.94792 8.91536 3.84375 9.01953ZM8 8.64453V9.05078C8 9.69661 8.16667 10.2904 8.5 10.832C8.83333 10.2904 9 9.69661 9 9.05078V8.64453C9 8.4987 9.04167 8.38411 9.125 8.30078C9.22917 8.19661 9.35417 8.14453 9.5 8.14453C9.64583 8.14453 9.76042 8.19661 9.84375 8.30078C9.94792 8.38411 10 8.4987 10 8.64453V9.05078C10 10.1966 9.625 11.1758 8.875 11.9883C8.77083 12.0924 8.64583 12.1445 8.5 12.1445C8.35417 12.1445 8.22917 12.0924 8.125 11.9883C7.375 11.1758 7 10.1966 7 9.05078V8.64453C7 8.4987 7.04167 8.38411 7.125 8.30078C7.22917 8.19661 7.35417 8.14453 7.5 8.14453C7.64583 8.14453 7.76042 8.19661 7.84375 8.30078C7.94792 8.38411 8 8.4987 8 8.64453Z" fill="#3f6587"/> </svg> diff --git a/src/assets/databases/duckdb.svg b/src/assets/databases/duckdb.svg new file mode 100644 index 00000000..7adba005 --- /dev/null +++ b/src/assets/databases/duckdb.svg @@ -0,0 +1,5 @@ +<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"> +<circle cx="32" cy="32" r="22" fill="black"/> +<path d="M27.5404 41.5135C32.6305 41.5135 36.7566 37.3873 36.7566 32.2973C36.7566 27.2073 32.6305 23.0811 27.5404 23.0811C22.4504 23.0811 18.3242 27.2073 18.3242 32.2973C18.3242 37.3873 22.4504 41.5135 27.5404 41.5135Z" fill="#FCF150"/> +<path d="M39.7296 29.027H44.4864V29.0403C46.1529 29.1906 47.4594 30.5914 47.4594 32.2973C47.4594 34.0032 46.1529 35.404 44.4864 35.5542V35.5675H39.7296V29.027Z" fill="#FCF150"/> +</svg> diff --git a/src/assets/databases/oracle.svg b/src/assets/databases/oracle.svg new file mode 100644 index 00000000..bdb27bd8 --- /dev/null +++ b/src/assets/databases/oracle.svg @@ -0,0 +1,10 @@ +<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0)"> +<path d="M19.9804 42.0692C12.3755 42.0692 6.2915 35.9853 6.2915 28.3803C6.2915 20.7754 12.3755 14.6914 19.9804 14.6914H36.0199C43.6248 14.6914 49.7088 20.7754 49.7088 28.3803C49.7088 35.9853 43.6248 42.0692 36.0199 42.0692H19.9804ZM35.6051 37.2297C40.5829 37.2297 44.4545 33.2198 44.4545 28.3803C44.4545 23.4026 40.4446 19.531 35.6051 19.531H20.3952C15.4174 19.531 11.5458 23.5408 11.5458 28.3803C11.5458 33.2198 15.5557 37.2297 20.3952 37.2297H35.6051Z" fill="#E0252D"/> +</g> +<defs> +<clipPath id="clip0"> +<rect width="44.8" height="28.7605" fill="white" transform="translate(5.6001 14)"/> +</clipPath> +</defs> +</svg> diff --git a/src/assets/databases/pinot.svg b/src/assets/databases/pinot.svg new file mode 100644 index 00000000..850dee6b --- /dev/null +++ b/src/assets/databases/pinot.svg @@ -0,0 +1,3 @@ +<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M35.5404 30.1244C35.0326 30.6324 34.3438 30.9177 33.6254 30.9177C32.9071 30.9177 32.2183 30.6324 31.7105 30.1244C31.2026 29.6165 30.917 28.9276 30.917 28.2093C30.917 27.4909 31.2026 26.802 31.7105 26.2941C32.2183 25.7862 32.9071 25.5008 33.6254 25.5008C34.3438 25.5008 35.0326 25.7862 35.5404 26.2941C36.0482 26.802 36.3339 27.4909 36.3339 28.2093C36.3339 28.9276 36.0482 29.6165 35.5404 30.1244ZM28.4328 11.0996C28.2297 11.3028 27.9546 11.4169 27.6668 11.4169C27.3791 11.4169 27.104 11.3028 26.9009 11.0996C26.6977 10.8964 26.5835 10.6209 26.5835 10.3335C26.5835 10.0462 26.6977 9.77063 26.9009 9.56747C27.104 9.36427 27.3791 9.25014 27.6668 9.25014C27.9546 9.25014 28.2297 9.36427 28.4328 9.56747C28.636 9.77063 28.7502 10.0462 28.7502 10.3335C28.7502 10.6209 28.636 10.8964 28.4328 11.0996ZM32.231 14.6424C32.1559 14.6587 32.0787 14.667 32.0004 14.667C31.7126 14.667 31.4375 14.5529 31.2344 14.3497C31.0312 14.1465 30.917 13.871 30.917 13.5837C30.917 13.2963 31.0312 13.0208 31.2344 12.8176C31.4375 12.6144 31.7126 12.5003 32.0004 12.5003C32.2881 12.5003 32.5632 12.6144 32.7663 12.8176C32.9695 13.0208 33.0837 13.2963 33.0837 13.5837C33.0837 13.871 32.9695 14.1465 32.7663 14.3497C32.6182 14.4979 32.432 14.5987 32.231 14.6424ZM37.0999 7.84943C36.8967 8.05263 36.6217 8.16676 36.3339 8.16676C36.0461 8.16676 35.771 8.05263 35.5679 7.84943C35.3648 7.64626 35.2505 7.37072 35.2505 7.08338C35.2505 6.79604 35.3648 6.5205 35.5679 6.31733C35.771 6.11413 36.0461 6 36.3339 6C36.6217 6 36.8967 6.11413 37.0999 6.31733C37.303 6.5205 37.4173 6.79604 37.4173 7.08338C37.4173 7.37072 37.303 7.64626 37.0999 7.84943ZM34.7003 55.1551L40.7002 56.6555C41.3191 56.8083 41.7518 57.363 41.7518 58H22.251C22.251 57.363 22.6848 56.8083 23.3016 56.6534L29.239 55.1692C30.2261 54.9222 30.918 54.0349 30.918 53.0186V47.1662C30.918 46.2551 30.5403 45.4317 29.9352 44.8413C27.05 44.396 24.3924 43.0078 22.379 40.8935C19.5595 37.9347 18.4497 33.7692 19.2569 29.7877L22.2489 15.7504H26.5824V13.5837C26.5824 13.2963 26.6967 13.0208 26.8998 12.8176C27.1029 12.6144 27.3791 12.5003 27.6658 12.5003C27.9536 12.5003 28.2286 12.6144 28.4318 12.8176C28.6349 13.0208 28.7492 13.2963 28.7492 13.5837V37.418C28.7492 37.5634 28.7788 37.7057 28.8338 37.8372C28.8878 37.9656 28.9661 38.0837 29.0666 38.184C29.2697 38.3872 29.5458 38.5014 29.8325 38.5014C30.1203 38.5014 30.3954 38.3872 30.5985 38.184C30.7276 38.0554 30.8196 37.8976 30.8704 37.7263C30.9001 37.6271 30.9159 37.5234 30.9159 37.418V32.2633C31.6724 32.7684 32.5547 33.052 33.4636 33.082C34.3724 33.1121 35.2717 32.8875 36.0588 32.4334C36.847 31.9794 37.4924 31.3142 37.9219 30.5128C38.3515 29.7114 38.5493 28.8058 38.4911 27.8983C38.3388 25.4326 36.3032 23.4402 33.836 23.3373C32.8002 23.2921 31.7782 23.5787 30.917 24.1553V16.8338C30.917 16.5464 31.0312 16.2709 31.2344 16.0677C31.4375 15.8645 31.7136 15.7504 32.0004 15.7504C32.2881 15.7504 32.5632 15.8645 32.7663 16.0677C32.8965 16.1977 32.9896 16.3574 33.0404 16.5308C33.0689 16.6284 33.0837 16.7303 33.0837 16.8338V17.9172C33.0837 18.2045 33.198 18.48 33.4011 18.6832C33.6043 18.8864 33.8804 19.0005 34.1671 19.0005C34.4549 19.0005 34.73 18.8864 34.9331 18.6832C35.1362 18.48 35.2505 18.2045 35.2505 17.9172V10.3335C35.2505 10.0462 35.3648 9.77063 35.5679 9.56747C35.771 9.36427 36.0472 9.25014 36.3339 9.25014C36.6217 9.25014 36.8967 9.36427 37.0999 9.56747C37.303 9.77063 37.4173 10.0462 37.4173 10.3335V15.7504H41.7508L44.7449 29.7877C45.5521 33.767 44.4423 37.9347 41.6228 40.8935C39.6083 43.0072 36.9517 44.3952 34.0666 44.8413C33.4614 45.4317 33.0837 46.2551 33.0837 47.1662V53.0836C33.0837 53.5597 33.2424 54.0222 33.5355 54.3976C33.8286 54.7729 34.238 55.0396 34.7003 55.1551Z" fill="#C7154A"/> +</svg> diff --git a/src/assets/databases/sqlite.svg b/src/assets/databases/sqlite.svg new file mode 100644 index 00000000..85a57dfc --- /dev/null +++ b/src/assets/databases/sqlite.svg @@ -0,0 +1,12 @@ +<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M46.8023 11.2915H15.5293C13.4334 11.2915 11.7185 13.0067 11.7185 15.1026V49.5909C11.7185 51.6866 13.4334 53.4015 15.5293 53.4015H36.1265C35.8928 43.153 39.3925 23.2639 46.8023 11.2915Z" fill="#0F80CC"/> +<path d="M45.6657 12.4033H15.5288C14.0406 12.4033 12.8295 13.6141 12.8295 15.1026V47.0746C19.6548 44.4551 29.8988 42.1948 36.9819 42.2974C38.4053 34.8549 42.5886 20.2693 45.6657 12.4033V12.4033Z" fill="url(#paint0_linear_971_1465)"/> +<path d="M54.0964 10.1629C51.9546 8.25282 49.3613 9.02006 46.8019 11.2915C46.422 11.629 46.0429 12.0034 45.6658 12.4033C41.2874 17.048 37.2234 25.6515 35.9607 32.222C36.4526 33.2194 36.8368 34.4923 37.0898 35.4646C37.1546 35.714 37.2132 35.9482 37.2599 36.1473C37.3711 36.6187 37.4308 36.9244 37.4308 36.9244C37.4308 36.9244 37.3915 36.7759 37.2304 36.3088C37.1998 36.2192 37.1656 36.1214 37.1252 36.0063C37.1079 35.9588 37.0839 35.901 37.0576 35.8394C36.772 35.1754 35.982 33.7741 35.6343 33.164C35.3369 34.0413 35.0741 34.8619 34.8541 35.6044C35.8578 37.4409 36.4695 40.5882 36.4695 40.5882C36.4695 40.5882 36.4164 40.3843 36.1642 39.6724C35.9403 39.0428 34.825 37.0886 34.5608 36.6318C34.1089 38.3001 33.9293 39.4265 34.0912 39.7008C34.4056 40.2322 34.7051 41.1491 34.968 42.1631C35.562 44.4475 35.9749 47.2285 35.9749 47.2285C35.9749 47.2285 35.9882 47.4128 36.0106 47.6964C35.9281 49.6148 35.9776 51.6038 36.1261 53.4015C36.3229 55.7814 36.6934 57.8257 37.1656 58.9199L37.4862 58.7451C36.7928 56.5895 36.5111 53.7644 36.6345 50.5065C36.8211 45.5267 37.967 39.5212 40.0845 33.2618C43.6618 23.8129 48.6251 16.2317 53.1677 12.6111C49.0274 16.3503 43.4238 28.4537 41.7463 32.9358C39.8681 37.9549 38.5371 42.6648 37.7349 47.1774C39.1189 42.9469 43.5939 41.1284 43.5939 41.1284C43.5939 41.1284 45.7887 38.4215 48.3537 34.5543C46.8172 34.9048 44.2943 35.5046 43.4493 35.8598C42.2028 36.3827 41.8669 36.561 41.8669 36.561C41.8669 36.561 45.9046 34.1022 49.3688 32.9888C54.1329 25.4853 59.3233 14.8256 54.0964 10.1629" fill="#003B57"/> +<defs> +<linearGradient id="paint0_linear_971_1465" x1="31.7633" y1="13.1129" x2="31.7633" y2="45.1465" gradientUnits="userSpaceOnUse"> +<stop stop-color="#97D9F6"/> +<stop offset="0.920245" stop-color="#0F80CC"/> +<stop offset="1" stop-color="#0F80CC"/> +</linearGradient> +</defs> +</svg> diff --git a/src/assets/docs.svg b/src/assets/docs.svg index ac4dcc07..c6b132ea 100644 --- a/src/assets/docs.svg +++ b/src/assets/docs.svg @@ -1,6 +1,6 @@ <svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect x="3.47852" y="1.50049" width="12" height="15" rx="3" stroke="#470D69" stroke-width="1.125"/> -<path d="M6.47852 5.25049H12.4785" stroke="#470D69" stroke-width="1.125" stroke-linecap="round"/> -<path d="M6.47852 9H12.4785" stroke="#470D69" stroke-width="1.125" stroke-linecap="round"/> -<path d="M6.47852 12.75H9.47852" stroke="#470D69" stroke-width="1.125" stroke-linecap="round"/> +<rect x="3.47852" y="1.50049" width="12" height="15" rx="3" stroke="#3f6587" stroke-width="1.125"/> +<path d="M6.47852 5.25049H12.4785" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round"/> +<path d="M6.47852 9H12.4785" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round"/> +<path d="M6.47852 12.75H9.47852" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round"/> </svg> diff --git a/src/assets/eye.svg b/src/assets/eye.svg index de0e5598..68ec0d38 100644 --- a/src/assets/eye.svg +++ b/src/assets/eye.svg @@ -1,3 +1,3 @@ <svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path id="field-placeholder" d="M15.918 5.89099C15.9727 6.03682 16 6.19177 16 6.35583C16 6.5199 15.9727 6.67485 15.918 6.82068C15.1523 8.53422 14.0768 9.91052 12.6914 10.9496C11.306 11.9704 9.78385 12.4808 8.125 12.4808C6.46615 12.4808 4.94401 11.9704 3.55859 10.9496C2.17318 9.91052 1.09766 8.53422 0.332031 6.82068C0.277344 6.67485 0.25 6.5199 0.25 6.35583C0.25 6.19177 0.277344 6.03682 0.332031 5.89099C1.09766 4.17745 2.17318 2.81026 3.55859 1.78943C4.94401 0.750366 6.46615 0.230835 8.125 0.230835C9.78385 0.230835 11.306 0.750366 12.6914 1.78943C14.0768 2.81026 15.1523 4.17745 15.918 5.89099ZM4.32422 9.88318C5.49089 10.7399 6.75781 11.1683 8.125 11.1683C9.49219 11.1683 10.7591 10.7399 11.9258 9.88318C13.0924 9.00818 14.013 7.8324 14.6875 6.35583C14.013 4.87927 13.0924 3.71261 11.9258 2.85583C10.7591 1.98083 9.49219 1.54333 8.125 1.54333C6.75781 1.54333 5.49089 1.98083 4.32422 2.85583C3.15755 3.71261 2.23698 4.87927 1.5625 6.35583C2.23698 7.8324 3.15755 9.00818 4.32422 9.88318ZM5.63672 3.8949C6.32943 3.20219 7.15885 2.85583 8.125 2.85583C9.09115 2.85583 9.91146 3.20219 10.5859 3.8949C11.2786 4.56938 11.625 5.38969 11.625 6.35583C11.625 6.99386 11.4701 7.5863 11.1602 8.13318C10.8503 8.66182 10.4219 9.0811 9.875 9.39099C9.34635 9.70089 8.76302 9.85583 8.125 9.85583C7.15885 9.85583 6.32943 9.5186 5.63672 8.84412C4.96224 8.15141 4.625 7.32198 4.625 6.35583C4.625 5.38969 4.96224 4.56938 5.63672 3.8949ZM6.56641 7.91443C7.00391 8.3337 7.52344 8.54333 8.125 8.54333C8.72656 8.54333 9.23698 8.3337 9.65625 7.91443C10.0938 7.47693 10.3125 6.9574 10.3125 6.35583C10.3125 5.95479 10.2122 5.59021 10.0117 5.26208C9.82943 4.91573 9.5651 4.65141 9.21875 4.46912C8.89062 4.2686 8.52604 4.16833 8.125 4.16833C8.125 4.16833 8.11589 4.16833 8.09766 4.16833C8.07943 4.16833 8.07031 4.16833 8.07031 4.16833C8.10677 4.3324 8.125 4.47823 8.125 4.60583C8.125 5.09802 7.95182 5.51729 7.60547 5.86365C7.27734 6.19177 6.86719 6.35583 6.375 6.35583C6.2474 6.35583 6.10156 6.33761 5.9375 6.30115C5.9375 6.30115 5.9375 6.31026 5.9375 6.32849C5.9375 6.34672 5.9375 6.35583 5.9375 6.35583C5.9375 6.9574 6.14714 7.47693 6.56641 7.91443Z" fill="#470D69"/> +<path id="field-placeholder" d="M15.918 5.89099C15.9727 6.03682 16 6.19177 16 6.35583C16 6.5199 15.9727 6.67485 15.918 6.82068C15.1523 8.53422 14.0768 9.91052 12.6914 10.9496C11.306 11.9704 9.78385 12.4808 8.125 12.4808C6.46615 12.4808 4.94401 11.9704 3.55859 10.9496C2.17318 9.91052 1.09766 8.53422 0.332031 6.82068C0.277344 6.67485 0.25 6.5199 0.25 6.35583C0.25 6.19177 0.277344 6.03682 0.332031 5.89099C1.09766 4.17745 2.17318 2.81026 3.55859 1.78943C4.94401 0.750366 6.46615 0.230835 8.125 0.230835C9.78385 0.230835 11.306 0.750366 12.6914 1.78943C14.0768 2.81026 15.1523 4.17745 15.918 5.89099ZM4.32422 9.88318C5.49089 10.7399 6.75781 11.1683 8.125 11.1683C9.49219 11.1683 10.7591 10.7399 11.9258 9.88318C13.0924 9.00818 14.013 7.8324 14.6875 6.35583C14.013 4.87927 13.0924 3.71261 11.9258 2.85583C10.7591 1.98083 9.49219 1.54333 8.125 1.54333C6.75781 1.54333 5.49089 1.98083 4.32422 2.85583C3.15755 3.71261 2.23698 4.87927 1.5625 6.35583C2.23698 7.8324 3.15755 9.00818 4.32422 9.88318ZM5.63672 3.8949C6.32943 3.20219 7.15885 2.85583 8.125 2.85583C9.09115 2.85583 9.91146 3.20219 10.5859 3.8949C11.2786 4.56938 11.625 5.38969 11.625 6.35583C11.625 6.99386 11.4701 7.5863 11.1602 8.13318C10.8503 8.66182 10.4219 9.0811 9.875 9.39099C9.34635 9.70089 8.76302 9.85583 8.125 9.85583C7.15885 9.85583 6.32943 9.5186 5.63672 8.84412C4.96224 8.15141 4.625 7.32198 4.625 6.35583C4.625 5.38969 4.96224 4.56938 5.63672 3.8949ZM6.56641 7.91443C7.00391 8.3337 7.52344 8.54333 8.125 8.54333C8.72656 8.54333 9.23698 8.3337 9.65625 7.91443C10.0938 7.47693 10.3125 6.9574 10.3125 6.35583C10.3125 5.95479 10.2122 5.59021 10.0117 5.26208C9.82943 4.91573 9.5651 4.65141 9.21875 4.46912C8.89062 4.2686 8.52604 4.16833 8.125 4.16833C8.125 4.16833 8.11589 4.16833 8.09766 4.16833C8.07943 4.16833 8.07031 4.16833 8.07031 4.16833C8.10677 4.3324 8.125 4.47823 8.125 4.60583C8.125 5.09802 7.95182 5.51729 7.60547 5.86365C7.27734 6.19177 6.86719 6.35583 6.375 6.35583C6.2474 6.35583 6.10156 6.33761 5.9375 6.30115C5.9375 6.30115 5.9375 6.31026 5.9375 6.32849C5.9375 6.34672 5.9375 6.35583 5.9375 6.35583C5.9375 6.9574 6.14714 7.47693 6.56641 7.91443Z" fill="#3f6587"/> </svg> diff --git a/src/assets/js-file.svg b/src/assets/js-file.svg index 910a7a76..176daea1 100644 --- a/src/assets/js-file.svg +++ b/src/assets/js-file.svg @@ -1,4 +1,4 @@ <svg width="16" height="19" viewBox="0 0 16 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M13.0625 8.9375H0.6875C0.378125 8.9375 0.125 9.19063 0.125 9.5V15.125C0.125 15.4344 0.378125 15.6875 0.6875 15.6875H13.0625C13.3724 15.6875 13.625 15.4344 13.625 15.125V9.5C13.625 9.19063 13.3724 8.9375 13.0625 8.9375ZM6.40604 12.9341C6.40604 13.64 6.06854 14.0676 5.29119 14.0676C4.90876 14.0676 4.58919 13.9635 4.31071 13.6046C4.08119 13.3302 4.5126 12.9347 4.74663 13.2222C4.93559 13.4562 5.13761 13.5102 5.33561 13.5007C5.58761 13.4917 5.80808 13.3792 5.81261 12.9343V11.1579C5.81261 10.7798 6.40661 10.7798 6.40661 11.1579L6.40649 12.9342L6.40604 12.9341ZM7.16316 13.7751C7.01463 13.6542 7.01914 13.4567 7.10013 13.3347C7.21715 13.2183 7.3471 13.1777 7.50066 13.3032C7.86905 13.5552 8.81865 13.7441 8.88557 13.1047C8.82706 12.4392 6.95626 12.8397 7.09573 11.5623C7.19919 10.6899 8.51654 10.533 9.13706 11.01C9.44367 11.2569 9.11961 11.6484 8.84903 11.4504C8.51654 11.239 7.76119 11.1399 7.66665 11.6074C7.54511 12.3454 9.50156 11.9229 9.47003 13.1188C9.43952 14.2611 7.78419 14.2882 7.16316 13.7751Z" fill="#470D69"/> -<path d="M15.3124 4.76696L11.6079 1.0625C11.2827 0.736314 10.7113 0.5 10.25 0.5H4.0625C3.13212 0.5 2.375 1.25713 2.375 2.1875V7.8125C2.375 8.12351 2.62649 8.375 2.9375 8.375C3.24851 8.375 3.5 8.12351 3.5 7.8125V2.1875C3.5 1.87762 3.75199 1.625 4.0625 1.625H9.125C9.74651 1.625 10.25 2.129 10.25 2.75V4.85938C10.25 5.55572 10.8204 6.125 11.5156 6.125H13.625C14.2465 6.125 14.75 6.629 14.75 7.25V16.8125C14.75 17.1224 14.4985 17.375 14.1875 17.375H4.0625C3.75199 17.375 3.5 17.1224 3.5 16.8125C3.5 16.5015 3.24851 16.25 2.9375 16.25C2.62649 16.25 2.375 16.5015 2.375 16.8125C2.375 17.7429 3.13212 18.5 4.0625 18.5H14.1875C15.1179 18.5 15.875 17.7429 15.875 16.8125V6.125C15.875 5.66433 15.6387 5.0928 15.3125 4.76709L15.3124 4.76696Z" fill="#470D69"/> +<path d="M13.0625 8.9375H0.6875C0.378125 8.9375 0.125 9.19063 0.125 9.5V15.125C0.125 15.4344 0.378125 15.6875 0.6875 15.6875H13.0625C13.3724 15.6875 13.625 15.4344 13.625 15.125V9.5C13.625 9.19063 13.3724 8.9375 13.0625 8.9375ZM6.40604 12.9341C6.40604 13.64 6.06854 14.0676 5.29119 14.0676C4.90876 14.0676 4.58919 13.9635 4.31071 13.6046C4.08119 13.3302 4.5126 12.9347 4.74663 13.2222C4.93559 13.4562 5.13761 13.5102 5.33561 13.5007C5.58761 13.4917 5.80808 13.3792 5.81261 12.9343V11.1579C5.81261 10.7798 6.40661 10.7798 6.40661 11.1579L6.40649 12.9342L6.40604 12.9341ZM7.16316 13.7751C7.01463 13.6542 7.01914 13.4567 7.10013 13.3347C7.21715 13.2183 7.3471 13.1777 7.50066 13.3032C7.86905 13.5552 8.81865 13.7441 8.88557 13.1047C8.82706 12.4392 6.95626 12.8397 7.09573 11.5623C7.19919 10.6899 8.51654 10.533 9.13706 11.01C9.44367 11.2569 9.11961 11.6484 8.84903 11.4504C8.51654 11.239 7.76119 11.1399 7.66665 11.6074C7.54511 12.3454 9.50156 11.9229 9.47003 13.1188C9.43952 14.2611 7.78419 14.2882 7.16316 13.7751Z" fill="#3f6587"/> +<path d="M15.3124 4.76696L11.6079 1.0625C11.2827 0.736314 10.7113 0.5 10.25 0.5H4.0625C3.13212 0.5 2.375 1.25713 2.375 2.1875V7.8125C2.375 8.12351 2.62649 8.375 2.9375 8.375C3.24851 8.375 3.5 8.12351 3.5 7.8125V2.1875C3.5 1.87762 3.75199 1.625 4.0625 1.625H9.125C9.74651 1.625 10.25 2.129 10.25 2.75V4.85938C10.25 5.55572 10.8204 6.125 11.5156 6.125H13.625C14.2465 6.125 14.75 6.629 14.75 7.25V16.8125C14.75 17.1224 14.4985 17.375 14.1875 17.375H4.0625C3.75199 17.375 3.5 17.1224 3.5 16.8125C3.5 16.5015 3.24851 16.25 2.9375 16.25C2.62649 16.25 2.375 16.5015 2.375 16.8125C2.375 17.7429 3.13212 18.5 4.0625 18.5H14.1875C15.1179 18.5 15.875 17.7429 15.875 16.8125V6.125C15.875 5.66433 15.6387 5.0928 15.3125 4.76709L15.3124 4.76696Z" fill="#3f6587"/> </svg> diff --git a/src/assets/mail.svg b/src/assets/mail.svg index 59214919..442f8634 100644 --- a/src/assets/mail.svg +++ b/src/assets/mail.svg @@ -1,6 +1,6 @@ <svg width="29" height="24" viewBox="0 0 29 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Mail"> -<path id="Subtract" opacity="0.3" fill-rule="evenodd" clip-rule="evenodd" d="M7.99088 0.0905762C3.7567 0.0905762 0.324219 3.52306 0.324219 7.75724L0.324219 15.7572C0.324219 19.9914 3.7567 23.4239 7.99088 23.4239L21.3242 23.4239C25.5584 23.4239 28.9909 19.9914 28.9909 15.7572L28.9909 7.75724C28.9909 3.52306 25.5584 0.0905762 21.3242 0.0905762L7.99088 0.0905762Z" fill="#A31BCB"/> -<path id="Line" d="M6.6582 7.75732L13.0582 12.5573C14.0064 13.2684 15.3101 13.2684 16.2582 12.5573L22.6582 7.75732" stroke="#A31BCB" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Subtract" opacity="0.3" fill-rule="evenodd" clip-rule="evenodd" d="M7.99088 0.0905762C3.7567 0.0905762 0.324219 3.52306 0.324219 7.75724L0.324219 15.7572C0.324219 19.9914 3.7567 23.4239 7.99088 23.4239L21.3242 23.4239C25.5584 23.4239 28.9909 19.9914 28.9909 15.7572L28.9909 7.75724C28.9909 3.52306 25.5584 0.0905762 21.3242 0.0905762L7.99088 0.0905762Z" fill="#4a7faa"/> +<path id="Line" d="M6.6582 7.75732L13.0582 12.5573C14.0064 13.2684 15.3101 13.2684 16.2582 12.5573L22.6582 7.75732" stroke="#4a7faa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> </svg> diff --git a/src/assets/member-boolean.svg b/src/assets/member-boolean.svg index f8d6276d..e76f8872 100644 --- a/src/assets/member-boolean.svg +++ b/src/assets/member-boolean.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M12.9375 13.4375C12.1587 13.4375 11.3975 13.2066 10.7499 12.7739C10.1024 12.3413 9.59775 11.7263 9.29973 11.0068C9.00171 10.2873 8.92373 9.49563 9.07566 8.73183C9.22759 7.96803 9.6026 7.26644 10.1533 6.71577C10.7039 6.1651 11.4055 5.79009 12.1693 5.63816C12.9331 5.48623 13.7248 5.56421 14.4443 5.86223C15.1638 6.16025 15.7788 6.66493 16.2114 7.31244C16.6441 7.95996 16.875 8.72124 16.875 9.5C16.8738 10.5439 16.4586 11.5448 15.7204 12.2829C14.9823 13.0211 13.9814 13.4363 12.9375 13.4375ZM12.9375 6.6875C12.3812 6.6875 11.8375 6.85245 11.375 7.16149C10.9124 7.47054 10.552 7.90979 10.3391 8.4237C10.1262 8.93762 10.0705 9.50312 10.179 10.0487C10.2876 10.5943 10.5554 11.0954 10.9488 11.4887C11.3421 11.8821 11.8432 12.1499 12.3888 12.2585C12.9344 12.367 13.4999 12.3113 14.0138 12.0984C14.5277 11.8855 14.967 11.5251 15.276 11.0625C15.5851 10.6 15.75 10.0563 15.75 9.5C15.7491 8.75435 15.4525 8.0395 14.9253 7.51225C14.398 6.985 13.6831 6.68839 12.9375 6.6875Z" fill="#A31BCB"/> -<path d="M5.0625 13.4375C7.23712 13.4375 9 11.6746 9 9.5C9 7.32538 7.23712 5.5625 5.0625 5.5625C2.88788 5.5625 1.125 7.32538 1.125 9.5C1.125 11.6746 2.88788 13.4375 5.0625 13.4375Z" fill="#A31BCB"/> +<path d="M12.9375 13.4375C12.1587 13.4375 11.3975 13.2066 10.7499 12.7739C10.1024 12.3413 9.59775 11.7263 9.29973 11.0068C9.00171 10.2873 8.92373 9.49563 9.07566 8.73183C9.22759 7.96803 9.6026 7.26644 10.1533 6.71577C10.7039 6.1651 11.4055 5.79009 12.1693 5.63816C12.9331 5.48623 13.7248 5.56421 14.4443 5.86223C15.1638 6.16025 15.7788 6.66493 16.2114 7.31244C16.6441 7.95996 16.875 8.72124 16.875 9.5C16.8738 10.5439 16.4586 11.5448 15.7204 12.2829C14.9823 13.0211 13.9814 13.4363 12.9375 13.4375ZM12.9375 6.6875C12.3812 6.6875 11.8375 6.85245 11.375 7.16149C10.9124 7.47054 10.552 7.90979 10.3391 8.4237C10.1262 8.93762 10.0705 9.50312 10.179 10.0487C10.2876 10.5943 10.5554 11.0954 10.9488 11.4887C11.3421 11.8821 11.8432 12.1499 12.3888 12.2585C12.9344 12.367 13.4999 12.3113 14.0138 12.0984C14.5277 11.8855 14.967 11.5251 15.276 11.0625C15.5851 10.6 15.75 10.0563 15.75 9.5C15.7491 8.75435 15.4525 8.0395 14.9253 7.51225C14.398 6.985 13.6831 6.68839 12.9375 6.6875Z" fill="#4a7faa"/> +<path d="M5.0625 13.4375C7.23712 13.4375 9 11.6746 9 9.5C9 7.32538 7.23712 5.5625 5.0625 5.5625C2.88788 5.5625 1.125 7.32538 1.125 9.5C1.125 11.6746 2.88788 13.4375 5.0625 13.4375Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-currency.svg b/src/assets/member-currency.svg index 63114edc..6531a1a0 100644 --- a/src/assets/member-currency.svg +++ b/src/assets/member-currency.svg @@ -1,3 +1,3 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M8.22406 16.852V14.9799H9.89606V16.852H8.22406ZM8.22406 4.02795V2.14795H9.89606V4.02795H8.22406ZM9.14406 15.4999C8.34406 15.4999 7.6294 15.356 7.00006 15.068C6.37073 14.78 5.8534 14.3719 5.44806 13.8439C5.04806 13.3106 4.78673 12.6813 4.66406 11.9559L6.32006 11.6919C6.48006 12.3746 6.8214 12.9186 7.34406 13.3239C7.86673 13.7239 8.4934 13.9239 9.22406 13.9239C9.9494 13.9239 10.5387 13.7506 10.9921 13.4039C11.4507 13.0573 11.6801 12.6146 11.6801 12.0759C11.6801 11.6919 11.5627 11.3799 11.3281 11.1399C11.0987 10.8999 10.7227 10.6973 10.2001 10.5319L7.49606 9.69995C5.89606 9.20395 5.09606 8.24395 5.09606 6.81995C5.09606 6.14795 5.25606 5.56395 5.57606 5.06795C5.9014 4.57195 6.3574 4.18795 6.94406 3.91595C7.53073 3.64395 8.21606 3.50795 9.00006 3.50795C9.75206 3.51862 10.4187 3.65728 11.0001 3.92395C11.5867 4.19062 12.0721 4.57462 12.4561 5.07595C12.8454 5.57728 13.1147 6.17995 13.2641 6.88395L11.5601 7.18795C11.4854 6.77728 11.3281 6.41462 11.0881 6.09995C10.8534 5.78528 10.5547 5.53995 10.1921 5.36395C9.83473 5.18795 9.43206 5.09728 8.98406 5.09195C8.56273 5.08128 8.18406 5.14795 7.84806 5.29195C7.5174 5.43062 7.2534 5.62795 7.05606 5.88395C6.86406 6.13462 6.76806 6.41995 6.76806 6.73995C6.76806 7.09195 6.90406 7.39062 7.17606 7.63595C7.44806 7.88128 7.8774 8.09195 8.46406 8.26795L10.5841 8.88395C11.5547 9.17195 12.2561 9.55862 12.6881 10.044C13.1201 10.5293 13.3361 11.1746 13.3361 11.9799C13.3361 12.6839 13.1601 13.2999 12.8081 13.8279C12.4614 14.3506 11.9734 14.7613 11.3441 15.0599C10.7147 15.3533 9.9814 15.4999 9.14406 15.4999Z" fill="#A31BCB"/> +<path d="M8.22406 16.852V14.9799H9.89606V16.852H8.22406ZM8.22406 4.02795V2.14795H9.89606V4.02795H8.22406ZM9.14406 15.4999C8.34406 15.4999 7.6294 15.356 7.00006 15.068C6.37073 14.78 5.8534 14.3719 5.44806 13.8439C5.04806 13.3106 4.78673 12.6813 4.66406 11.9559L6.32006 11.6919C6.48006 12.3746 6.8214 12.9186 7.34406 13.3239C7.86673 13.7239 8.4934 13.9239 9.22406 13.9239C9.9494 13.9239 10.5387 13.7506 10.9921 13.4039C11.4507 13.0573 11.6801 12.6146 11.6801 12.0759C11.6801 11.6919 11.5627 11.3799 11.3281 11.1399C11.0987 10.8999 10.7227 10.6973 10.2001 10.5319L7.49606 9.69995C5.89606 9.20395 5.09606 8.24395 5.09606 6.81995C5.09606 6.14795 5.25606 5.56395 5.57606 5.06795C5.9014 4.57195 6.3574 4.18795 6.94406 3.91595C7.53073 3.64395 8.21606 3.50795 9.00006 3.50795C9.75206 3.51862 10.4187 3.65728 11.0001 3.92395C11.5867 4.19062 12.0721 4.57462 12.4561 5.07595C12.8454 5.57728 13.1147 6.17995 13.2641 6.88395L11.5601 7.18795C11.4854 6.77728 11.3281 6.41462 11.0881 6.09995C10.8534 5.78528 10.5547 5.53995 10.1921 5.36395C9.83473 5.18795 9.43206 5.09728 8.98406 5.09195C8.56273 5.08128 8.18406 5.14795 7.84806 5.29195C7.5174 5.43062 7.2534 5.62795 7.05606 5.88395C6.86406 6.13462 6.76806 6.41995 6.76806 6.73995C6.76806 7.09195 6.90406 7.39062 7.17606 7.63595C7.44806 7.88128 7.8774 8.09195 8.46406 8.26795L10.5841 8.88395C11.5547 9.17195 12.2561 9.55862 12.6881 10.044C13.1201 10.5293 13.3361 11.1746 13.3361 11.9799C13.3361 12.6839 13.1601 13.2999 12.8081 13.8279C12.4614 14.3506 11.9734 14.7613 11.3441 15.0599C10.7147 15.3533 9.9814 15.4999 9.14406 15.4999Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-geo.svg b/src/assets/member-geo.svg index 5abde54b..60f16795 100644 --- a/src/assets/member-geo.svg +++ b/src/assets/member-geo.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M15.002 8.31201C15.002 12.3829 10.202 16.6245 9.00195 16.6245C7.80195 16.6245 3.00195 12.3829 3.00195 8.31201C3.00195 5.03282 5.68824 2.37451 9.00195 2.37451C12.3157 2.37451 15.002 5.03282 15.002 8.31201Z" stroke="#A31BCB" stroke-width="1.5"/> -<circle cx="2.25" cy="2.25" r="2.25" transform="matrix(-1 0 0 1 11.252 5.75)" stroke="#A31BCB" stroke-width="1.5"/> +<path d="M15.002 8.31201C15.002 12.3829 10.202 16.6245 9.00195 16.6245C7.80195 16.6245 3.00195 12.3829 3.00195 8.31201C3.00195 5.03282 5.68824 2.37451 9.00195 2.37451C12.3157 2.37451 15.002 5.03282 15.002 8.31201Z" stroke="#4a7faa" stroke-width="1.5"/> +<circle cx="2.25" cy="2.25" r="2.25" transform="matrix(-1 0 0 1 11.252 5.75)" stroke="#4a7faa" stroke-width="1.5"/> </svg> diff --git a/src/assets/member-id.svg b/src/assets/member-id.svg index 2ff94c27..cd92210d 100644 --- a/src/assets/member-id.svg +++ b/src/assets/member-id.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M10.7206 15.46C9.91526 15.46 9.21926 15.26 8.63259 14.86C8.05126 14.46 7.60059 13.916 7.28059 13.228C6.96593 12.5346 6.80859 11.756 6.80859 10.892C6.80859 10.0226 6.96859 9.24662 7.28859 8.56395C7.60859 7.87595 8.06193 7.33462 8.64859 6.93995C9.24059 6.53995 9.94193 6.33995 10.7526 6.33995C11.5686 6.33995 12.2539 6.53995 12.8086 6.93995C13.3686 7.33462 13.7899 7.87595 14.0726 8.56395C14.3606 9.25195 14.5046 10.028 14.5046 10.892C14.5046 11.756 14.3606 12.532 14.0726 13.22C13.7846 13.908 13.3606 14.4546 12.8006 14.86C12.2406 15.26 11.5473 15.46 10.7206 15.46ZM10.9526 13.948C11.5019 13.948 11.9499 13.8173 12.2966 13.556C12.6433 13.2946 12.8966 12.9346 13.0566 12.476C13.2166 12.0173 13.2966 11.4893 13.2966 10.892C13.2966 10.2946 13.2139 9.76662 13.0486 9.30795C12.8886 8.84928 12.6379 8.49195 12.2966 8.23595C11.9606 7.97995 11.5313 7.85195 11.0086 7.85195C10.4539 7.85195 9.99793 7.98795 9.64059 8.25995C9.28326 8.53195 9.01659 8.89728 8.84059 9.35595C8.66993 9.81462 8.58459 10.3266 8.58459 10.892C8.58459 11.4626 8.66993 11.98 8.84059 12.444C9.01659 12.9026 9.27793 13.268 9.62459 13.54C9.97659 13.812 10.4193 13.948 10.9526 13.948ZM13.2966 15.22V9.00395H13.1046V3.69995H14.7846V15.22H13.2966Z" fill="#A31BCB"/> -<path d="M3.21484 5.16404V3.54004H4.88684V5.16404H3.21484ZM3.21484 15.22V6.58004H4.88684V15.22H3.21484Z" fill="#A31BCB"/> +<path d="M10.7206 15.46C9.91526 15.46 9.21926 15.26 8.63259 14.86C8.05126 14.46 7.60059 13.916 7.28059 13.228C6.96593 12.5346 6.80859 11.756 6.80859 10.892C6.80859 10.0226 6.96859 9.24662 7.28859 8.56395C7.60859 7.87595 8.06193 7.33462 8.64859 6.93995C9.24059 6.53995 9.94193 6.33995 10.7526 6.33995C11.5686 6.33995 12.2539 6.53995 12.8086 6.93995C13.3686 7.33462 13.7899 7.87595 14.0726 8.56395C14.3606 9.25195 14.5046 10.028 14.5046 10.892C14.5046 11.756 14.3606 12.532 14.0726 13.22C13.7846 13.908 13.3606 14.4546 12.8006 14.86C12.2406 15.26 11.5473 15.46 10.7206 15.46ZM10.9526 13.948C11.5019 13.948 11.9499 13.8173 12.2966 13.556C12.6433 13.2946 12.8966 12.9346 13.0566 12.476C13.2166 12.0173 13.2966 11.4893 13.2966 10.892C13.2966 10.2946 13.2139 9.76662 13.0486 9.30795C12.8886 8.84928 12.6379 8.49195 12.2966 8.23595C11.9606 7.97995 11.5313 7.85195 11.0086 7.85195C10.4539 7.85195 9.99793 7.98795 9.64059 8.25995C9.28326 8.53195 9.01659 8.89728 8.84059 9.35595C8.66993 9.81462 8.58459 10.3266 8.58459 10.892C8.58459 11.4626 8.66993 11.98 8.84059 12.444C9.01659 12.9026 9.27793 13.268 9.62459 13.54C9.97659 13.812 10.4193 13.948 10.9526 13.948ZM13.2966 15.22V9.00395H13.1046V3.69995H14.7846V15.22H13.2966Z" fill="#4a7faa"/> +<path d="M3.21484 5.16404V3.54004H4.88684V5.16404H3.21484ZM3.21484 15.22V6.58004H4.88684V15.22H3.21484Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-img.svg b/src/assets/member-img.svg index 09aa276e..75c227ab 100644 --- a/src/assets/member-img.svg +++ b/src/assets/member-img.svg @@ -1,5 +1,5 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect x="1.50195" y="1.99976" width="15" height="15" rx="3.75" stroke="#A31BCB" stroke-width="1.5"/> -<path d="M1.87695 13.6248L3.57135 12.4145C4.10836 12.0309 4.84397 12.0918 5.31062 12.5584L6.11556 13.3634C6.46703 13.7148 7.03688 13.7148 7.38835 13.3634L11.1302 9.6215C11.6239 9.12779 12.4127 9.09201 12.949 9.539L16.502 12.4998" stroke="#A31BCB" stroke-width="1.5" stroke-linecap="round"/> -<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 7.50195 5)" stroke="#A31BCB" stroke-width="1.5"/> +<rect x="1.50195" y="1.99976" width="15" height="15" rx="3.75" stroke="#4a7faa" stroke-width="1.5"/> +<path d="M1.87695 13.6248L3.57135 12.4145C4.10836 12.0309 4.84397 12.0918 5.31062 12.5584L6.11556 13.3634C6.46703 13.7148 7.03688 13.7148 7.38835 13.3634L11.1302 9.6215C11.6239 9.12779 12.4127 9.09201 12.949 9.539L16.502 12.4998" stroke="#4a7faa" stroke-width="1.5" stroke-linecap="round"/> +<circle cx="1.5" cy="1.5" r="1.5" transform="matrix(-1 0 0 1 7.50195 5)" stroke="#4a7faa" stroke-width="1.5"/> </svg> diff --git a/src/assets/member-link.svg b/src/assets/member-link.svg index 22b6cbed..c2cf60ad 100644 --- a/src/assets/member-link.svg +++ b/src/assets/member-link.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M12.3107 10.7955L13.9017 9.20446C15.3661 7.74 15.3661 5.36563 13.9017 3.90116V3.90116C12.4372 2.4367 10.0628 2.4367 8.59835 3.90116L7.00736 5.49215M10.1893 12.9168L8.59835 14.5078C7.13388 15.9722 4.75951 15.9722 3.29505 14.5078V14.5078C1.83058 13.0433 1.83058 10.6689 3.29505 9.20446L4.88604 7.61347" stroke="#A31BCB" stroke-width="1.5" stroke-linecap="round"/> -<path d="M10.1898 7.61343L7.00781 10.7954" stroke="#A31BCB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M12.3107 10.7955L13.9017 9.20446C15.3661 7.74 15.3661 5.36563 13.9017 3.90116V3.90116C12.4372 2.4367 10.0628 2.4367 8.59835 3.90116L7.00736 5.49215M10.1893 12.9168L8.59835 14.5078C7.13388 15.9722 4.75951 15.9722 3.29505 14.5078V14.5078C1.83058 13.0433 1.83058 10.6689 3.29505 9.20446L4.88604 7.61347" stroke="#4a7faa" stroke-width="1.5" stroke-linecap="round"/> +<path d="M10.1898 7.61343L7.00781 10.7954" stroke="#4a7faa" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> diff --git a/src/assets/member-number.svg b/src/assets/member-number.svg index 2d087e90..691ba266 100644 --- a/src/assets/member-number.svg +++ b/src/assets/member-number.svg @@ -1,3 +1,3 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M4.69204 15.2561L5.55604 12.0161H2.54004L2.96404 10.4241H5.98804L6.54004 8.32014H3.52404L3.95604 6.74414H6.96404L7.77204 3.74414H9.41204L8.60404 6.74414H10.804L11.612 3.74414H13.252L12.444 6.74414H15.46L15.044 8.32014H12.02L11.452 10.4241H14.468L14.052 12.0161H11.028L10.164 15.2561H8.53204L9.38804 12.0161H7.18804L6.32404 15.2561H4.69204ZM7.62004 10.4241H9.81204L10.38 8.32014H8.18004L7.62004 10.4241Z" fill="#A31BCB"/> +<path d="M4.69204 15.2561L5.55604 12.0161H2.54004L2.96404 10.4241H5.98804L6.54004 8.32014H3.52404L3.95604 6.74414H6.96404L7.77204 3.74414H9.41204L8.60404 6.74414H10.804L11.612 3.74414H13.252L12.444 6.74414H15.46L15.044 8.32014H12.02L11.452 10.4241H14.468L14.052 12.0161H11.028L10.164 15.2561H8.53204L9.38804 12.0161H7.18804L6.32404 15.2561H4.69204ZM7.62004 10.4241H9.81204L10.38 8.32014H8.18004L7.62004 10.4241Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-percent.svg b/src/assets/member-percent.svg index 478a3404..90b0e8f3 100644 --- a/src/assets/member-percent.svg +++ b/src/assets/member-percent.svg @@ -1,3 +1,3 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M4.35586 15.26L3.23586 14.14L13.6439 3.74L14.7639 4.868L4.35586 15.26ZM12.3639 15.5C11.8359 15.5 11.3532 15.372 10.9159 15.116C10.4839 14.8547 10.1372 14.508 9.87586 14.076C9.61453 13.6387 9.48386 13.1533 9.48386 12.62C9.48386 12.0973 9.61719 11.6173 9.88386 11.18C10.1505 10.7427 10.5025 10.3933 10.9399 10.132C11.3772 9.87067 11.8519 9.74 12.3639 9.74C12.8919 9.74 13.3745 9.87067 13.8119 10.132C14.2492 10.388 14.5959 10.7347 14.8519 11.172C15.1132 11.604 15.2439 12.0867 15.2439 12.62C15.2439 13.1533 15.1132 13.6387 14.8519 14.076C14.5959 14.508 14.2492 14.8547 13.8119 15.116C13.3745 15.372 12.8919 15.5 12.3639 15.5ZM12.3639 14.052C12.6252 14.052 12.8625 13.988 13.0759 13.86C13.2945 13.7267 13.4679 13.5507 13.5959 13.332C13.7292 13.1133 13.7959 12.876 13.7959 12.62C13.7959 12.364 13.7292 12.1267 13.5959 11.908C13.4679 11.6893 13.2945 11.516 13.0759 11.388C12.8625 11.2547 12.6252 11.188 12.3639 11.188C12.1079 11.188 11.8705 11.2547 11.6519 11.388C11.4385 11.516 11.2652 11.6893 11.1319 11.908C11.0039 12.1267 10.9399 12.364 10.9399 12.62C10.9399 12.876 11.0039 13.1133 11.1319 13.332C11.2652 13.5507 11.4385 13.7267 11.6519 13.86C11.8705 13.988 12.1079 14.052 12.3639 14.052ZM5.63586 9.26C5.10786 9.26 4.62519 9.132 4.18786 8.876C3.75053 8.61467 3.40119 8.268 3.13986 7.836C2.88386 7.39867 2.75586 6.91333 2.75586 6.38C2.75586 5.85733 2.88919 5.37733 3.15586 4.94C3.42253 4.50267 3.77453 4.15333 4.21186 3.892C4.64919 3.63067 5.12386 3.5 5.63586 3.5C6.16386 3.5 6.64386 3.63067 7.07586 3.892C7.51319 4.148 7.86253 4.49467 8.12386 4.932C8.38519 5.364 8.51586 5.84667 8.51586 6.38C8.51586 6.91333 8.38519 7.39867 8.12386 7.836C7.86253 8.268 7.51319 8.61467 7.07586 8.876C6.64386 9.132 6.16386 9.26 5.63586 9.26ZM5.63586 7.812C5.89186 7.812 6.12919 7.748 6.34786 7.62C6.56653 7.48667 6.73986 7.31067 6.86786 7.092C7.00119 6.87333 7.06786 6.636 7.06786 6.38C7.06786 6.124 7.00119 5.88667 6.86786 5.668C6.73986 5.44933 6.56653 5.276 6.34786 5.148C6.12919 5.01467 5.89186 4.948 5.63586 4.948C5.37986 4.948 5.14253 5.01467 4.92386 5.148C4.71053 5.276 4.53719 5.44933 4.40386 5.668C4.27053 5.88667 4.20386 6.124 4.20386 6.38C4.20386 6.636 4.27053 6.87333 4.40386 7.092C4.53719 7.31067 4.71053 7.48667 4.92386 7.62C5.13719 7.748 5.37453 7.812 5.63586 7.812Z" fill="#A31BCB"/> +<path d="M4.35586 15.26L3.23586 14.14L13.6439 3.74L14.7639 4.868L4.35586 15.26ZM12.3639 15.5C11.8359 15.5 11.3532 15.372 10.9159 15.116C10.4839 14.8547 10.1372 14.508 9.87586 14.076C9.61453 13.6387 9.48386 13.1533 9.48386 12.62C9.48386 12.0973 9.61719 11.6173 9.88386 11.18C10.1505 10.7427 10.5025 10.3933 10.9399 10.132C11.3772 9.87067 11.8519 9.74 12.3639 9.74C12.8919 9.74 13.3745 9.87067 13.8119 10.132C14.2492 10.388 14.5959 10.7347 14.8519 11.172C15.1132 11.604 15.2439 12.0867 15.2439 12.62C15.2439 13.1533 15.1132 13.6387 14.8519 14.076C14.5959 14.508 14.2492 14.8547 13.8119 15.116C13.3745 15.372 12.8919 15.5 12.3639 15.5ZM12.3639 14.052C12.6252 14.052 12.8625 13.988 13.0759 13.86C13.2945 13.7267 13.4679 13.5507 13.5959 13.332C13.7292 13.1133 13.7959 12.876 13.7959 12.62C13.7959 12.364 13.7292 12.1267 13.5959 11.908C13.4679 11.6893 13.2945 11.516 13.0759 11.388C12.8625 11.2547 12.6252 11.188 12.3639 11.188C12.1079 11.188 11.8705 11.2547 11.6519 11.388C11.4385 11.516 11.2652 11.6893 11.1319 11.908C11.0039 12.1267 10.9399 12.364 10.9399 12.62C10.9399 12.876 11.0039 13.1133 11.1319 13.332C11.2652 13.5507 11.4385 13.7267 11.6519 13.86C11.8705 13.988 12.1079 14.052 12.3639 14.052ZM5.63586 9.26C5.10786 9.26 4.62519 9.132 4.18786 8.876C3.75053 8.61467 3.40119 8.268 3.13986 7.836C2.88386 7.39867 2.75586 6.91333 2.75586 6.38C2.75586 5.85733 2.88919 5.37733 3.15586 4.94C3.42253 4.50267 3.77453 4.15333 4.21186 3.892C4.64919 3.63067 5.12386 3.5 5.63586 3.5C6.16386 3.5 6.64386 3.63067 7.07586 3.892C7.51319 4.148 7.86253 4.49467 8.12386 4.932C8.38519 5.364 8.51586 5.84667 8.51586 6.38C8.51586 6.91333 8.38519 7.39867 8.12386 7.836C7.86253 8.268 7.51319 8.61467 7.07586 8.876C6.64386 9.132 6.16386 9.26 5.63586 9.26ZM5.63586 7.812C5.89186 7.812 6.12919 7.748 6.34786 7.62C6.56653 7.48667 6.73986 7.31067 6.86786 7.092C7.00119 6.87333 7.06786 6.636 7.06786 6.38C7.06786 6.124 7.00119 5.88667 6.86786 5.668C6.73986 5.44933 6.56653 5.276 6.34786 5.148C6.12919 5.01467 5.89186 4.948 5.63586 4.948C5.37986 4.948 5.14253 5.01467 4.92386 5.148C4.71053 5.276 4.53719 5.44933 4.40386 5.668C4.27053 5.88667 4.20386 6.124 4.20386 6.38C4.20386 6.636 4.27053 6.87333 4.40386 7.092C4.53719 7.31067 4.71053 7.48667 4.92386 7.62C5.13719 7.748 5.37453 7.812 5.63586 7.812Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-segment.svg b/src/assets/member-segment.svg index c4d3c467..2ef7c7b5 100644 --- a/src/assets/member-segment.svg +++ b/src/assets/member-segment.svg @@ -1,3 +1,3 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M8.67996 15.644C8.43996 14.268 7.46396 12.54 5.60796 11.148C4.69596 10.46 3.76796 10.012 2.85596 9.81996V9.14796C4.66396 8.71596 6.43996 7.49996 7.57596 5.85196C8.15196 5.01996 8.51996 4.20396 8.67996 3.35596H9.35196C9.62396 4.97196 10.872 6.76396 12.568 7.96396C13.4 8.55596 14.264 8.95596 15.144 9.14796V9.81996C13.368 10.188 11.304 11.772 10.28 13.388C9.76796 14.204 9.46396 14.956 9.35196 15.644H8.67996Z" fill="#A31BCB"/> +<path d="M8.67996 15.644C8.43996 14.268 7.46396 12.54 5.60796 11.148C4.69596 10.46 3.76796 10.012 2.85596 9.81996V9.14796C4.66396 8.71596 6.43996 7.49996 7.57596 5.85196C8.15196 5.01996 8.51996 4.20396 8.67996 3.35596H9.35196C9.62396 4.97196 10.872 6.76396 12.568 7.96396C13.4 8.55596 14.264 8.95596 15.144 9.14796V9.81996C13.368 10.188 11.304 11.772 10.28 13.388C9.76796 14.204 9.46396 14.956 9.35196 15.644H8.67996Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-string.svg b/src/assets/member-string.svg index cf50a5fc..d9baf8b1 100644 --- a/src/assets/member-string.svg +++ b/src/assets/member-string.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M0.831543 14.435L4.00954 4.35498H6.48054L9.65854 14.435H7.92254L5.03854 5.39098H5.41654L2.56754 14.435H0.831543ZM2.60254 12.251V10.676H7.89454V12.251H2.60254Z" fill="#A31BCB"/> -<path d="M13.0381 14.645C12.4921 14.645 12.0301 14.5423 11.6521 14.337C11.2741 14.127 10.9871 13.8493 10.7911 13.504C10.5998 13.1586 10.5041 12.7783 10.5041 12.363C10.5041 11.999 10.5648 11.6723 10.6861 11.383C10.8075 11.089 10.9941 10.837 11.2461 10.627C11.4981 10.4123 11.8248 10.2373 12.2261 10.102C12.5295 10.004 12.8841 9.91531 13.2901 9.83598C13.7008 9.75665 14.1441 9.68431 14.6201 9.61898C15.1008 9.54898 15.6025 9.47431 16.1251 9.39498L15.5231 9.73798C15.5278 9.21531 15.4111 8.83031 15.1731 8.58298C14.9351 8.33565 14.5338 8.21198 13.9691 8.21198C13.6285 8.21198 13.2995 8.29131 12.9821 8.44998C12.6648 8.60865 12.4431 8.88165 12.3171 9.26898L10.7771 8.78598C10.9638 8.14665 11.3185 7.63331 11.8411 7.24598C12.3685 6.85865 13.0778 6.66498 13.9691 6.66498C14.6411 6.66498 15.2315 6.77465 15.7401 6.99398C16.2535 7.21331 16.6338 7.57265 16.8811 8.07198C17.0165 8.33798 17.0981 8.61098 17.1261 8.89098C17.1541 9.16631 17.1681 9.46731 17.1681 9.79398V14.435H15.6911V12.797L15.9361 13.063C15.5955 13.609 15.1965 14.0103 14.7391 14.267C14.2865 14.519 13.7195 14.645 13.0381 14.645ZM13.3741 13.301C13.7568 13.301 14.0835 13.2333 14.3541 13.098C14.6248 12.9626 14.8395 12.797 14.9981 12.601C15.1615 12.405 15.2711 12.2206 15.3271 12.048C15.4158 11.8333 15.4648 11.5883 15.4741 11.313C15.4881 11.033 15.4951 10.8066 15.4951 10.634L16.0131 10.788C15.5045 10.8673 15.0681 10.9373 14.7041 10.998C14.3401 11.0586 14.0275 11.117 13.7661 11.173C13.5048 11.2243 13.2738 11.2826 13.0731 11.348C12.8771 11.418 12.7115 11.4996 12.5761 11.593C12.4408 11.6863 12.3358 11.7936 12.2611 11.915C12.1911 12.0363 12.1561 12.1786 12.1561 12.342C12.1561 12.5286 12.2028 12.6943 12.2961 12.839C12.3895 12.979 12.5248 13.091 12.7021 13.175C12.8841 13.259 13.1081 13.301 13.3741 13.301Z" fill="#A31BCB"/> +<path d="M0.831543 14.435L4.00954 4.35498H6.48054L9.65854 14.435H7.92254L5.03854 5.39098H5.41654L2.56754 14.435H0.831543ZM2.60254 12.251V10.676H7.89454V12.251H2.60254Z" fill="#4a7faa"/> +<path d="M13.0381 14.645C12.4921 14.645 12.0301 14.5423 11.6521 14.337C11.2741 14.127 10.9871 13.8493 10.7911 13.504C10.5998 13.1586 10.5041 12.7783 10.5041 12.363C10.5041 11.999 10.5648 11.6723 10.6861 11.383C10.8075 11.089 10.9941 10.837 11.2461 10.627C11.4981 10.4123 11.8248 10.2373 12.2261 10.102C12.5295 10.004 12.8841 9.91531 13.2901 9.83598C13.7008 9.75665 14.1441 9.68431 14.6201 9.61898C15.1008 9.54898 15.6025 9.47431 16.1251 9.39498L15.5231 9.73798C15.5278 9.21531 15.4111 8.83031 15.1731 8.58298C14.9351 8.33565 14.5338 8.21198 13.9691 8.21198C13.6285 8.21198 13.2995 8.29131 12.9821 8.44998C12.6648 8.60865 12.4431 8.88165 12.3171 9.26898L10.7771 8.78598C10.9638 8.14665 11.3185 7.63331 11.8411 7.24598C12.3685 6.85865 13.0778 6.66498 13.9691 6.66498C14.6411 6.66498 15.2315 6.77465 15.7401 6.99398C16.2535 7.21331 16.6338 7.57265 16.8811 8.07198C17.0165 8.33798 17.0981 8.61098 17.1261 8.89098C17.1541 9.16631 17.1681 9.46731 17.1681 9.79398V14.435H15.6911V12.797L15.9361 13.063C15.5955 13.609 15.1965 14.0103 14.7391 14.267C14.2865 14.519 13.7195 14.645 13.0381 14.645ZM13.3741 13.301C13.7568 13.301 14.0835 13.2333 14.3541 13.098C14.6248 12.9626 14.8395 12.797 14.9981 12.601C15.1615 12.405 15.2711 12.2206 15.3271 12.048C15.4158 11.8333 15.4648 11.5883 15.4741 11.313C15.4881 11.033 15.4951 10.8066 15.4951 10.634L16.0131 10.788C15.5045 10.8673 15.0681 10.9373 14.7041 10.998C14.3401 11.0586 14.0275 11.117 13.7661 11.173C13.5048 11.2243 13.2738 11.2826 13.0731 11.348C12.8771 11.418 12.7115 11.4996 12.5761 11.593C12.4408 11.6863 12.3358 11.7936 12.2611 11.915C12.1911 12.0363 12.1561 12.1786 12.1561 12.342C12.1561 12.5286 12.2028 12.6943 12.2961 12.839C12.3895 12.979 12.5248 13.091 12.7021 13.175C12.8841 13.259 13.1081 13.301 13.3741 13.301Z" fill="#4a7faa"/> </svg> diff --git a/src/assets/member-time.svg b/src/assets/member-time.svg index 170e2ba9..cc6cf1eb 100644 --- a/src/assets/member-time.svg +++ b/src/assets/member-time.svg @@ -1,4 +1,4 @@ <svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect x="1.50195" y="2" width="15" height="15" rx="3.75" stroke="#A31BCB" stroke-width="1.5"/> -<path d="M9.00391 5.75V9.3125C9.00391 9.43053 9.05948 9.54168 9.15391 9.6125L12.0039 11.75" stroke="#A31BCB" stroke-width="1.5" stroke-linecap="round"/> +<rect x="1.50195" y="2" width="15" height="15" rx="3.75" stroke="#4a7faa" stroke-width="1.5"/> +<path d="M9.00391 5.75V9.3125C9.00391 9.43053 9.05948 9.54168 9.15391 9.6125L12.0039 11.75" stroke="#4a7faa" stroke-width="1.5" stroke-linecap="round"/> </svg> diff --git a/src/assets/report.svg b/src/assets/report.svg index 8a8a92d8..7e67b458 100644 --- a/src/assets/report.svg +++ b/src/assets/report.svg @@ -1,8 +1,8 @@ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Chart"> -<rect id="Rectangle 2" x="1.50146" y="1.5" width="15" height="15" rx="3.75" stroke="#470D69" stroke-width="1.125"/> -<path id="Line" d="M6.00195 12.7495L6.00195 10.4995" stroke="#470D69" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Line_2" d="M9.00244 12.7495L9.00244 5.24951" stroke="#470D69" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> -<path id="Line_3" d="M12.0024 12.7495L12.0024 7.49951" stroke="#470D69" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<rect id="Rectangle 2" x="1.50146" y="1.5" width="15" height="15" rx="3.75" stroke="#3f6587" stroke-width="1.125"/> +<path id="Line" d="M6.00195 12.7495L6.00195 10.4995" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Line_2" d="M9.00244 12.7495L9.00244 5.24951" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> +<path id="Line_3" d="M12.0024 12.7495L12.0024 7.49951" stroke="#3f6587" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> </g> </svg> diff --git a/src/assets/save.svg b/src/assets/save.svg index 2daf757c..1940c7f7 100644 --- a/src/assets/save.svg +++ b/src/assets/save.svg @@ -1,5 +1,5 @@ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M1.5 4.50049C1.5 2.84363 2.84315 1.50049 4.5 1.50049H9H11.068C11.6648 1.50049 12.2371 1.73754 12.659 2.1595L15.841 5.34148C16.2629 5.76344 16.5 6.33573 16.5 6.93247V9.00049V13.5005C16.5 15.1573 15.1569 16.5005 13.5 16.5005H4.5C2.84315 16.5005 1.5 15.1573 1.5 13.5005V4.50049Z" stroke="#470D69" stroke-width="1.125"/> -<path d="M4.50049 11.2505C4.50049 10.4221 5.17206 9.75049 6.00049 9.75049H12.0005C12.8289 9.75049 13.5005 10.4221 13.5005 11.2505V16.5005H4.50049V11.2505Z" stroke="#470D69" stroke-width="1.125"/> -<path d="M6.00049 1.50049V4.50049C6.00049 4.9147 6.33627 5.25049 6.75049 5.25049H11.2505C11.6647 5.25049 12.0005 4.9147 12.0005 4.50049V1.50049" stroke="#470D69" stroke-width="1.125"/> +<path d="M1.5 4.50049C1.5 2.84363 2.84315 1.50049 4.5 1.50049H9H11.068C11.6648 1.50049 12.2371 1.73754 12.659 2.1595L15.841 5.34148C16.2629 5.76344 16.5 6.33573 16.5 6.93247V9.00049V13.5005C16.5 15.1573 15.1569 16.5005 13.5 16.5005H4.5C2.84315 16.5005 1.5 15.1573 1.5 13.5005V4.50049Z" stroke="#3f6587" stroke-width="1.125"/> +<path d="M4.50049 11.2505C4.50049 10.4221 5.17206 9.75049 6.00049 9.75049H12.0005C12.8289 9.75049 13.5005 10.4221 13.5005 11.2505V16.5005H4.50049V11.2505Z" stroke="#3f6587" stroke-width="1.125"/> +<path d="M6.00049 1.50049V4.50049C6.00049 4.9147 6.33627 5.25049 6.75049 5.25049H11.2505C11.6647 5.25049 12.0005 4.9147 12.0005 4.50049V1.50049" stroke="#3f6587" stroke-width="1.125"/> </svg> diff --git a/src/assets/send.svg b/src/assets/send.svg index 33eb50d0..a69ea55a 100644 --- a/src/assets/send.svg +++ b/src/assets/send.svg @@ -1,6 +1,6 @@ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="Send"> -<path id="Rectangle 74" d="M13.7905 1.0697C14.494 0.835171 15.1634 1.50454 14.9289 2.20812L11.1364 13.5855C10.8901 14.3244 9.88524 14.4228 9.50025 13.7457L7.1789 9.66336C6.97871 9.31131 6.68722 9.01982 6.33517 8.81964L2.25285 6.49833C1.5758 6.11334 1.67423 5.10844 2.41311 4.86215L13.7905 1.0697Z" stroke="#470D69" stroke-width="1.125"/> +<path id="Rectangle 74" d="M13.7905 1.0697C14.494 0.835171 15.1634 1.50454 14.9289 2.20812L11.1364 13.5855C10.8901 14.3244 9.88524 14.4228 9.50025 13.7457L7.1789 9.66336C6.97871 9.31131 6.68722 9.01982 6.33517 8.81964L2.25285 6.49833C1.5758 6.11334 1.67423 5.10844 2.41311 4.86215L13.7905 1.0697Z" stroke="#3f6587" stroke-width="1.125"/> <path id="Line" d="M8.58789 7.41138L7.08789 8.91138" stroke="#A5A5A5" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/> </g> </svg> diff --git a/src/assets/table.svg b/src/assets/table.svg index 0b517832..c8991790 100644 --- a/src/assets/table.svg +++ b/src/assets/table.svg @@ -1,3 +1,3 @@ <svg width="16" height="15" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M14 0.355957C15.0938 0.355957 16 1.26221 16 2.35596V12.356C16 13.481 15.0938 14.356 14 14.356H2C0.875 14.356 0 13.481 0 12.356V2.35596C0 1.26221 0.875 0.355957 2 0.355957H14ZM14 2.35596H2V4.35596H14V2.35596ZM2 12.356H4V6.35596H2V12.356ZM14 6.35596H6V12.356H14V6.35596Z" fill="#470D69"/> +<path d="M14 0.355957C15.0938 0.355957 16 1.26221 16 2.35596V12.356C16 13.481 15.0938 14.356 14 14.356H2C0.875 14.356 0 13.481 0 12.356V2.35596C0 1.26221 0.875 0.355957 2 0.355957H14ZM14 2.35596H2V4.35596H14V2.35596ZM2 12.356H4V6.35596H2V12.356ZM14 6.35596H6V12.356H14V6.35596Z" fill="#3f6587"/> </svg> diff --git a/src/assets/webhook.svg b/src/assets/webhook.svg index bc6ae1d6..b532a1ee 100644 --- a/src/assets/webhook.svg +++ b/src/assets/webhook.svg @@ -1,3 +1,3 @@ <svg width="31" height="29" viewBox="0 0 31 29" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path id="webhook" fill-rule="evenodd" clip-rule="evenodd" d="M15.81 10.5364C15.7496 10.5403 15.6891 10.5422 15.6287 10.5422C14.0792 10.5422 12.8211 9.28412 12.8211 7.73462C12.8211 6.18513 14.0792 4.92706 15.6287 4.92706C17.1782 4.92706 18.4362 6.18513 18.4362 7.73462C18.4371 8.37882 18.2154 9.00354 17.8087 9.50311L20.9121 15.2079C21.6769 14.93 22.4843 14.7878 23.2981 14.7878C27.1531 14.7878 30.2827 17.9174 30.2827 21.7724C30.2827 25.6274 27.1531 28.7571 23.2981 28.7571C21.9339 28.7566 20.5995 28.358 19.4584 27.6104C19.336 27.5308 19.2325 27.4253 19.1552 27.3015C19.0778 27.1776 19.0286 27.0383 19.0108 26.8933C18.9931 26.7484 19.0073 26.6013 19.0525 26.4624C19.0977 26.3236 19.1727 26.1963 19.2723 26.0895C19.2744 26.0873 19.2766 26.085 19.2807 26.0846C19.4482 25.905 19.6733 25.7899 19.9169 25.7591C20.1605 25.7284 20.4072 25.784 20.6141 25.9164C21.4135 26.4341 22.3456 26.7096 23.2981 26.7096C26.0231 26.7096 28.2353 24.4974 28.2353 21.7724C28.2353 19.0474 26.0231 16.8352 23.2981 16.8352C22.3545 16.8352 21.0152 17.248 20.21 17.759C20.1686 17.7901 20.121 17.812 20.0703 17.8231C20.0197 17.8341 19.9673 17.8342 19.9166 17.8232C19.8659 17.8122 19.8182 17.7905 19.7767 17.7594C19.7352 17.7284 19.7009 17.6888 19.6761 17.6433L15.81 10.5364ZM14.521 22.6725C14.3793 23.4737 14.0987 24.244 13.6919 24.9487C11.7644 28.2873 7.4892 29.433 4.15067 27.5055C0.812141 25.578 -0.333343 21.3027 1.59401 17.964C2.27661 16.7828 3.28897 15.8264 4.50703 15.212C4.63716 15.1459 4.78021 15.109 4.92612 15.104C5.07203 15.099 5.21727 15.126 5.35162 15.1831C5.48605 15.2402 5.60634 15.326 5.70406 15.4346C5.80178 15.5431 5.87454 15.6717 5.91724 15.8114C5.91806 15.8144 5.91889 15.8172 5.91724 15.8209C5.98905 16.0558 5.97624 16.3084 5.88106 16.5348C5.78587 16.7612 5.61432 16.947 5.39627 17.06C4.5481 17.4934 3.8434 18.1629 3.36716 18.9877C2.00474 21.3475 2.81441 24.3696 5.17427 25.7322C7.53412 27.0946 10.5563 26.2848 11.9187 23.9249C12.3905 23.1077 12.7026 21.7415 12.6628 20.7887C12.6564 20.7372 12.6613 20.685 12.677 20.6356C12.6926 20.5861 12.7188 20.5407 12.7537 20.5023C12.7885 20.4639 12.8312 20.4335 12.8789 20.4131C12.9266 20.3927 12.9781 20.3829 13.03 20.3843L21.1176 20.5895C21.1444 20.5356 21.1728 20.4823 21.2034 20.4296C21.9781 19.0877 23.6966 18.6271 25.0385 19.4019C26.3807 20.1768 26.841 21.8953 26.0662 23.2371C25.2915 24.579 23.573 25.0395 22.2309 24.2647C21.6726 23.9434 21.2425 23.4391 21.0131 22.8371L14.521 22.6725ZM11.1311 13.0905C10.5079 12.5671 9.98098 11.9388 9.57405 11.2341C7.64656 7.89555 8.79205 3.62025 12.1306 1.69289C15.4691 -0.234462 19.7444 0.911023 21.6718 4.24942C22.3534 5.43109 22.6755 6.78594 22.5987 8.14795C22.5909 8.29376 22.5513 8.43611 22.4827 8.56499C22.414 8.69387 22.318 8.80617 22.2014 8.89401C22.0847 8.98184 21.9503 9.04308 21.8074 9.07342C21.6646 9.10376 21.5169 9.10248 21.3746 9.06965C21.3716 9.06897 21.3685 9.06815 21.3661 9.06486C21.1268 9.00962 20.9145 8.87225 20.7661 8.67665C20.6176 8.48104 20.5425 8.23958 20.5537 7.99429C20.6025 7.04299 20.375 6.09789 19.8986 5.27301C18.5362 2.91329 15.5142 2.10348 13.1543 3.4659C10.7946 4.82846 9.98464 7.85049 11.3472 10.2103C11.819 11.0275 12.8462 11.981 13.6912 12.4228C13.7389 12.4431 13.7817 12.4734 13.8166 12.5117C13.8516 12.55 13.8779 12.5954 13.8937 12.6448C13.9095 12.6942 13.9145 12.7464 13.9084 12.7979C13.9022 12.8493 13.885 12.8989 13.858 12.9431L9.63623 19.8447C9.66965 19.8946 9.70156 19.946 9.7321 19.9987C10.5067 21.3407 10.0463 23.0592 8.70426 23.834C7.36238 24.6087 5.64388 24.1483 4.86913 22.8063C4.09438 21.4644 4.55482 19.7459 5.8967 18.9712C6.45416 18.6483 7.10602 18.528 7.74202 18.6304L11.1311 13.0905Z" fill="#470D69"/> +<path id="webhook" fill-rule="evenodd" clip-rule="evenodd" d="M15.81 10.5364C15.7496 10.5403 15.6891 10.5422 15.6287 10.5422C14.0792 10.5422 12.8211 9.28412 12.8211 7.73462C12.8211 6.18513 14.0792 4.92706 15.6287 4.92706C17.1782 4.92706 18.4362 6.18513 18.4362 7.73462C18.4371 8.37882 18.2154 9.00354 17.8087 9.50311L20.9121 15.2079C21.6769 14.93 22.4843 14.7878 23.2981 14.7878C27.1531 14.7878 30.2827 17.9174 30.2827 21.7724C30.2827 25.6274 27.1531 28.7571 23.2981 28.7571C21.9339 28.7566 20.5995 28.358 19.4584 27.6104C19.336 27.5308 19.2325 27.4253 19.1552 27.3015C19.0778 27.1776 19.0286 27.0383 19.0108 26.8933C18.9931 26.7484 19.0073 26.6013 19.0525 26.4624C19.0977 26.3236 19.1727 26.1963 19.2723 26.0895C19.2744 26.0873 19.2766 26.085 19.2807 26.0846C19.4482 25.905 19.6733 25.7899 19.9169 25.7591C20.1605 25.7284 20.4072 25.784 20.6141 25.9164C21.4135 26.4341 22.3456 26.7096 23.2981 26.7096C26.0231 26.7096 28.2353 24.4974 28.2353 21.7724C28.2353 19.0474 26.0231 16.8352 23.2981 16.8352C22.3545 16.8352 21.0152 17.248 20.21 17.759C20.1686 17.7901 20.121 17.812 20.0703 17.8231C20.0197 17.8341 19.9673 17.8342 19.9166 17.8232C19.8659 17.8122 19.8182 17.7905 19.7767 17.7594C19.7352 17.7284 19.7009 17.6888 19.6761 17.6433L15.81 10.5364ZM14.521 22.6725C14.3793 23.4737 14.0987 24.244 13.6919 24.9487C11.7644 28.2873 7.4892 29.433 4.15067 27.5055C0.812141 25.578 -0.333343 21.3027 1.59401 17.964C2.27661 16.7828 3.28897 15.8264 4.50703 15.212C4.63716 15.1459 4.78021 15.109 4.92612 15.104C5.07203 15.099 5.21727 15.126 5.35162 15.1831C5.48605 15.2402 5.60634 15.326 5.70406 15.4346C5.80178 15.5431 5.87454 15.6717 5.91724 15.8114C5.91806 15.8144 5.91889 15.8172 5.91724 15.8209C5.98905 16.0558 5.97624 16.3084 5.88106 16.5348C5.78587 16.7612 5.61432 16.947 5.39627 17.06C4.5481 17.4934 3.8434 18.1629 3.36716 18.9877C2.00474 21.3475 2.81441 24.3696 5.17427 25.7322C7.53412 27.0946 10.5563 26.2848 11.9187 23.9249C12.3905 23.1077 12.7026 21.7415 12.6628 20.7887C12.6564 20.7372 12.6613 20.685 12.677 20.6356C12.6926 20.5861 12.7188 20.5407 12.7537 20.5023C12.7885 20.4639 12.8312 20.4335 12.8789 20.4131C12.9266 20.3927 12.9781 20.3829 13.03 20.3843L21.1176 20.5895C21.1444 20.5356 21.1728 20.4823 21.2034 20.4296C21.9781 19.0877 23.6966 18.6271 25.0385 19.4019C26.3807 20.1768 26.841 21.8953 26.0662 23.2371C25.2915 24.579 23.573 25.0395 22.2309 24.2647C21.6726 23.9434 21.2425 23.4391 21.0131 22.8371L14.521 22.6725ZM11.1311 13.0905C10.5079 12.5671 9.98098 11.9388 9.57405 11.2341C7.64656 7.89555 8.79205 3.62025 12.1306 1.69289C15.4691 -0.234462 19.7444 0.911023 21.6718 4.24942C22.3534 5.43109 22.6755 6.78594 22.5987 8.14795C22.5909 8.29376 22.5513 8.43611 22.4827 8.56499C22.414 8.69387 22.318 8.80617 22.2014 8.89401C22.0847 8.98184 21.9503 9.04308 21.8074 9.07342C21.6646 9.10376 21.5169 9.10248 21.3746 9.06965C21.3716 9.06897 21.3685 9.06815 21.3661 9.06486C21.1268 9.00962 20.9145 8.87225 20.7661 8.67665C20.6176 8.48104 20.5425 8.23958 20.5537 7.99429C20.6025 7.04299 20.375 6.09789 19.8986 5.27301C18.5362 2.91329 15.5142 2.10348 13.1543 3.4659C10.7946 4.82846 9.98464 7.85049 11.3472 10.2103C11.819 11.0275 12.8462 11.981 13.6912 12.4228C13.7389 12.4431 13.7817 12.4734 13.8166 12.5117C13.8516 12.55 13.8779 12.5954 13.8937 12.6448C13.9095 12.6942 13.9145 12.7464 13.9084 12.7979C13.9022 12.8493 13.885 12.8989 13.858 12.9431L9.63623 19.8447C9.66965 19.8946 9.70156 19.946 9.7321 19.9987C10.5067 21.3407 10.0463 23.0592 8.70426 23.834C7.36238 24.6087 5.64388 24.1483 4.86913 22.8063C4.09438 21.4644 4.55482 19.7459 5.8967 18.9712C6.45416 18.6483 7.10602 18.528 7.74202 18.6304L11.1311 13.0905Z" fill="#3f6587"/> </svg> diff --git a/src/assets/yml-flie.svg b/src/assets/yml-flie.svg index 99b96178..a5618f37 100644 --- a/src/assets/yml-flie.svg +++ b/src/assets/yml-flie.svg @@ -3,10 +3,10 @@ <g id="Group 150"> <g id="Group 149"> <g id="Group"> -<path id="Vector" d="M15.8124 4.76696L12.1079 1.0625C11.7827 0.736314 11.2113 0.5 10.75 0.5H4.5625C3.63212 0.5 2.875 1.25713 2.875 2.1875V7.8125C2.875 8.12351 3.12649 8.375 3.4375 8.375C3.74851 8.375 4 8.12351 4 7.8125V2.1875C4 1.87762 4.25199 1.625 4.5625 1.625H9.625C10.2465 1.625 10.75 2.129 10.75 2.75V4.85938C10.75 5.55572 11.3204 6.125 12.0156 6.125H14.125C14.7465 6.125 15.25 6.629 15.25 7.25V16.8125C15.25 17.1224 14.9985 17.375 14.6875 17.375H4.5625C4.25199 17.375 4 17.1224 4 16.8125C4 16.5015 3.74851 16.25 3.4375 16.25C3.12649 16.25 2.875 16.5015 2.875 16.8125C2.875 17.7429 3.63212 18.5 4.5625 18.5H14.6875C15.6179 18.5 16.375 17.7429 16.375 16.8125V6.125C16.375 5.66433 16.1387 5.0928 15.8125 4.76709L15.8124 4.76696Z" fill="#470D69"/> +<path id="Vector" d="M15.8124 4.76696L12.1079 1.0625C11.7827 0.736314 11.2113 0.5 10.75 0.5H4.5625C3.63212 0.5 2.875 1.25713 2.875 2.1875V7.8125C2.875 8.12351 3.12649 8.375 3.4375 8.375C3.74851 8.375 4 8.12351 4 7.8125V2.1875C4 1.87762 4.25199 1.625 4.5625 1.625H9.625C10.2465 1.625 10.75 2.129 10.75 2.75V4.85938C10.75 5.55572 11.3204 6.125 12.0156 6.125H14.125C14.7465 6.125 15.25 6.629 15.25 7.25V16.8125C15.25 17.1224 14.9985 17.375 14.6875 17.375H4.5625C4.25199 17.375 4 17.1224 4 16.8125C4 16.5015 3.74851 16.25 3.4375 16.25C3.12649 16.25 2.875 16.5015 2.875 16.8125C2.875 17.7429 3.63212 18.5 4.5625 18.5H14.6875C15.6179 18.5 16.375 17.7429 16.375 16.8125V6.125C16.375 5.66433 16.1387 5.0928 15.8125 4.76709L15.8124 4.76696Z" fill="#3f6587"/> </g> </g> -<path id="Subtract" fill-rule="evenodd" clip-rule="evenodd" d="M13.5625 8.9375H1.1875C0.878125 8.9375 0.625 9.19063 0.625 9.5V15.125C0.625 15.4344 0.878125 15.6875 1.1875 15.6875H13.5625C13.8724 15.6875 14.125 15.4344 14.125 15.125V9.5C14.125 9.19063 13.8724 8.9375 13.5625 8.9375ZM2.17644 12.0446L3.07524 13.8871H3.22232V15.027H3.7902V13.8871H3.93728L4.76663 12.0446H4.20283L3.59546 13.4459H3.43983L2.77292 12.0446H2.17644ZM5.72588 12.0446L4.7086 15.027H5.28874L5.55168 14.2344H6.85141L7.12311 15.027H7.71959L6.67371 12.0446H5.72588ZM6.68334 13.7442L6.26738 12.5308H6.11687L5.71432 13.7442H6.68334ZM8.24432 15.027V12.0446H9.0369L9.78454 13.8259H9.85808L10.6016 12.0446H11.4065V15.027H10.8304V12.6661L10.0991 14.4183H9.50673L8.77543 12.675V15.027H8.24432ZM12.224 12.0446V15.027H12.7224H12.8041H14.0093V14.5163H12.8041V12.0446H12.224Z" fill="#470D69"/> +<path id="Subtract" fill-rule="evenodd" clip-rule="evenodd" d="M13.5625 8.9375H1.1875C0.878125 8.9375 0.625 9.19063 0.625 9.5V15.125C0.625 15.4344 0.878125 15.6875 1.1875 15.6875H13.5625C13.8724 15.6875 14.125 15.4344 14.125 15.125V9.5C14.125 9.19063 13.8724 8.9375 13.5625 8.9375ZM2.17644 12.0446L3.07524 13.8871H3.22232V15.027H3.7902V13.8871H3.93728L4.76663 12.0446H4.20283L3.59546 13.4459H3.43983L2.77292 12.0446H2.17644ZM5.72588 12.0446L4.7086 15.027H5.28874L5.55168 14.2344H6.85141L7.12311 15.027H7.71959L6.67371 12.0446H5.72588ZM6.68334 13.7442L6.26738 12.5308H6.11687L5.71432 13.7442H6.68334ZM8.24432 15.027V12.0446H9.0369L9.78454 13.8259H9.85808L10.6016 12.0446H11.4065V15.027H10.8304V12.6661L10.0991 14.4183H9.50673L8.77543 12.675V15.027H8.24432ZM12.224 12.0446V15.027H12.7224H12.8041H14.0093V14.5163H12.8041V12.0446H12.224Z" fill="#3f6587"/> </g> </g> </svg> diff --git a/src/components/AccessType/index.module.less b/src/components/AccessType/index.module.less index e2604a09..ac26fa49 100644 --- a/src/components/AccessType/index.module.less +++ b/src/components/AccessType/index.module.less @@ -2,7 +2,7 @@ width: 100%; color: #808080c6; font-weight: 700; - font-family: var(--font-manrope); + font-family: var(--font-inter); text-transform: uppercase; } diff --git a/src/components/AlertForm/index.module.less b/src/components/AlertForm/index.module.less index a7f686d6..aa0f569e 100644 --- a/src/components/AlertForm/index.module.less +++ b/src/components/AlertForm/index.module.less @@ -76,14 +76,14 @@ } .link { - color: #a31bcb; + color: #4a7faa; text-decoration: underline; } .alert { - background: rgba(163, 27, 203, 0.05); - border: 1px solid #a31bcb; + background: rgba(74, 127, 170, 0.05); + border: 1px solid #4a7faa; border-radius: 6px; span { font-weight: 700; @@ -94,10 +94,10 @@ display: flex; gap: 10px; align-items: center; - color: #470d69; + color: #3f6587; font-weight: 700; font-size: 12px; - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); } .saveBtn { diff --git a/src/components/AlertForm/index.tsx b/src/components/AlertForm/index.tsx index 732abf39..f2b3bdd8 100644 --- a/src/components/AlertForm/index.tsx +++ b/src/components/AlertForm/index.tsx @@ -199,7 +199,7 @@ const AlertForm: FC<AlertFormProps> = ({ <div className={styles.deliveryInput}> <Input starPosition="left" - starColor="#A31BCB" + starColor="#4a7faa" label={`${capitalize(type)}:`} control={control} rules={{ @@ -238,7 +238,7 @@ const AlertForm: FC<AlertFormProps> = ({ <Input rules={{ required: true, validate: validate.cronExp }} starPosition="left" - starColor="#A31BCB" + starColor="#4a7faa" label={ <span> {t("schedule")} ( @@ -294,7 +294,7 @@ const AlertForm: FC<AlertFormProps> = ({ validate: (val: number) => !isNaN(val) && val >= 0, }} starPosition="left" - starColor="#A31BCB" + starColor="#4a7faa" className={styles.input} label={t("form.request_timeout")} control={control} @@ -312,7 +312,7 @@ const AlertForm: FC<AlertFormProps> = ({ validate: (val: number) => !isNaN(val) && val >= 0, }} starPosition="left" - starColor="#A31BCB" + starColor="#4a7faa" className={styles.input} label={t("form.timeout_on_fire")} control={control} diff --git a/src/components/ApiSetup/index.module.less b/src/components/ApiSetup/index.module.less index ce03eeca..d38288c4 100644 --- a/src/components/ApiSetup/index.module.less +++ b/src/components/ApiSetup/index.module.less @@ -29,7 +29,7 @@ .back { color: var(--color-primary); - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); border: none; } diff --git a/src/components/AuthLinks/index.tsx b/src/components/AuthLinks/index.tsx index 04f615c1..1cb66d2c 100644 --- a/src/components/AuthLinks/index.tsx +++ b/src/components/AuthLinks/index.tsx @@ -16,6 +16,14 @@ interface AuthLinksProps { const AuthLinks: FC<AuthLinksProps> = ({ currentPage }) => { const { t } = useTranslation(["common"]); const [, setLocation] = useLocation(); + const [signupEnabled, setSignupEnabled] = useState(false); + + useEffect(() => { + fetch("/auth/config") + .then((r) => r.json()) + .then((data) => setSignupEnabled(data.signupEnabled === true)) + .catch(() => setSignupEnabled(false)); + }, []); return ( <Space> @@ -30,7 +38,7 @@ const AuthLinks: FC<AuthLinksProps> = ({ currentPage }) => { : t("common:words.sign_in")} </Button> )} - {currentPage !== "signup" && ( + {signupEnabled && currentPage !== "signup" && ( <Button className={styles.btn} type="primary" diff --git a/src/components/BranchSelection/index.module.less b/src/components/BranchSelection/index.module.less index 4610cdcf..c59da128 100644 --- a/src/components/BranchSelection/index.module.less +++ b/src/components/BranchSelection/index.module.less @@ -66,10 +66,10 @@ &:hover { color: black; - background: rgba(163, 27, 203, 0.1) !important; + background: rgba(74, 127, 170, 0.1) !important; path { - stroke: rgba(163, 27, 203, 1); + stroke: rgba(74, 127, 170, 1); } } } diff --git a/src/components/Button/index.module.less b/src/components/Button/index.module.less index 88b3032e..1e7a9e23 100644 --- a/src/components/Button/index.module.less +++ b/src/components/Button/index.module.less @@ -1,10 +1,10 @@ .btn { - font-family: var(--font-manrope); + font-family: var(--font-inter); span, div { font-weight: 600; font-size: 14px; - font-family: var(--font-manrope); + font-family: var(--font-inter); } } diff --git a/src/components/CodeEditor/RegenerateModal.tsx b/src/components/CodeEditor/RegenerateModal.tsx new file mode 100644 index 00000000..721fa4a3 --- /dev/null +++ b/src/components/CodeEditor/RegenerateModal.tsx @@ -0,0 +1,83 @@ +import { useState } from "react"; +import { Modal, Radio, Space, Typography, Spin } from "antd"; + +import type { FC } from "react"; + +const { Text, Paragraph } = Typography; + +export type MergeStrategy = "auto" | "merge" | "replace"; + +interface RegenerateModalProps { + visible: boolean; + onCancel: () => void; + onRegenerate: (strategy: MergeStrategy) => void; + sourceTable: string; + sourceDatabase: string; + isRegenerating: boolean; +} + +const RegenerateModal: FC<RegenerateModalProps> = ({ + visible, + onCancel, + onRegenerate, + sourceTable, + sourceDatabase, + isRegenerating, +}) => { + const [strategy, setStrategy] = useState<MergeStrategy>("auto"); + + return ( + <Modal + title="Regenerate Model" + open={visible} + onCancel={onCancel} + okText="Regenerate" + onOk={() => onRegenerate(strategy)} + okButtonProps={{ disabled: isRegenerating }} + cancelButtonProps={{ disabled: isRegenerating }} + > + <Spin spinning={isRegenerating}> + <Paragraph> + Re-profile{" "} + <Text strong> + {sourceDatabase}.{sourceTable} + </Text>{" "} + and update the model. + </Paragraph> + + <Radio.Group + value={strategy} + onChange={(e) => setStrategy(e.target.value)} + style={{ width: "100%" }} + > + <Space direction="vertical" style={{ width: "100%" }}> + <Radio value="auto"> + <Text strong>Auto</Text>{" "} + <Text type="secondary">(recommended)</Text> + <br /> + <Text type="secondary" style={{ marginLeft: 24 }}> + Automatically detect user content and merge if found + </Text> + </Radio> + <Radio value="merge"> + <Text strong>Merge</Text> + <br /> + <Text type="secondary" style={{ marginLeft: 24 }}> + Keep user-added joins, pre-aggregations, and custom members + </Text> + </Radio> + <Radio value="replace"> + <Text strong>Replace</Text> + <br /> + <Text type="secondary" style={{ marginLeft: 24 }}> + Replace everything with fresh profile output + </Text> + </Radio> + </Space> + </Radio.Group> + </Spin> + </Modal> + ); +}; + +export default RegenerateModal; diff --git a/src/components/CodeEditor/index.module.less b/src/components/CodeEditor/index.module.less index a63b9b4d..cb3055e9 100644 --- a/src/components/CodeEditor/index.module.less +++ b/src/components/CodeEditor/index.module.less @@ -30,7 +30,7 @@ .active { position: relative; - color: #a31bcb; + color: #4a7faa; &::after { position: absolute; @@ -38,14 +38,14 @@ left: 0; width: 100%; height: 3px; - background: #a31bcb; + background: #4a7faa; border-radius: 3px 3px 0 0; content: ""; } } .active.sqlRunner { - background: rgba(163, 27, 203, 0.1); + background: rgba(74, 127, 170, 0.1); } .run { @@ -58,7 +58,7 @@ padding: 0 12px; color: #fff; line-height: 1; - background: #a31bcb; + background: #4a7faa; border-radius: 6px; * { font-size: 12px !important; @@ -71,7 +71,7 @@ color: #a5a5a5; &:hover { - color: #a31bcb !important; + color: #4a7faa !important; } } @@ -85,9 +85,9 @@ } .save { - color: #470d69; + color: #3f6587; font-weight: 700; - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); &:hover { border-color: inherit; @@ -114,6 +114,47 @@ border-bottom: 1px solid rgba(0, 0, 0, 0.1); } +.infoBtn { + color: rgba(0, 0, 0, 0.45); + font-size: 16px; + + &:hover { + color: #4a7faa; + } +} + +.infoIcon { + margin-left: 6px; + color: #5a7a96; + font-size: 12px !important; + + &:hover { + color: #3d6a95; + } +} + +.infoList { + display: grid; + grid-template-columns: 140px 1fr; + gap: 8px 16px; + margin: 0; + + dt { + color: rgba(0, 0, 0, 0.45); + font-weight: 600; + } + + dd { + margin: 0; + word-break: break-all; + } +} + +.infoMono { + font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; + font-size: 12px; +} + .editorControls { margin-bottom: 16px; padding: 0 16px; @@ -134,3 +175,20 @@ left: 0; padding: 0 15px 0 0; } + +.monacoWrapper { + position: relative; +} + +// AI metric decorations injected into Monaco via global classes +:global { + .ai-metric-line-decoration { + background: rgba(139, 92, 246, 0.06); + } + + .ai-metric-glyph { + background: rgba(139, 92, 246, 0.35); + border-radius: 2px; + margin-left: 3px; + } +} diff --git a/src/components/CodeEditor/index.tsx b/src/components/CodeEditor/index.tsx index c256aaa9..d48c41e5 100644 --- a/src/components/CodeEditor/index.tsx +++ b/src/components/CodeEditor/index.tsx @@ -1,26 +1,101 @@ -import { Col, Row, Space, Tooltip } from "antd"; +import { Col, Modal, Row, Space, Tooltip } from "antd"; import Scrollbar from "react-custom-scrollbars"; -import { CloseOutlined } from "@ant-design/icons"; +import { + CloseOutlined, + InfoCircleOutlined, + SyncOutlined, +} from "@ant-design/icons"; import { Editor } from "@monaco-editor/react"; import { useTranslation } from "react-i18next"; import { useResponsive, useSize, useTrackedEffect } from "ahooks"; import moment from "moment"; import cn from "classnames"; +import { useQuery } from "urql"; +import gql from "graphql-tag"; import Button from "@/components/Button"; import NoModels from "@/components/NoModels"; import SQLRunner from "@/components/SQLRunner"; import Console from "@/components/Console"; +import type { ConsoleError } from "@/components/Console"; import { MONACO_OPTIONS } from "@/utils/constants/monaco"; import type { Dataschema } from "@/types/dataschema"; +import type { Member } from "@/types/team"; import equals from "@/utils/helpers/equals"; +import formatTime from "@/utils/helpers/formatTime"; +import { createCompletionProvider } from "@/utils/cubejs-language/completionProvider"; +import { createDiagnosticProvider } from "@/utils/cubejs-language/diagnosticProvider"; +import { createHoverProvider } from "@/utils/cubejs-language/hoverProvider"; +import { cubeJsSpec, CUBEJS_SPEC_VERSION } from "@/utils/cubejs-language/spec"; +import { parseYamlDocument } from "@/utils/cubejs-language/yamlParser"; +import { parseJsDocument } from "@/utils/cubejs-language/jsParser"; +import { CubeRegistry } from "@/utils/cubejs-language/registry"; +import { isSmartGenerated, parseProvenance } from "@/utils/provenanceParser"; +import CurrentUserStore from "@/stores/CurrentUserStore"; import SaveIcon from "@/assets/save.svg"; +import RegenerateModal from "./RegenerateModal"; + import styles from "./index.module.less"; +import type { MergeStrategy } from "./RegenerateModal"; import type { FC } from "react"; +const FirstDataschemaAppearanceDocument = gql` + query FirstDataschemaAppearance($branch_id: uuid!, $name: String!) { + versions( + where: { + branch_id: { _eq: $branch_id } + dataschemas: { name: { _eq: $name } } + } + order_by: { created_at: asc } + limit: 1 + ) { + dataschemas(where: { name: { _eq: $name } }, limit: 1) { + created_at + user_id + user { + display_name + } + } + } + } +`; + +type SchemaUserFields = { + user_id?: string | null; + user?: { display_name?: string | null } | null; +}; + +const resolveUserName = ( + schema: SchemaUserFields | undefined, + members: Member[] | undefined, + currentUserId?: string, + currentUserName?: string | null +): string => { + if (!schema) return "—"; + + const fromRelation = schema.user?.display_name?.trim(); + if (fromRelation) return fromRelation; + + const member = members?.find((m) => m.user_id === schema.user_id); + const fromMember = member?.displayName?.trim() || member?.email?.trim() || ""; + if (fromMember) return fromMember; + + if (schema.user_id && schema.user_id === currentUserId) { + const self = currentUserName?.trim(); + if (self) return self; + } + + return "—"; +}; + +const formatTimestampWithRelative = (timestamp?: string | null): string => { + if (!timestamp) return "—"; + return `${formatTime(timestamp)} (${moment(timestamp).fromNow()})`; +}; + interface CodeEditorProps { schemas?: Dataschema[]; active?: string | null; @@ -28,11 +103,22 @@ interface CodeEditorProps { onClose: (fileName: string) => void; onRunSQL: (query: string, limit: number) => void; onCodeSave: (files: Partial<Dataschema>[]) => void; + onRegenerate?: ( + strategy: MergeStrategy, + sourceTable: string, + sourceDatabase: string + ) => void; + isRegenerating?: boolean; data?: object[]; sqlError?: object; showConsole?: boolean; toggleConsole?: () => void; - validationError: string; + validationError: string | ConsoleError[]; + cubeRegistry?: CubeRegistry; + onRefreshRegistry?: () => void; + branchId?: string; + branchName?: string; + versionNumber?: number; } const languages = { @@ -47,15 +133,56 @@ const CodeEditor: FC<CodeEditorProps> = ({ onTabChange, onRunSQL, onCodeSave, + onRegenerate, + isRegenerating = false, data, sqlError = {}, showConsole = false, toggleConsole = () => {}, validationError, + cubeRegistry, + onRefreshRegistry, + branchId, + branchName, + versionNumber, }) => { const { t } = useTranslation(["models", "common"]); + const { teamData, currentUser } = CurrentUserStore(); const pageHeader = useRef(null); const editorHeader = useRef(null); + const completionDisposableRef = useRef<any>(null); + const hoverDisposableRef = useRef<any>(null); + const diagnosticProviderRef = useRef<ReturnType< + typeof createDiagnosticProvider + > | null>(null); + const editorInstanceRef = useRef<any>(null); + const monacoInstanceRef = useRef<any>(null); + const aiDecorationsRef = useRef<any>(null); + const aiHoverDisposableRef = useRef<any>(null); + const onSaveRef = useRef<() => void>(() => {}); + const [specVersionWarning, setSpecVersionWarning] = useState<string | null>( + null + ); + const [showRegenerateModal, setShowRegenerateModal] = + useState<boolean>(false); + const [showInfoModal, setShowInfoModal] = useState<boolean>(false); + const activeFileName = active && active !== "sqlrunner" ? active : null; + const [firstAppearance] = useQuery({ + query: FirstDataschemaAppearanceDocument, + variables: { + branch_id: branchId || "", + name: activeFileName || "", + }, + pause: !showInfoModal || !branchId || !activeFileName, + }); + const firstSchema = + firstAppearance.data?.versions?.[0]?.dataschemas?.[0] || undefined; + + // Create a default registry if none provided + const registryRef = useRef<CubeRegistry>(cubeRegistry ?? new CubeRegistry()); + if (cubeRegistry) { + registryRef.current = cubeRegistry; + } const windowSize = useResponsive(); const isMd = windowSize?.md; @@ -97,6 +224,20 @@ const CodeEditor: FC<CodeEditorProps> = ({ getFilesContent() ); + // Determine if the active file is a smart-generated model (YAML or JS) + const activeFileExt = active ? active.split(".").pop()?.toLowerCase() : null; + const isModelFile = + activeFileExt === "yml" || + activeFileExt === "yaml" || + activeFileExt === "js"; + const activeContent = active && content?.[active] ? content[active] : ""; + const showRegenerateButton = + isModelFile && isSmartGenerated(activeContent) && !!onRegenerate; + + const activeProvenance = showRegenerateButton + ? parseProvenance(activeContent) + : null; + const onRun = () => { if (!showData) { setShowData(true); @@ -110,6 +251,53 @@ const CodeEditor: FC<CodeEditorProps> = ({ ([name, code]) => ({ name, code }) ); await onCodeSave(newFiles); + + // Trigger backend validation via diagnostic provider + if (diagnosticProviderRef.current && active && active !== "sqlrunner") { + const filesForValidation = Object.entries(content).map( + ([fileName, fileContent]) => ({ fileName, content: fileContent }) + ); + const backendDiags = await diagnosticProviderRef.current.onSave( + filesForValidation, + active + ); + + // Apply backend diagnostics as markers on current model + if (monacoInstanceRef.current && editorInstanceRef.current) { + const model = editorInstanceRef.current.getModel(); + if (model && backendDiags.length > 0) { + const monaco = monacoInstanceRef.current; + const markers = backendDiags.map((d: any) => ({ + severity: + d.severity === "error" + ? monaco.MarkerSeverity.Error + : monaco.MarkerSeverity.Warning, + message: d.message, + startLineNumber: d.startLineNumber, + startColumn: d.startColumn, + endLineNumber: d.endLineNumber, + endColumn: d.endColumn, + })); + monaco.editor.setModelMarkers(model, "cubejs-backend", markers); + } + } + } + + // Refresh cube registry after save (FR-014) + if (onRefreshRegistry) { + onRefreshRegistry(); + } + }; + + const handleRegenerate = (strategy: MergeStrategy) => { + if (onRegenerate && activeProvenance) { + onRegenerate( + strategy, + activeProvenance.sourceTable || "", + activeProvenance.sourceDatabase || "" + ); + } + setShowRegenerateModal(false); }; useTrackedEffect( @@ -124,8 +312,318 @@ const CodeEditor: FC<CodeEditorProps> = ({ [schemas] ); + onSaveRef.current = onSave; + + // Clean up completion and diagnostic providers on unmount + useTrackedEffect(() => { + return () => { + if (completionDisposableRef.current) { + completionDisposableRef.current.dispose(); + completionDisposableRef.current = null; + } + if (hoverDisposableRef.current) { + hoverDisposableRef.current.dispose(); + hoverDisposableRef.current = null; + } + if (diagnosticProviderRef.current) { + diagnosticProviderRef.current.dispose(); + diagnosticProviderRef.current = null; + } + if (aiHoverDisposableRef.current) { + aiHoverDisposableRef.current.dispose(); + aiHoverDisposableRef.current = null; + } + }; + }, []); + + const handleEditorMount = (_editor: any, monaco: any) => { + editorInstanceRef.current = _editor; + monacoInstanceRef.current = monaco; + + // Dispose previous registration if any + if (completionDisposableRef.current) { + completionDisposableRef.current.dispose(); + } + + const provider = createCompletionProvider(registryRef.current); + + // Register for both YAML and JavaScript + const yamlDisposable = monaco.languages.registerCompletionItemProvider( + "yaml", + provider + ); + const jsDisposable = monaco.languages.registerCompletionItemProvider( + "javascript", + provider + ); + + // Store a combined disposable + completionDisposableRef.current = { + dispose() { + yamlDisposable.dispose(); + jsDisposable.dispose(); + }, + }; + + // Register hover provider + if (hoverDisposableRef.current) { + hoverDisposableRef.current.dispose(); + } + const hoverProvider = createHoverProvider(cubeJsSpec, registryRef.current); + const yamlHoverDisposable = monaco.languages.registerHoverProvider( + "yaml", + hoverProvider + ); + const jsHoverDisposable = monaco.languages.registerHoverProvider( + "javascript", + hoverProvider + ); + hoverDisposableRef.current = { + dispose() { + yamlHoverDisposable.dispose(); + jsHoverDisposable.dispose(); + }, + }; + + // Create diagnostic provider + if (diagnosticProviderRef.current) { + diagnosticProviderRef.current.dispose(); + } + diagnosticProviderRef.current = createDiagnosticProvider(cubeJsSpec, { + setMarkers: (model: unknown, owner: string, markers: any[]) => { + const monacoMarkers = markers.map((m) => ({ + severity: + m.severity === "error" + ? monaco.MarkerSeverity.Error + : monaco.MarkerSeverity.Warning, + message: m.message, + startLineNumber: m.startLineNumber, + startColumn: m.startColumn, + endLineNumber: m.endLineNumber, + endColumn: m.endColumn, + })); + monaco.editor.setModelMarkers(model as any, owner, monacoMarkers); + }, + validateOnBackend: async (schemaFiles) => { + try { + const res = await fetch("/api/v1/validate", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ files: schemaFiles }), + }); + if (!res.ok) return []; + const result = await res.json(); + return [...(result.errors || []), ...(result.warnings || [])]; + } catch { + return []; + } + }, + }); + + // Wire up content change listener for diagnostics + const editorModel = _editor.getModel(); + if (editorModel && diagnosticProviderRef.current) { + const parseForModel = (modelContent: string) => { + const path = editorModel.uri?.path || ""; + if (path.endsWith(".yml") || path.endsWith(".yaml")) { + return parseYamlDocument(modelContent); + } + return parseJsDocument(modelContent); + }; + // Run initial validation + diagnosticProviderRef.current.onContentChange(editorModel, parseForModel); + // Listen for subsequent changes + _editor.onDidChangeModelContent(() => { + if (diagnosticProviderRef.current) { + diagnosticProviderRef.current.onContentChange( + editorModel, + parseForModel + ); + } + }); + } + + // --- AI metric decorations (T036) --- + const updateAIDecorations = (ed: any, mon: any) => { + const mdl = ed.getModel(); + if (!mdl) return; + const lines = mdl.getValue().split("\n"); + const decorations: any[] = []; + + for (let i = 0; i < lines.length; i++) { + const line = lines[i]; + if ( + line.includes("ai_generated: true") || + line.includes("ai_generated:true") + ) { + // Find the extent of this AI metric block: scan backwards for the + // field name (a line at equal or lesser indent that looks like a YAML + // key), and forwards until indent returns to that level. + const indent = line.search(/\S/); + let blockStart = i; + for (let b = i - 1; b >= 0; b--) { + const bIndent = lines[b].search(/\S/); + if (bIndent < 0) continue; // blank line + if (bIndent < indent) { + blockStart = b; + break; + } + blockStart = b; + } + let blockEnd = i; + for (let e = i + 1; e < lines.length; e++) { + const eIndent = lines[e].search(/\S/); + if (eIndent < 0) continue; // blank line + if (eIndent <= indent && !lines[e].trim().startsWith("#")) break; + blockEnd = e; + } + + for (let d = blockStart; d <= blockEnd; d++) { + decorations.push({ + range: new mon.Range(d + 1, 1, d + 1, 1), + options: { + isWholeLine: true, + className: "ai-metric-line-decoration", + glyphMarginClassName: "ai-metric-glyph", + glyphMarginHoverMessage: { value: "AI-generated metric" }, + }, + }); + } + } + } + + if (aiDecorationsRef.current) { + aiDecorationsRef.current = ed.deltaDecorations( + aiDecorationsRef.current, + decorations + ); + } else { + aiDecorationsRef.current = ed.deltaDecorations([], decorations); + } + }; + + // Apply initial decorations and update on content changes + updateAIDecorations(_editor, monaco); + _editor.onDidChangeModelContent(() => { + updateAIDecorations(_editor, monaco); + }); + + // --- AI metric hover provider (T036) --- + if (aiHoverDisposableRef.current) { + aiHoverDisposableRef.current.dispose(); + } + const aiHoverProvider = { + provideHover(hoverModel: any, position: any) { + const lineNumber = position.lineNumber; + const totalLines = hoverModel.getLineCount(); + const currentLine = hoverModel.getLineContent(lineNumber); + + // Check if cursor is on or near an ai_generated: true line + const searchRadius = 15; + const startLine = Math.max(1, lineNumber - searchRadius); + const endLine = Math.min(totalLines, lineNumber + searchRadius); + + let foundAiLine = -1; + for (let l = startLine; l <= endLine; l++) { + const text = hoverModel.getLineContent(l); + if ( + text.includes("ai_generated: true") || + text.includes("ai_generated:true") + ) { + // Use closest match + if ( + foundAiLine < 0 || + Math.abs(l - lineNumber) < Math.abs(foundAiLine - lineNumber) + ) { + foundAiLine = l; + } + } + } + + if (foundAiLine < 0) return null; + + // Check that cursor line is within the same block + const aiLineContent = hoverModel.getLineContent(foundAiLine); + const aiIndent = aiLineContent.search(/\S/); + const curIndent = currentLine.search(/\S/); + if (curIndent < 0) return null; + + // Cursor must be at same or deeper indent within the block + const isInBlock = + lineNumber === foundAiLine || + (curIndent >= aiIndent && + Math.abs(lineNumber - foundAiLine) <= searchRadius); + if (!isInBlock) return null; + + // Search nearby lines for ai_generation_context + let contextValue: string | null = null; + for ( + let c = Math.max(1, foundAiLine - 5); + c <= Math.min(totalLines, foundAiLine + 10); + c++ + ) { + const cText = hoverModel.getLineContent(c); + const match = cText.match(/ai_generation_context:\s*(.+)/); + if (match) { + contextValue = match[1].trim().replace(/^["']|["']$/g, ""); + break; + } + } + + if (!contextValue) return null; + + return { + range: new monaco.Range(lineNumber, 1, lineNumber, 1), + contents: [ + { + value: `**AI Generation Context**\n\n${contextValue}`, + }, + ], + }; + }, + }; + + const yamlAiHover = monaco.languages.registerHoverProvider( + "yaml", + aiHoverProvider + ); + const jsAiHover = monaco.languages.registerHoverProvider( + "javascript", + aiHoverProvider + ); + aiHoverDisposableRef.current = { + dispose() { + yamlAiHover.dispose(); + jsAiHover.dispose(); + }, + }; + + // Cmd+S / Ctrl+S to save + _editor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.KeyS, () => + onSaveRef.current() + ); + + // Version check against CubeJS backend + fetch("/api/v1/version") + .then((res) => (res.ok ? res.json() : null)) + .then((versionData) => { + if (versionData?.version) { + const [bMajor, bMinor] = versionData.version.split(".").map(Number); + const [sMajor, sMinor] = CUBEJS_SPEC_VERSION.split(".").map(Number); + if (bMajor !== sMajor || bMinor !== sMinor) { + const msg = `Cube.js spec version mismatch: editor spec ${CUBEJS_SPEC_VERSION}, backend ${versionData.version}`; + console.warn(msg); + setSpecVersionWarning(msg); + } + } + }) + .catch(() => { + // Version check is best-effort; ignore failures + }); + }; + const language = active - ? languages[active.split(".")[0] as keyof typeof languages] + ? languages[active.split(".").pop() as keyof typeof languages] : "sql"; const header = ( @@ -171,6 +669,18 @@ const CodeEditor: FC<CodeEditorProps> = ({ onClick={() => onTabChange(files[name])} > {files[name].name} {files[name].code !== content?.[name] && "*"} + {active === name && ( + <Tooltip title="Model info"> + <InfoCircleOutlined + className={styles.infoIcon} + onClick={(e) => { + e.preventDefault(); + e.stopPropagation(); + setShowInfoModal(true); + }} + /> + </Tooltip> + )} <Tooltip title={t("common:words.close")}> <CloseOutlined className={styles.closeIcon} @@ -220,26 +730,50 @@ const CodeEditor: FC<CodeEditorProps> = ({ )} </Col> <Col> - <Button - className={cn(styles.save)} - onClick={() => active && onSave()} - icon={<SaveIcon />} - > - {t("common:words.save")} - </Button> + <Space size={8}> + {showRegenerateButton && ( + <Button + className={cn(styles.save)} + onClick={() => setShowRegenerateModal(true)} + icon={<SyncOutlined />} + > + Regenerate + </Button> + )} + <Button + className={cn(styles.save)} + onClick={() => active && onSave()} + icon={<SaveIcon />} + > + {t("common:words.save")} + </Button> + </Space> </Col> </Row> </div> + {specVersionWarning && ( + <div + style={{ + padding: "4px 12px", + background: "#fff7e6", + borderBottom: "1px solid #ffd591", + fontSize: 12, + color: "#ad6800", + }} + > + {specVersionWarning} + </div> + )} <div className={styles.monacoWrapper}> <Editor className={styles.monaco} language={language} defaultLanguage={language} - defaultValue={content?.[active]} value={content?.[active]} onChange={(val) => setContent((prev) => ({ ...prev, [active]: val || " " })) } + onMount={handleEditorMount} path={files[active]?.name} options={MONACO_OPTIONS} height={editorHeight} @@ -249,10 +783,89 @@ const CodeEditor: FC<CodeEditorProps> = ({ <Console onClose={() => toggleConsole?.()} errors={validationError} + onGoToLine={(line, column) => { + const editor = editorInstanceRef.current; + if (editor) { + editor.revealLineInCenter(line); + editor.setPosition({ + lineNumber: line, + column: column || 1, + }); + editor.focus(); + } + }} /> </div> )} </div> + <Modal + title="Model info" + open={showInfoModal} + onCancel={() => setShowInfoModal(false)} + footer={null} + destroyOnClose + > + {files[active] && ( + <dl className={styles.infoList}> + <dt>Name</dt> + <dd>{files[active].name}</dd> + + <dt>Branch</dt> + <dd>{branchName || "—"}</dd> + + <dt>Version</dt> + <dd> + {typeof versionNumber === "number" ? versionNumber : "—"} + </dd> + + <dt>Last saved by</dt> + <dd> + {resolveUserName( + files[active], + teamData?.members, + currentUser?.id, + currentUser?.displayName || currentUser?.email + )} + </dd> + + <dt>Created by</dt> + <dd> + {resolveUserName( + firstSchema || files[active], + teamData?.members, + currentUser?.id, + currentUser?.displayName || currentUser?.email + )} + </dd> + + <dt>Datasource</dt> + <dd>{files[active].datasource?.name || "—"}</dd> + + <dt>Created at</dt> + <dd> + {formatTimestampWithRelative( + firstSchema?.created_at || files[active].created_at + )} + </dd> + + <dt>Updated at</dt> + <dd>{formatTimestampWithRelative(files[active].updated_at)}</dd> + + <dt>Checksum</dt> + <dd className={styles.infoMono}> + {files[active].checksum || "—"} + </dd> + </dl> + )} + </Modal> + <RegenerateModal + visible={showRegenerateModal} + onCancel={() => setShowRegenerateModal(false)} + onRegenerate={handleRegenerate} + sourceTable={activeProvenance?.sourceTable || ""} + sourceDatabase={activeProvenance?.sourceDatabase || ""} + isRegenerating={isRegenerating} + /> </div> ) : ( <SQLRunner diff --git a/src/components/Console/index.module.less b/src/components/Console/index.module.less index 1b8b837d..803f6d40 100644 --- a/src/components/Console/index.module.less +++ b/src/components/Console/index.module.less @@ -1,44 +1,30 @@ .card { - height: 280px; + display: flex; + flex-direction: column; + height: 320px; + background: #fafafa; + border-top: 1px solid rgba(0, 0, 0, 0.08); box-shadow: none !important; } -.card :global(.ant-card-body) { - padding: 6px 28px; -} - -.consoleTabContent { - padding: 2px; -} - -.errorText { - padding: 8px; - padding: 6px; - color: #f00; - font-size: 12px; - font-family: Sora; - white-space: pre-wrap; - background: rgba(255, 0, 0, 0.05); - border: 1px solid rgba(255, 0, 0, 0.1); - border-radius: 6px; -} - .closeButton { cursor: pointer; + flex-shrink: 0; } .tabBtn { position: relative; - color: black; + color: #1f1f1f; font-weight: 600; cursor: pointer; + &::after { position: absolute; bottom: -16px; left: 50%; width: 150%; height: 3px; - background: #a31bcb; + background: #4a7faa; border-radius: 3px 3px 0 0; transform: translateX(-50%); content: ""; @@ -47,14 +33,139 @@ .header { display: flex; + flex-shrink: 0; align-items: center; justify-content: space-between; - padding: 16px 12px 14px; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); + padding: 14px 12px 12px; + background: #fff; + border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .body { - height: 240px; - padding: 16px 0; + flex: 1; + min-height: 0; + padding: 12px; overflow-y: auto; } + +.errorList { + display: flex; + flex-direction: column; + gap: 10px; +} + +.errorCard { + display: flex; + gap: 10px; + padding: 12px 14px; + background: #fff; + border: 1px solid #ffccc7; + border-left: 3px solid #ff4d4f; + border-radius: 6px; +} + +.clickable { + cursor: pointer; + + &:hover { + background: #fff8f7; + } +} + +.errorCardIcon { + flex-shrink: 0; + padding-top: 2px; +} + +.errorCardBody { + display: flex; + flex: 1; + flex-direction: column; + gap: 6px; + min-width: 0; +} + +.errorMeta { + display: flex; + flex-wrap: wrap; + gap: 8px; + align-items: center; +} + +.cubeName { + color: #1f1f1f; + font-size: 13px; + font-weight: 600; +} + +.fieldPath { + padding: 1px 6px; + color: #a8071a; + font-size: 12px; + font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; + background: #fff1f0; + border-radius: 4px; +} + +.lineRef { + color: #8c8c8c; + font-size: 12px; +} + +.errorMessage { + color: #262626; + font-size: 13px; + line-height: 1.45; + word-break: break-word; +} + +.allowedBlock { + margin-top: 2px; +} + +.allowedLabel { + margin-bottom: 6px; + color: #8c8c8c; + font-size: 11px; + font-weight: 600; + letter-spacing: 0.02em; + text-transform: uppercase; +} + +.allowedList { + display: flex; + flex-wrap: wrap; + gap: 6px; +} + +.allowedChip { + padding: 2px 8px; + color: #434343; + font-size: 12px; + font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; + background: #f5f5f5; + border: 1px solid #e8e8e8; + border-radius: 999px; +} + +.errorIcon { + color: #ff4d4f; + font-size: 14px; +} + +.warningIcon { + color: #faad14; + font-size: 14px; +} + +.warningCount { + margin-left: 8px; + color: #999; + font-size: 11px; +} + +.noErrors { + padding: 12px; + color: #999; + font-size: 13px; +} diff --git a/src/components/Console/index.tsx b/src/components/Console/index.tsx index 8ab38ef7..fbb92bcf 100644 --- a/src/components/Console/index.tsx +++ b/src/components/Console/index.tsx @@ -1,4 +1,8 @@ -import { Card, Button } from "antd"; +import { Badge } from "antd"; +import { ExclamationCircleOutlined, WarningOutlined } from "@ant-design/icons"; + +import { formatCompileErrors } from "@/utils/helpers/formatCompileErrors"; +import type { FormattedCompileError } from "@/utils/helpers/formatCompileErrors"; import CloseIcon from "@/assets/console-close.svg"; @@ -6,16 +10,95 @@ import s from "./index.module.less"; import type { FC } from "react"; +export interface ConsoleError { + severity: "error" | "warning"; + message: string; + cube?: string; + path?: string; + allowed?: string[]; + line?: number | null; + column?: number | null; + fileName?: string | null; +} + interface ConsoleProps { - errors: string; + errors: string | ConsoleError[]; onClose: () => void; + onGoToLine?: (line: number, column?: number) => void; } -const Console: FC<ConsoleProps> = ({ errors, onClose }) => { +function parseErrors(errors: string | ConsoleError[]): ConsoleError[] { + if (Array.isArray(errors)) return errors; + if (!errors || !errors.trim()) return []; + return formatCompileErrors(errors); +} + +function ErrorCard({ + item, + onGoToLine, +}: { + item: ConsoleError | FormattedCompileError; + onGoToLine?: (line: number, column?: number) => void; +}) { + const line = "line" in item ? item.line : null; + const column = "column" in item ? item.column : null; + const clickable = !!line; + + return ( + <div + className={clickable ? `${s.errorCard} ${s.clickable}` : s.errorCard} + onClick={() => line && onGoToLine?.(line, column ?? 1)} + > + <div className={s.errorCardIcon}> + {item.severity === "error" ? ( + <ExclamationCircleOutlined className={s.errorIcon} /> + ) : ( + <WarningOutlined className={s.warningIcon} /> + )} + </div> + <div className={s.errorCardBody}> + {(item.cube || item.path || line) && ( + <div className={s.errorMeta}> + {item.cube && <span className={s.cubeName}>{item.cube}</span>} + {item.path && <span className={s.fieldPath}>{item.path}</span>} + {line ? <span className={s.lineRef}>Ln {line}</span> : null} + </div> + )} + <div className={s.errorMessage}>{item.message}</div> + {item.allowed && item.allowed.length > 0 && ( + <div className={s.allowedBlock}> + <div className={s.allowedLabel}>Allowed values</div> + <div className={s.allowedList}> + {item.allowed.map((value) => ( + <code key={value} className={s.allowedChip}> + {value} + </code> + ))} + </div> + </div> + )} + </div> + </div> + ); +} + +const Console: FC<ConsoleProps> = ({ errors, onClose, onGoToLine }) => { + const items = parseErrors(errors); + const errorCount = items.filter((e) => e.severity === "error").length; + const warningCount = items.filter((e) => e.severity === "warning").length; + return ( - <Card className={s.card} bordered={false}> + <div className={s.card}> <div className={s.header}> - <div className={s.tabBtn}>Errors</div> + <div className={s.tabBtn}> + {errorCount > 0 && ( + <Badge count={errorCount} size="small" style={{ marginRight: 8 }} /> + )} + Errors + {warningCount > 0 && ( + <span className={s.warningCount}>{warningCount} warnings</span> + )} + </div> <CloseIcon className={s.closeButton} data-testid="close-console" @@ -23,9 +106,23 @@ const Console: FC<ConsoleProps> = ({ errors, onClose }) => { /> </div> <div className={s.body}> - <div className={s.errorText}>{errors}</div> + {items.length === 0 ? ( + <div className={s.noErrors}>No issues found</div> + ) : ( + <div className={s.errorList}> + {items.map((item, index) => ( + <ErrorCard + key={`${item.cube || ""}-${item.path || ""}-${ + item.message + }-${index}`} + item={item} + onGoToLine={onGoToLine} + /> + ))} + </div> + )} </div> - </Card> + </div> ); }; diff --git a/src/components/CredentialsTable/index.module.less b/src/components/CredentialsTable/index.module.less index 8e6c7ece..0a4e7e06 100644 --- a/src/components/CredentialsTable/index.module.less +++ b/src/components/CredentialsTable/index.module.less @@ -25,13 +25,13 @@ color: #000000; font-weight: 600; font-size: 12px; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .ceil { color: #808080; font-size: 12px; - font-family: var(--font-manrope); + font-family: var(--font-inter); &.bold { color: #000000; diff --git a/src/components/DataModelGeneration/index.module.less b/src/components/DataModelGeneration/index.module.less index fbb9eeaa..95a5d881 100644 --- a/src/components/DataModelGeneration/index.module.less +++ b/src/components/DataModelGeneration/index.module.less @@ -5,10 +5,22 @@ .dataSource { display: flex; align-items: center; + justify-content: space-between; + gap: 12px; margin-bottom: var(--gap-base); } +.dataSourceInfo { + display: flex; + align-items: center; + min-width: 0; +} + +.smartGenerate { + flex-shrink: 0; +} + .iconWrapper { display: flex; align-items: center; @@ -30,7 +42,7 @@ .title { margin: 0; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .collapse { @@ -40,7 +52,7 @@ .collapseHeader { color: var(--color-primary); font-weight: 700; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .markupSelection { @@ -67,7 +79,7 @@ .back { color: var(--color-primary); - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); border: none; } diff --git a/src/components/DataModelGeneration/index.tsx b/src/components/DataModelGeneration/index.tsx index 1c481ed4..47769c46 100644 --- a/src/components/DataModelGeneration/index.tsx +++ b/src/components/DataModelGeneration/index.tsx @@ -1,4 +1,5 @@ import { Col, Collapse, Empty, Form, Row, Spin, Typography } from "antd"; +import { ThunderboltOutlined } from "@ant-design/icons"; import { useTranslation } from "react-i18next"; import cn from "classnames"; import { useResponsive } from "ahooks"; @@ -36,6 +37,7 @@ interface DataModelGenerationProps { initialValue?: DynamicForm; loading?: boolean; resetOnSubmit?: boolean; + onSmartGenerate?: () => void; } const options = [ @@ -54,6 +56,7 @@ const DataModelGeneration: FC<DataModelGenerationProps> = ({ initialValue = {}, loading = false, resetOnSubmit = false, + onSmartGenerate, }) => { const { t } = useTranslation(["dataModelGeneration", "common"]); @@ -109,12 +112,24 @@ const DataModelGeneration: FC<DataModelGenerationProps> = ({ <div className={styles.wrapper}> <div className={styles.head}> <div className={styles.dataSource}> - {"icon" in dataSource && ( - <div className={styles.iconWrapper}>{dataSource.icon}</div> + <div className={styles.dataSourceInfo}> + {"icon" in dataSource && ( + <div className={styles.iconWrapper}>{dataSource.icon}</div> + )} + <Title className={styles.title} level={3}> + {dataSource.name} + + + {onSmartGenerate && ( + )} - - {dataSource.name} - {t("text")} {t("title")} diff --git a/src/components/DataSourceCard/index.module.less b/src/components/DataSourceCard/index.module.less index 7adb880f..732756bd 100644 --- a/src/components/DataSourceCard/index.module.less +++ b/src/components/DataSourceCard/index.module.less @@ -18,7 +18,7 @@ justify-content: space-between; padding: 0; font-size: 12px; - font-family: var(--font-manrope); + font-family: var(--font-inter); &:not(:last-child) { margin-bottom: 12px; } diff --git a/src/components/DataSourceForm/index.tsx b/src/components/DataSourceForm/index.tsx index a6ae021d..94e57cf0 100644 --- a/src/components/DataSourceForm/index.tsx +++ b/src/components/DataSourceForm/index.tsx @@ -16,6 +16,13 @@ import styles from "./index.module.less"; import type { FC } from "react"; +interface CopyFromOption { + id: string; + name: string; + teamName: string; + dbType: string; +} + interface DataSourceFormProps { onFinish: () => void; onDataSourceSelect?: (data: DataSource) => void; @@ -27,6 +34,8 @@ interface DataSourceFormProps { bordered?: boolean; loading?: boolean; shadow?: boolean; + copyFromOptions?: CopyFromOption[]; + onCopyFrom?: (datasourceId: string) => void; } const DataSourceForm: FC = ({ @@ -40,6 +49,8 @@ const DataSourceForm: FC = ({ bordered = true, loading = false, shadow = true, + copyFromOptions = [], + onCopyFrom, }) => { const { t } = useTranslation(["dataSourceStepForm"]); const { step } = DataSourceStore(); @@ -70,6 +81,8 @@ const DataSourceForm: FC = ({ onTestConnection={onTestConnection} onDataSourceSetupSubmit={onDataSourceSetupSubmit} onDataModelGenerationSubmit={onDataModelGenerationSubmit} + copyFromOptions={copyFromOptions} + onCopyFrom={onCopyFrom} /> diff --git a/src/components/DataSourceFormBody/index.tsx b/src/components/DataSourceFormBody/index.tsx index 931c88da..4d095913 100644 --- a/src/components/DataSourceFormBody/index.tsx +++ b/src/components/DataSourceFormBody/index.tsx @@ -1,10 +1,12 @@ -import { useEffect } from "react"; +import { useEffect, useCallback } from "react"; +import { useParams } from "@vitjs/runtime"; import type { DataSource, DataSourceSetupForm, DynamicForm, } from "@/types/dataSource"; +import { Branch_Statuses_Enum } from "@/graphql/generated"; import DataSourceSelection from "@/components/DataSourceSelection"; import DataSourceSetup from "@/components/DataSourceSetup"; import DataModelGeneration from "@/components/DataModelGeneration"; @@ -12,9 +14,19 @@ import ApiSetup from "@/components/ApiSetup"; import { dataSourceForms, dbTiles } from "@/mocks/dataSources"; import DataSourceStore from "@/stores/DataSourceStore"; import type { FormState } from "@/stores/DataSourceStore"; +import CurrentUserStore from "@/stores/CurrentUserStore"; +import useLocation from "@/hooks/useLocation"; +import { MODELS } from "@/utils/constants/paths"; import type { FC } from "react"; +interface CopyFromOption { + id: string; + name: string; + teamName: string; + dbType: string; +} + interface DataSourceFormBodyProps { activeStep?: number; formState?: FormState; @@ -26,6 +38,8 @@ interface DataSourceFormBodyProps { onDataSourceSetupSubmit?: (data: DataSourceSetupForm) => void; onDataModelGenerationSubmit?: (data: DynamicForm) => void; onDataSourceSelect?: (value: DataSource) => void; + copyFromOptions?: CopyFromOption[]; + onCopyFrom?: (datasourceId: string) => void; } const DataSourceFormBody: FC = ({ @@ -39,6 +53,8 @@ const DataSourceFormBody: FC = ({ onDataSourceSetupSubmit = () => {}, onDataModelGenerationSubmit = () => {}, onDataSourceSelect = () => {}, + copyFromOptions = [], + onCopyFrom, }) => { const { step, @@ -49,6 +65,20 @@ const DataSourceFormBody: FC = ({ setStep, } = DataSourceStore(); + const { editId } = useParams(); + const { teamData } = CurrentUserStore(); + const [, setLocation] = useLocation(); + + const onSmartGenerate = useCallback(() => { + if (!editId || !teamData?.dataSources) return; + const ds = teamData.dataSources.find((d) => d.id === editId); + const activeBranch = ds?.branches?.find( + (b) => b.status === Branch_Statuses_Enum.Active + ); + if (!activeBranch) return; + setLocation(`${MODELS}/${editId}/${activeBranch.id}/smartgen`); + }, [editId, teamData, setLocation]); + const onGoBack = () => onChangeStep?.(step - 1) || setStep(step - 1); const onGoForward = () => onChangeStep?.(step + 1) || setStep(step + 1); @@ -76,6 +106,8 @@ const DataSourceFormBody: FC = ({ onSubmit={onDataSourceSelect} initialValue={curDataSource} options={dbTiles} + copyFromOptions={copyFromOptions} + onCopyFrom={onCopyFrom} /> ); case 1: @@ -116,6 +148,7 @@ const DataSourceFormBody: FC = ({ onSkip={onSkip || onGoForward} loading={loading} initialValue={formState?.step2 || formData?.step2 || {}} + onSmartGenerate={onSmartGenerate} /> ); case 3: @@ -136,6 +169,8 @@ const DataSourceFormBody: FC = ({ initialValue={curDataSource} options={dbTiles} onSkip={onSkip} + copyFromOptions={copyFromOptions} + onCopyFrom={onCopyFrom} /> ); }; diff --git a/src/components/DataSourceSelection/index.tsx b/src/components/DataSourceSelection/index.tsx index 1bb0a115..687b55db 100644 --- a/src/components/DataSourceSelection/index.tsx +++ b/src/components/DataSourceSelection/index.tsx @@ -1,4 +1,5 @@ -import { Col, Row, Typography } from "antd"; +import { Col, Divider, Row, Select, Space, Typography } from "antd"; +import { CopyOutlined } from "@ant-design/icons"; import { useTranslation } from "react-i18next"; import cn from "classnames"; import { useResponsive, useSize } from "ahooks"; @@ -18,11 +19,20 @@ const TILE_WIDTH = 103; const TILE_GAP = 8 * 2; const TILE_SIZE = TILE_WIDTH + TILE_GAP; +interface CopyFromOption { + id: string; + name: string; + teamName: string; + dbType: string; +} + interface DataSourceSelectionProps { options: DataSource[]; initialValue?: DataSource; onSkip?: () => void; onSubmit?: (option: DataSource) => void; + copyFromOptions?: CopyFromOption[]; + onCopyFrom?: (datasourceId: string) => void; } const DataSourceSelection: FC = ({ @@ -30,6 +40,8 @@ const DataSourceSelection: FC = ({ initialValue, onSkip, onSubmit, + copyFromOptions = [], + onCopyFrom, }) => { const { t } = useTranslation(["dataSourceSelecton", "common"]); const windowSize = useResponsive(); @@ -38,6 +50,7 @@ const DataSourceSelection: FC = ({ const tilesContainerSize = useSize(ref); const [keyword, setKeyword] = useState(""); + const [selectedCopyDs, setSelectedCopyDs] = useState(null); const tileWidth = useMemo(() => { if (tilesContainerSize?.width) { @@ -48,12 +61,56 @@ const DataSourceSelection: FC = ({ } }, [tilesContainerSize?.width]); + const handleCopy = () => { + if (selectedCopyDs && onCopyFrom) { + onCopyFrom(selectedCopyDs); + setSelectedCopyDs(null); + } + }; + return (
{t("title")} {t("text")} + + {copyFromOptions.length > 0 && onCopyFrom && ( + <> + + + {t("common:words.or", "or copy from another team")} + + + + = ({ placeholder={getPlaceholder(f.placeholder)} label={getLabel(f.label)} defaultValue={defaultValue} + options={f.options?.map((o) => ({ + label: o.label, + value: o.value, + }))} /> ); diff --git a/src/components/DataSourceTag/index.module.less b/src/components/DataSourceTag/index.module.less index ebc89a95..796d2065 100644 --- a/src/components/DataSourceTag/index.module.less +++ b/src/components/DataSourceTag/index.module.less @@ -5,7 +5,7 @@ padding: 5px 8px; font-weight: 600; font-size: 12px; - font-family: var(--font-manrope); + font-family: var(--font-inter); background: var(--color-white); border: 0.459px solid rgba(165, 165, 165, 0.5); border-radius: 6.737px; diff --git a/src/components/DataSourcesMenu/index.module.less b/src/components/DataSourcesMenu/index.module.less index e403c867..48f06870 100644 --- a/src/components/DataSourcesMenu/index.module.less +++ b/src/components/DataSourcesMenu/index.module.less @@ -6,10 +6,10 @@ padding: 16px; padding-right: 14px; overflow: hidden; - color: #470d69; + color: #3f6587; font-weight: 600; font-size: 14px; - font-family: var(--font-manrope); + font-family: var(--font-inter); text-wrap: nowrap; text-overflow: ellipsis; border-bottom: 1px solid rgba(0, 0, 0, 0.1); diff --git a/src/components/ExploreCubes/index.module.less b/src/components/ExploreCubes/index.module.less index 55f4328d..e0ae39be 100644 --- a/src/components/ExploreCubes/index.module.less +++ b/src/components/ExploreCubes/index.module.less @@ -40,11 +40,20 @@ } .panel :global(.ant-collapse-header):hover { - background: rgba(237, 231, 240, 0.5); + background: rgba(224, 234, 240, 0.5); } .collapse :global(.ant-collapse-item-active > .ant-collapse-header) { - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); +} + +.panelSelected :global(.ant-collapse-header) { + background: rgba(74, 127, 170, 0.15) !important; + border-left: 3px solid rgba(74, 127, 170, 0.7); +} + +.panelSelected :global(.ant-collapse-header):hover { + background: rgba(74, 127, 170, 0.2) !important; } .panel :global(.ant-collapse-item) { @@ -160,7 +169,7 @@ } span { - color: #a31bcb !important; + color: #4a7faa !important; font-weight: 700; } diff --git a/src/components/ExploreCubes/index.tsx b/src/components/ExploreCubes/index.tsx index 18ebaade..5b5513bd 100644 --- a/src/components/ExploreCubes/index.tsx +++ b/src/components/ExploreCubes/index.tsx @@ -21,7 +21,9 @@ interface ExploreCubesProps { toQuery?: (member: CubeMember) => any ) => { add: (member: CubeMember) => void; + addMany: (members: CubeMember[]) => void; remove: (member: CubeMember) => void; + removeMany: (members: CubeMember[]) => void; update: (member: CubeMember, newValue: any) => void; }; availableQueryMembers: Record< @@ -98,7 +100,10 @@ const ExploreCubes: FC = ({ {cube}
} - className={styles.panel} + className={cn( + styles.panel, + cubeSelectedCount > 0 && styles.panelSelected + )} extra={ = ({ memberFormatIcons?.[member?.format || ""] || memberTypeIcons?.[member?.type] || memberTypeIcons.default; + const isLookup = isLookupKeyDimension(member); + const isResolved = isResolvedDimension(member); return (
= ({
{icon}
{member.shortTitle} + {isLookup && ( + + + S + + + )} + {isResolved && ( + + + S + + + )}
+ catMembers.filter((member) => !member.granularity); + const Cube = ({ members, selectedMembers, @@ -199,13 +204,10 @@ const Cube = ({ ); }; - const getCategory = (category: string): ReactNode => { - let catMembers = getMembersCategory(category); - if (!catMembers.length) { - return null; - } + const expandCategoryMembers = (category: string): CubeMember[] => { + const catMembers = getMembersCategory(category); - catMembers = catMembers.reduce((acc: CubeMember[], member: CubeMember) => { + return catMembers.reduce((acc: CubeMember[], member: CubeMember) => { let newMembers = acc; if (member.type === "time") { @@ -216,6 +218,52 @@ const Cube = ({ } return newMembers; }, []); + }; + + const onSelectAllCategory = ( + category: string, + catMembers: CubeMember[], + e: CheckboxChangeEvent + ) => { + e.stopPropagation(); + + const selectableMembers = getSelectableMembers(catMembers); + const categoryCubeMembers = getSelectedCategoryMembers(category); + const selected = selectableMembers.filter((member) => + categoryCubeMembers.includes(member.name) + ); + const unselected = selectableMembers.filter( + (member) => !categoryCubeMembers.includes(member.name) + ); + + if (e.target.checked) { + if (unselected.length) { + onMemberSelect(category).addMany(unselected); + } + return; + } + + // Also clear any selected time granularities for this cube/category + const selectedInCategory = catMembers.filter((member) => + categoryCubeMembers.includes(member.name) + ); + const toRemove = selectedInCategory.length ? selectedInCategory : selected; + + if (toRemove.length) { + onMemberSelect(category).removeMany( + toRemove.map((member) => ({ + ...member, + index: membersIndex[member.name]?.index, + })) + ); + } + }; + + const getCategory = (category: string): ReactNode => { + const catMembers = expandCategoryMembers(category); + if (!catMembers.length) { + return null; + } const { subSections, freeMembers } = getSubSections( catMembers, @@ -223,13 +271,31 @@ const Cube = ({ ); const categoryCubeMembers = getSelectedCategoryMembers(category); + const selectableMembers = getSelectableMembers(catMembers); + const allSelected = + selectableMembers.length > 0 && + selectableMembers.every((member) => + categoryCubeMembers.includes(member.name) + ); const selectedFilters: string[] = Object.values( selectedMembers.filters || {} ).map((m) => m.dimension!.name); return (
- {t(`common:words.${category}`)} +
+ + {t(`common:words.${category}`)} + + onSelectAllCategory(category, catMembers, e)} + onClick={(e) => e.stopPropagation()} + > + {t("common:words.select_all")} + +
{freeMembers.map((member, index) => getItem( @@ -272,16 +338,20 @@ const Cube = ({ ); }; +interface MemberSelectApi { + add: (member: CubeMember) => void; + addMany: (members: CubeMember[]) => void; + remove: (member: CubeMember) => void; + removeMany: (members: CubeMember[]) => void; + update: (member: CubeMember, newValue: any) => void; +} + interface CubeProps { members: CubeMembers; onMemberSelect: ( memberType?: string, toQuery?: (member: CubeMember) => any - ) => { - add: (member: CubeMember) => void; - remove: (member: CubeMember) => void; - update: (member: CubeMember, newValue: any) => void; - }; + ) => MemberSelectApi; selectedMembers: Record; } diff --git a/src/components/ExploreDataSection/index.module.less b/src/components/ExploreDataSection/index.module.less index cc753b37..9ce6113e 100644 --- a/src/components/ExploreDataSection/index.module.less +++ b/src/components/ExploreDataSection/index.module.less @@ -1,6 +1,6 @@ .collapse { width: 100%; - overflow: hidden; + overflow: visible; } .header { @@ -25,22 +25,22 @@ .dataBtn { margin-right: 17px; - color: #a31bcb; - border-color: #a31bcb; + color: #4a7faa; + border-color: #4a7faa; } .settingsBtn { padding: 0; color: #000; &:hover { - color: #a31bcb !important; + color: #4a7faa !important; } } .csvBtn { width: 100%; margin-right: 8px; - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); border-color: transparent; &:hover { @@ -74,13 +74,13 @@ align-items: center; justify-content: center; width: 100% !important; - color: rgba(71, 13, 105, 1); - background: rgba(71, 13, 105, 0.1); + color: rgba(63, 101, 135, 1); + background: rgba(63, 101, 135, 0.1); border: 1px solid rgba(102, 112, 133, 0.1); box-shadow: none; &:hover { - border-color: rgba(71, 13, 105, 1); + border-color: rgba(63, 101, 135, 1); } } @@ -121,12 +121,40 @@ left: 20px; } +.runActions { + display: flex; + align-items: center; + gap: 8px; +} + +.queryTime { + color: rgba(0, 0, 0, 0.55); + font-size: 13px; + white-space: nowrap; +} + .run { display: flex; align-items: center; justify-content: center; - width: 100%; - background: #a31bcb; + background: #4a7faa; +} + +.reset { + display: flex; + align-items: center; + justify-content: center; + white-space: nowrap; + color: rgba(0, 0, 0, 0.85); + background: #fff; + border-color: #d9d9d9; + + &:hover, + &:focus { + color: rgba(0, 0, 0, 0.85) !important; + background: #fff !important; + border-color: #4a7faa !important; + } } .buttonGroup { @@ -155,7 +183,7 @@ } .buttonGroup :global(.ant-radio-button-wrapper-checked) { - background: rgba(163, 27, 203, 0.1); + background: rgba(74, 127, 170, 0.1); border-radius: 0; &::before { @@ -177,7 +205,7 @@ left: 50%; width: 100%; height: 3px; - background: #a31bcb; + background: #4a7faa; border-top-left-radius: 4px; border-top-right-radius: 4px; transform: translateX(-50%); @@ -209,12 +237,10 @@ font-size: 12px; } -.tableFooter { +.toolbarInfo { color: rgba(0, 0, 0, 0.5); -} - -.tableFooter { - margin-top: 16px; + font-size: 12px; + white-space: nowrap; } .wrapper { @@ -226,7 +252,19 @@ margin-top: calc(5%); } +.sqlHeaderRow { + display: flex; + align-items: center; + gap: 8px; + margin-bottom: 8px; +} + .sqlHeader { font-weight: 700; font-size: 14px; } + +.sqlCopy { + display: inline-flex; + align-items: center; +} diff --git a/src/components/ExploreDataSection/index.tsx b/src/components/ExploreDataSection/index.tsx index 9108031d..85321451 100644 --- a/src/components/ExploreDataSection/index.tsx +++ b/src/components/ExploreDataSection/index.tsx @@ -1,16 +1,18 @@ -import { Col, Divider, Radio, Row, Tooltip } from "antd"; -import { CSVLink } from "react-csv"; +import { Col, Divider, Dropdown, Radio, Row, Tooltip, message } from "antd"; +import { DownOutlined } from "@ant-design/icons"; import { useResponsive, useSetState } from "ahooks"; import { useTranslation } from "react-i18next"; import cn from "classnames"; +import { useEffect, useRef, useState } from "react"; import useAnalyticsQueryMembers from "@/hooks/useAnalyticsQueryMembers"; +import useFormatExport from "@/hooks/useFormatExport"; +import { hasPlaygroundSelection } from "@/hooks/useAnalyticsQuery"; import Button from "@/components/Button"; import VirtualTable, { cellRenderer } from "@/components/VirtualTable"; import PrismCode from "@/components/PrismCode"; import ComponentSwitcher from "@/components/ComponentSwitcher"; import RestAPI from "@/components/RestAPI"; -import genName from "@/utils/helpers/genName"; import type { DataSchemaFormValues } from "@/components/ExploreSettingsForm"; import ExploreSettingsForm from "@/components/ExploreSettingsForm"; import type { ExploreWorkspaceState } from "@/hooks/useExploreWorkspace"; @@ -24,6 +26,7 @@ import type { Branch, DataSourceInfo } from "@/types/dataSource"; import AlertIcon from "@/assets/alert.svg"; import ReportIcon from "@/assets/report.svg"; import ArrowIcon from "@/assets/arrow-small-right.svg"; +import CopyIcon from "@/assets/copy.svg"; import s from "./index.module.less"; @@ -32,6 +35,11 @@ import type { FC, ReactNode } from "react"; type SortUpdater = (nextSortBy: SortBySet[]) => void; +const formatQueryTime = (ms: number): string => { + if (ms < 1000) return `${Math.round(ms)} ms`; + return `${(ms / 1000).toFixed(2)} s`; +}; + interface ExploreDataSectionProps extends Omit { width?: number; height?: number; @@ -40,6 +48,8 @@ interface ExploreDataSectionProps extends Omit { onOpenModal: (type: string) => void; onExec: any; onQueryChange: (query: string, ...args: any) => void | SortUpdater; + onApplyQuery?: (state: PlaygroundState) => void; + onResetQuery?: () => void; disabled: boolean; playgroundState: PlaygroundState; dataSource?: DataSourceInfo; @@ -56,6 +66,7 @@ interface ExploreDataSectionProps extends Omit { emptyDesc?: ReactNode; className?: string; loading?: boolean; + explorationId?: string; } const ExploreDataSection: FC = (props) => { @@ -68,6 +79,8 @@ const ExploreDataSection: FC = (props) => { onOpenModal = () => {}, onExec = () => {}, onQueryChange = () => {}, + onApplyQuery, + onResetQuery, state: workspaceState, playgroundState, queryState, @@ -86,6 +99,34 @@ const ExploreDataSection: FC = (props) => { const [currState, updateState] = useSetState({ section: workspaceState?.dataSection || "sql", }); + const [queryTimeMs, setQueryTimeMs] = useState(null); + const queryStartedAt = useRef(null); + const wasLoading = useRef(false); + + const { exportData, isExporting } = useFormatExport({ + datasourceId: dataSource?.id, + branchId: currentBranch?.id || undefined, + query: playgroundState, + }); + + useEffect(() => { + if (loading) { + wasLoading.current = true; + return; + } + + if (wasLoading.current && queryStartedAt.current != null) { + setQueryTimeMs(performance.now() - queryStartedAt.current); + queryStartedAt.current = null; + wasLoading.current = false; + } + }, [loading]); + + const handleExec = () => { + queryStartedAt.current = performance.now(); + setQueryTimeMs(null); + onExec(); + }; // const formConfig = { // rows: { @@ -113,7 +154,7 @@ const ExploreDataSection: FC = (props) => { const { order, hitLimit, - limit = 1000, + limit = 100, error, rows, columns, @@ -219,13 +260,16 @@ const ExploreDataSection: FC = (props) => { className={s.table} settings={settings} rowHeight={rowHeight} - footer={(tableRows) => ( -
- {t("data_section.shown")}: {tableRows.length} / {limit},{" "} + toolbarExtra={ + + {t("data_section.shown")}: {rows.length} / {limit},{" "} {t("data_section.offset")}: {offset}, {t("data_section.columns")}:{" "} {columns.length} -
- )} + {queryTimeMs != null && !loading && ( + <>, Query time: {formatQueryTime(queryTimeMs)} + )} + + } /> ); }, [ @@ -245,6 +289,7 @@ const ExploreDataSection: FC = (props) => { onQueryChange, settings, rowHeight, + queryTimeMs, t, limit, empty, @@ -261,7 +306,22 @@ const ExploreDataSection: FC = (props) => { return ( <> - {t("SQL")} +
+ {t("SQL")} + +
= (props) => { ); }, [empty, queryState, t]); + const hasSelection = hasPlaygroundSelection(playgroundState); + const RestApi = useMemo(() => { if (dataSource?.id && currentBranch?.id) { return ( @@ -278,10 +340,22 @@ const ExploreDataSection: FC = (props) => { dataSourceId={dataSource.id} branchId={currentBranch.id} playgroundState={playgroundState} + onApplyQuery={(nextState) => { + onApplyQuery?.(nextState); + updateState({ section: "results" }); + onSectionChange("results"); + }} /> ); } - }, [currentBranch?.id, dataSource?.id, playgroundState]); + }, [ + currentBranch?.id, + dataSource?.id, + onApplyQuery, + onSectionChange, + playgroundState, + updateState, + ]); const onChange = (values: Partial) => { if (values.limit !== limit) { @@ -299,17 +373,34 @@ const ExploreDataSection: FC = (props) => {
- +
+ + {onResetQuery && ( + + )} + {queryTimeMs != null && !loading && ( + + Query time: {formatQueryTime(queryTimeMs)} + + )} +
= (props) => {
- + + exportData(key as "json" | "csv" | "jsonstat" | "arrow"), + }} + disabled={disableButtons || !dataSource?.id || isExporting} + > - + diff --git a/src/components/ExploreFiltersSection/index.module.less b/src/components/ExploreFiltersSection/index.module.less index 6258a76a..96f08b04 100644 --- a/src/components/ExploreFiltersSection/index.module.less +++ b/src/components/ExploreFiltersSection/index.module.less @@ -37,8 +37,8 @@ .filters { height: auto; padding: 6px; - color: #a31bcb; - border-color: #a31bcb; + color: #4a7faa; + border-color: #4a7faa; * { font-weight: 700 !important; font-size: 12px !important; diff --git a/src/components/ExploreFiltersSection/index.tsx b/src/components/ExploreFiltersSection/index.tsx index f66f893a..8b8be004 100644 --- a/src/components/ExploreFiltersSection/index.tsx +++ b/src/components/ExploreFiltersSection/index.tsx @@ -80,7 +80,7 @@ const ExploreFiltersSection: FC = (props) => { = ({ { + requiredParams: CubeMember[]; + selectorValues: Record; + onSelectorChange: (dimensionName: string, value: string) => void; + onToggleSection: (section: string) => void; + isActive?: boolean; +} + +const { Panel } = Collapse; + +const ExploreSelectorsSection: FC = ({ + requiredParams, + selectorValues, + onSelectorChange, + onToggleSection = () => {}, + isActive = false, + ...restProps +}) => { + const { t } = useTranslation(); + + if (requiredParams.length === 0) return null; + + return ( + + + + +
+ } + showArrow={false} + key="selectorsSec" + > +
+ {requiredParams.map((param) => { + const knownValues: string[] = Array.isArray( + param.meta?.known_values + ) + ? param.meta.known_values + : []; + const currentValue = selectorValues[param.name] || ""; + + return ( +
+ + {param.shortTitle || param.title} + + +
+ ); + })} +
+ + + ); +}; + +export default ExploreSelectorsSection; diff --git a/src/components/ExploreSettingsForm/index.tsx b/src/components/ExploreSettingsForm/index.tsx index 2d938e60..fe6c74a6 100644 --- a/src/components/ExploreSettingsForm/index.tsx +++ b/src/components/ExploreSettingsForm/index.tsx @@ -3,6 +3,7 @@ import { useTranslation } from "react-i18next"; import { useForm } from "react-hook-form"; import cn from "classnames"; import { useResponsive } from "ahooks"; +import { useEffect } from "react"; import Input from "@/components/Input"; @@ -10,8 +11,6 @@ import s from "./index.module.less"; import type { FC } from "react"; -const MAX_ROWS_LIMIT = 10000; - export interface DataSchemaFormValues { limit: number; offset: number; @@ -24,7 +23,7 @@ interface ExploreSettingsFormProps { const ExploreSettingsForm: FC = ({ defaultValues = { - limit: 1000, + limit: 100, offset: 0, } as DataSchemaFormValues, onChange, @@ -33,10 +32,17 @@ const ExploreSettingsForm: FC = ({ const windowSize = useResponsive(); const isMobile = windowSize.lg === false; - const { control, watch } = useForm({ + const { control, watch, reset } = useForm({ defaultValues, }); + useEffect(() => { + reset({ + limit: defaultValues.limit, + offset: defaultValues.offset, + }); + }, [defaultValues.limit, defaultValues.offset, reset]); + useEffect(() => { const { unsubscribe } = watch((value) => { onChange(value); @@ -60,7 +66,6 @@ const ExploreSettingsForm: FC = ({ size="middle" min={1} addonAfter={null} - max={MAX_ROWS_LIMIT} control={control} addonBefore={t("data_section.row_limit")} /> diff --git a/src/components/ExploreWorkspace/index.tsx b/src/components/ExploreWorkspace/index.tsx index ec4b3979..77dabd1c 100644 --- a/src/components/ExploreWorkspace/index.tsx +++ b/src/components/ExploreWorkspace/index.tsx @@ -1,5 +1,5 @@ -import { Spin } from "antd"; -import { useTranslation } from "react-i18next"; +import { Spin, message } from "antd"; +import { useCallback, useMemo } from "react"; import SidebarLayout from "@/layouts/SidebarLayout"; import ExploreDataSection from "@/components/ExploreDataSection"; @@ -16,6 +16,7 @@ import type { Branch, DataSourceInfo } from "@/types/dataSource"; import type { QuerySettings } from "@/types/querySettings"; import type { ExplorationData, RawSql } from "@/types/exploration"; import ExploreSegmentsSection from "@/components/ExploreSegmentsSection"; +import ExploreSelectorsSection from "@/components/ExploreSelectorsSection"; import type { Meta } from "@/types/cube"; import { SOURCES } from "@/utils/constants/paths"; @@ -59,7 +60,6 @@ const ExploreWorkspace: FC = (props) => { icon, } = props; - const { t } = useTranslation(["common"]); const [location, setLocation] = useLocation(); const { screenshotMode } = location?.query || {}; const isScreenshotMode = screenshotMode !== undefined; @@ -82,9 +82,12 @@ const ExploreWorkspace: FC = (props) => { setOffset, setPage, setOrderBy, + doReset, }, settings, dispatchSettings, + selectors, + clearSelection, } = usePlayground({ explorationData, meta: meta.data, @@ -96,21 +99,57 @@ const ExploreWorkspace: FC = (props) => { selectedQueryMembers, }); + const handleClearSelection = useCallback(() => { + clearSelection(); + message.success("Selection cleared"); + }, [clearSelection]); + const tableHeight = useMemo( () => DEFAULT_ROW_HEIGHT * explorationState.rows.length + DEFAULT_HEADER_HEIGHT, [explorationState.rows.length] ); + // Merge selector filters into a filters array, replacing any existing + // filters for the same dimension to avoid duplicates on re-run. + const mergeSelectorsIntoFilters = useCallback( + (filters: any[]) => { + if (selectors.selectorFilters.length === 0) return filters; + const selectorDims = new Set( + selectors.selectorFilters.map((f) => f.dimension) + ); + const cleaned = (filters || []).filter( + (f: any) => !selectorDims.has(f.dimension) + ); + return [...cleaned, ...selectors.selectorFilters]; + }, + [selectors.selectorFilters] + ); + + // Playground state with selector filters merged in — used for REST API preview + const playgroundStateWithSelectors = useMemo(() => { + if (selectors.selectorFilters.length === 0) return playgroundState; + return { + ...playgroundState, + filters: mergeSelectorsIntoFilters(playgroundState.filters), + }; + }, [playgroundState, selectors.selectorFilters, mergeSelectorsIntoFilters]); + const onRunQuery = useCallback( (e?: Event) => { - const curExplorationState = pickKeys(queryStateKeys, playgroundState); + const curExplorationState: Record = pickKeys( + queryStateKeys, + playgroundState + ); + curExplorationState.filters = mergeSelectorsIntoFilters( + curExplorationState.filters + ); runQuery(curExplorationState, settings); e?.preventDefault(); e?.stopPropagation(); }, - [playgroundState, runQuery, settings] + [playgroundState, runQuery, settings, selectors.selectorFilters] ); const onQueryChange = useCallback( @@ -154,13 +193,16 @@ const ExploreWorkspace: FC = (props) => { currentBranch={currentBranch} onExec={onRunQuery} onQueryChange={onQueryChange} + onApplyQuery={doReset} + onResetQuery={handleClearSelection} onOpenModal={onOpenModal} disabled={!isQueryChanged} state={state} loading={loading} - playgroundState={playgroundState} + playgroundState={playgroundStateWithSelectors} queryState={explorationState} disableButtons={!explorationData?.exploration?.id} + explorationId={explorationData?.exploration?.id} screenshotMode={isScreenshotMode} rowHeight={DEFAULT_ROW_HEIGHT} onToggleSection={onToggleSection} @@ -190,6 +232,8 @@ const ExploreWorkspace: FC = (props) => { const Layout = !!!dataSources?.length ? AppLayout : SidebarLayout; const showFiltersSection = !!state.filtersCount && state.dataSection === "results"; + const showSelectorsSection = + selectors.requiredParams.length > 0 && state.dataSection === "results"; return ( = (props) => { isActive={collapseState.activePanelKey.includes("segmentsSec")} /> )} + {showSelectorsSection && ( + + )} {showFiltersSection && ( {
- © 2023 Synmetrix. All rights reserved. + © 2024 FraiOS. All rights reserved.
@@ -34,9 +34,9 @@ const Footer: React.FC = () => { - hello@synmetrix.org + hello@fraios.com
diff --git a/src/components/FormTile/index.module.less b/src/components/FormTile/index.module.less index 2fb4e7ce..05c950af 100644 --- a/src/components/FormTile/index.module.less +++ b/src/components/FormTile/index.module.less @@ -32,7 +32,7 @@ transition: border-color 0.1s linear; &.active { - border-color: #a31bcb; + border-color: #4a7faa; } } @@ -44,11 +44,11 @@ .title { color: inherit; font-weight: 700; - font-family: var(--font-manrope); + font-family: var(--font-inter); transition: color 0.1s linear; &.active { - color: #a31bcb; + color: #4a7faa; } } diff --git a/src/components/FormTile/index.tsx b/src/components/FormTile/index.tsx index b283ff04..5a344848 100644 --- a/src/components/FormTile/index.tsx +++ b/src/components/FormTile/index.tsx @@ -1,4 +1,4 @@ -import { Card } from "antd"; +import { Card, Tag } from "antd"; import cn from "classnames"; import styles from "./index.module.less"; @@ -11,6 +11,7 @@ interface FormTileProps { icon: ReactNode; onClick?: (title: string) => void; active?: boolean; + deprecated?: boolean; } const FormTile: FC = ({ @@ -19,6 +20,7 @@ const FormTile: FC = ({ icon, onClick, active = false, + deprecated = false, }) => { return (
@@ -29,6 +31,22 @@ const FormTile: FC = ({ onClick={() => onClick?.(title)} hoverable > + {deprecated && ( + + Deprecated + + )}
void; + disabled?: boolean; } const { Title } = Typography; @@ -25,6 +26,7 @@ const { Title } = Typography; const GeneralInfoForm: FC = ({ initialValue, onSubmit, + disabled = false, }) => { const { t } = useTranslation(["settings", "common"]); @@ -42,10 +44,11 @@ const GeneralInfoForm: FC = ({ @@ -54,24 +57,31 @@ const GeneralInfoForm: FC = ({ label={t("common:form.labels.email")} placeholder={t("common:form.placeholders.email")} control={control} - rules={{ - required: true, - validate: (v: string) => - validate.email(v) || t("common:form.errors.email"), - }} + rules={ + disabled + ? {} + : { + required: true, + validate: (v: string) => + validate.email(v) || t("common:form.errors.email"), + } + } name="email" + disabled={disabled} /> - + {!disabled && ( + + )} ); }; diff --git a/src/components/Header/index.module.less b/src/components/Header/index.module.less index 6b736a3e..f029260a 100644 --- a/src/components/Header/index.module.less +++ b/src/components/Header/index.module.less @@ -3,7 +3,9 @@ max-height: 60px; padding: 0 16px; line-height: 60px; - background: var(--color-white); + background: rgba(255, 255, 255, 0.6); + backdrop-filter: blur(12px); + -webkit-backdrop-filter: blur(12px); &.mobile { padding: 0 10px; @@ -11,7 +13,7 @@ } .headerBordered { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); + border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .root { diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index 6f2c7209..d83784df 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -2,7 +2,7 @@ import { Layout, Row, Col, Typography } from "antd"; import { useResponsive } from "ahooks"; import cx from "classnames"; -import logo from "@/assets/logo_with_text.png"; +const logo = "/FraioS-logo-lighttheme.svg"; import styles from "./index.module.less"; diff --git a/src/components/Input/index.module.less b/src/components/Input/index.module.less index 30d6b176..08047e6c 100644 --- a/src/components/Input/index.module.less +++ b/src/components/Input/index.module.less @@ -18,7 +18,7 @@ color: var(--color-error); font-weight: 400; font-size: 12px; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .radioError span { @@ -36,6 +36,6 @@ .filledDate { ::placeholder { - color: #a31bcb !important; + color: #4a7faa !important; } } diff --git a/src/components/Input/index.tsx b/src/components/Input/index.tsx index 2261d1ea..205236dc 100644 --- a/src/components/Input/index.tsx +++ b/src/components/Input/index.tsx @@ -128,26 +128,55 @@ const Input: (props: InputProps) => JSX.Element = ({ render={({ field: { value, onChange }, fieldState: { invalid, error }, - }) => ( - - onChange(e.fileList as any)} - > - - - {error?.message} - - )} + + + {error?.message} + + ); + }} /> ); case "radio": diff --git a/src/components/LanguageToggler/index.module.less b/src/components/LanguageToggler/index.module.less index 53719ea0..4f350bd1 100644 --- a/src/components/LanguageToggler/index.module.less +++ b/src/components/LanguageToggler/index.module.less @@ -4,7 +4,7 @@ font-weight: 600; font-size: 14px; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .dropdownContainer { diff --git a/src/components/LogoutSessions/index.module.less b/src/components/LogoutSessions/index.module.less index a5ee9cca..941813a3 100644 --- a/src/components/LogoutSessions/index.module.less +++ b/src/components/LogoutSessions/index.module.less @@ -1,10 +1,10 @@ .title { margin-bottom: 25px; font-weight: 700; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .btn { color: var(--color-primary); - background: rgba(163, 27, 203, 0.1); + background: rgba(74, 127, 170, 0.1); } diff --git a/src/components/MembersTable/index.module.less b/src/components/MembersTable/index.module.less index 89379398..0a23219b 100644 --- a/src/components/MembersTable/index.module.less +++ b/src/components/MembersTable/index.module.less @@ -14,7 +14,7 @@ .cell { color: #808080; font-size: 14px; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .memberName { diff --git a/src/components/Modal/index.module.less b/src/components/Modal/index.module.less index 12032dd3..9a1ece1d 100644 --- a/src/components/Modal/index.module.less +++ b/src/components/Modal/index.module.less @@ -16,4 +16,5 @@ position: absolute; top: -15px; right: -60px; + filter: brightness(0.45) saturate(1.15); } diff --git a/src/components/ModelsSidebar/index.module.less b/src/components/ModelsSidebar/index.module.less index fc17d53b..83116ca4 100644 --- a/src/components/ModelsSidebar/index.module.less +++ b/src/components/ModelsSidebar/index.module.less @@ -40,14 +40,14 @@ } .docsLink { - color: #a31bcb; + color: #4a7faa; } .default { - color: #470d69; + color: #3f6587; font-weight: 700; font-size: 12px; - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); border-color: transparent; &:hover { border-color: inherit; @@ -88,7 +88,7 @@ cursor: pointer; transition: background 0.25s ease-in-out; &:hover { - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); .fileControls { opacity: 1; @@ -96,6 +96,15 @@ } } +.fileBtnActive { + background: rgba(74, 127, 170, 0.15); + border-left: 3px solid rgba(74, 127, 170, 0.7); + + .fileControls { + opacity: 1; + } +} + .fileControls { opacity: 0; transition: 0.25s ease-in-out; @@ -127,10 +136,10 @@ .fileControl { padding: 0 !important; - color: rgba(#a31bcb, 0.4); + color: rgba(#4a7faa, 0.65); &:hover { - color: #a31bcb !important; + color: #4a7faa !important; } } @@ -151,8 +160,8 @@ &:hover { color: black; - background: rgba(163, 27, 203, 0.1) !important; - stroke: rgba(163, 27, 203, 1); + background: rgba(74, 127, 170, 0.1) !important; + stroke: rgba(74, 127, 170, 1); } } diff --git a/src/components/ModelsSidebar/index.tsx b/src/components/ModelsSidebar/index.tsx index 2db60352..9084def6 100644 --- a/src/components/ModelsSidebar/index.tsx +++ b/src/components/ModelsSidebar/index.tsx @@ -46,6 +46,7 @@ export interface ModelsSidebarProps { editFile: Partial ) => void; onCreateFile: (values: Partial) => void; + activeFile?: string | null; dataSources: DataSourceInfo[]; onDataSourceChange: (dataSource: DataSourceInfo | null) => void; versionsCount?: number; @@ -73,6 +74,7 @@ const ModelsSidebar: FC = ({ onDeleteBranch, onSchemaDelete, onSchemaUpdate, + activeFile, dataSources, onDataSourceChange, dataSourceId, @@ -195,17 +197,20 @@ const ModelsSidebar: FC = ({ return (
onSelectFile(f.name)} > - - + + {icons[f.name.split(".")[1] as keyof typeof icons]}{" "} {f.name} = ({ const { t } = useTranslation(["common"]); const onSelectTeam = (id: string) => { + const isSwitch = currentTeam?.id && currentTeam.id !== id; setCurrentTeam(id); setTeamsOpen(false); + if (isSwitch) { + // Stay on the same page section but strip team-scoped URL params + // (datasource IDs, model IDs, exploration IDs, etc.) + const basePath = stripTeamScopedParams(window.location.pathname); + if (basePath !== window.location.pathname) { + setLocation(basePath); + } + } }; const onClick = (href: string) => { @@ -62,7 +107,7 @@ const Navbar: FC = ({ const docs = ( + )} +
+ ); + } + return (
diff --git a/src/components/PageHeader/index.module.less b/src/components/PageHeader/index.module.less index 1ce510a3..be59d8eb 100644 --- a/src/components/PageHeader/index.module.less +++ b/src/components/PageHeader/index.module.less @@ -4,10 +4,10 @@ } .action { - color: #470d69; + color: #3f6587; font-weight: 700; font-size: 12px; - background: rgba(71, 13, 105, 0.1); + background: rgba(63, 101, 135, 0.1); border-color: transparent; &:hover { border-color: inherit; diff --git a/src/components/PlaygroundFilterGroup/index.tsx b/src/components/PlaygroundFilterGroup/index.tsx index b5e25866..b988688b 100644 --- a/src/components/PlaygroundFilterGroup/index.tsx +++ b/src/components/PlaygroundFilterGroup/index.tsx @@ -32,7 +32,7 @@ const FilterGroup: FC = ({ { trackEvent("Update Member", { memberName: addMemberName }); if (dimension) updateMethods.update(m, { ...m, dimension }); @@ -54,7 +54,7 @@ const FilterGroup: FC = ({ diff --git a/src/components/PlaygroundFilterInput/index.tsx b/src/components/PlaygroundFilterInput/index.tsx index e2ae061d..751897ca 100644 --- a/src/components/PlaygroundFilterInput/index.tsx +++ b/src/components/PlaygroundFilterInput/index.tsx @@ -58,6 +58,19 @@ const filterInputs = { value={(values && values[0]) || ""} /> ), + boolean: ({ values, onChange }: PlaygroundFilterInputProps) => ( + onChange(data.find((d) => d.name === val))} - placeholder={t("filters.filter_name")} - size="large" - suffixIcon={} - > - {data.map((d) => ( - - {d.title} - - ))} - + + + ); }; diff --git a/src/components/PrismCode/index.tsx b/src/components/PrismCode/index.tsx index 6f3e4fd0..89f6bcaa 100644 --- a/src/components/PrismCode/index.tsx +++ b/src/components/PrismCode/index.tsx @@ -1,12 +1,46 @@ import { Empty, Typography } from "antd"; -import { highlight, languages } from "prismjs"; -import "prismjs/components/prism-sql"; +import Prism from "prismjs"; import "prismjs/themes/prism-solarizedlight.css"; import s from "./index.module.less"; import type { FC } from "react"; +// prism-sql.js uses bare `Prism` global which breaks under Rolldown (Vite 8). +// Register the SQL grammar directly on the module-imported Prism instance. +if (!Prism.languages.sql) { + Prism.languages.sql = { + comment: { + pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:--|\/\/|#).*)/, + lookbehind: true, + }, + variable: [ + { pattern: /@(["'`])(?:\\[\s\S]|(?!\1)[^\\])+\1/, greedy: true }, + /@[\w.$]+/, + ], + string: { + pattern: /(^|[^@\\])("|')(?:\\[\s\S]|(?!\2)[^\\]|\2\2)*\2/, + greedy: true, + lookbehind: true, + }, + identifier: { + pattern: /(^|[^@\\])`(?:\\[\s\S]|[^`\\]|``)*`/, + greedy: true, + lookbehind: true, + inside: { punctuation: /^`|`$/ }, + }, + function: + /\b(?:AVG|COUNT|FIRST|FORMAT|LAST|LCASE|LEN|MAX|MID|MIN|MOD|NOW|ROUND|SUM|UCASE)(?=\s*\()/i, + keyword: + /\b(?:ACTION|ADD|AFTER|ALGORITHM|ALL|ALTER|ANALYZE|ANY|APPLY|AS|ASC|AUTHORIZATION|AUTO_INCREMENT|BACKUP|BDB|BEGIN|BERKELEYDB|BIGINT|BINARY|BIT|BLOB|BOOL|BOOLEAN|BREAK|BROWSE|BTREE|BULK|BY|CALL|CASCADED?|CASE|CHAIN|CHAR(?:ACTER|SET)?|CHECK(?:POINT)?|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMNS?|COMMENT|COMMIT(?:TED)?|COMPUTE|CONNECT|CONSISTENT|CONSTRAINT|CONTAINS(?:TABLE)?|CONTINUE|CONVERT|CREATE|CROSS|CURRENT(?:_DATE|_TIME|_TIMESTAMP|_USER)?|CURSOR|CYCLE|DATA(?:BASES?)?|DATE(?:TIME)?|DAY|DBCC|DEALLOCATE|DEC|DECIMAL|DECLARE|DEFAULT|DEFINER|DELAYED|DELETE|DELIMITERS?|DENY|DESC|DESCRIBE|DETERMINISTIC|DISABLE|DISCARD|DISK|DISTINCT|DISTINCTROW|DISTRIBUTED|DO|DOUBLE|DROP|DUMMY|DUMP(?:FILE)?|DUPLICATE|ELSE(?:IF)?|ENABLE|ENCLOSED|END|ENGINE|ENUM|ERRLVL|ERRORS|ESCAPED?|EXCEPT|EXEC(?:UTE)?|EXISTS|EXIT|EXPLAIN|EXTENDED|FETCH|FIELDS|FILE|FILLFACTOR|FIRST|FIXED|FLOAT|FOLLOWING|FOR(?: EACH ROW)?|FORCE|FOREIGN|FREETEXT(?:TABLE)?|FROM|FULL|FUNCTION|GEOMETRY(?:COLLECTION)?|GLOBAL|GOTO|GRANT|GROUP|HANDLER|HASH|HAVING|HOLDLOCK|HOUR|IDENTITY(?:COL|_INSERT)?|IF|IGNORE|IMPORT|INDEX|INFILE|INNER|INNODB|INOUT|INSERT|INT|INTEGER|INTERSECT|INTERVAL|INTO|INVOKER|ISOLATION|ITERATE|JOIN|KEYS?|KILL|LANGUAGE|LAST|LEAVE|LEFT|LEVEL|LIMIT|LINENO|LINES|LINESTRING|LOAD|LOCAL|LOCK|LONG(?:BLOB|TEXT)|LOOP|MATCH(?:ED)?|MEDIUM(?:BLOB|INT|TEXT)|MERGE|MIDDLEINT|MINUTE|MODE|MODIFIES|MODIFY|MONTH|MULTI(?:LINESTRING|POINT|POLYGON)|NATIONAL|NATURAL|NCHAR|NEXT|NO|NONCLUSTERED|NULLIF|NUMERIC|OFF?|OFFSETS?|ON|OPEN(?:DATASOURCE|QUERY|ROWSET)?|OPTIMIZE|OPTION(?:ALLY)?|ORDER|OUT(?:ER|FILE)?|OVER|PARTIAL|PARTITION|PERCENT|PIVOT|PLAN|POINT|POLYGON|PRECEDING|PRECISION|PREPARE|PREV|PRIMARY|PRINT|PRIVILEGES|PROC(?:EDURE)?|PUBLIC|PURGE|QUICK|RAISERROR|READS?|REAL|RECONFIGURE|REFERENCES|RELEASE|RENAME|REPEAT(?:ABLE)?|REPLACE|REPLICATION|REQUIRE|RESIGNAL|RESTORE|RESTRICT|RETURN(?:ING|S)?|REVOKE|RIGHT|ROLLBACK|ROUTINE|ROW(?:COUNT|GUIDCOL|S)?|RTREE|RULE|SAVE(?:POINT)?|SCHEMA|SECOND|SELECT|SERIAL(?:IZABLE)?|SESSION(?:_USER)?|SET(?:USER)?|SHARE|SHOW|SHUTDOWN|SIMPLE|SMALLINT|SNAPSHOT|SOME|SONAME|SQL|START(?:ING)?|STATISTICS|STATUS|STRIPED|SYSTEM_USER|TABLES?|TABLESPACE|TEMP(?:ORARY|TABLE)?|TERMINATED|TEXT(?:SIZE)?|THEN|TIME(?:STAMP)?|TINY(?:BLOB|INT|TEXT)|TOP?|TRAN(?:SACTIONS?)?|TRIGGER|TRUNCATE|TSEQUAL|TYPES?|UNBOUNDED|UNCOMMITTED|UNDEFINED|UNION|UNIQUE|UNLOCK|UNPIVOT|UNSIGNED|UPDATE(?:TEXT)?|USAGE|USE|USER|USING|VALUES?|VAR(?:BINARY|CHAR|CHARACTER|YING)|VIEW|WAITFOR|WARNINGS|WHEN|WHERE|WHILE|WITH(?: ROLLUP|IN)?|WORK|WRITE(?:TEXT)?|YEAR)\b/i, + boolean: /\b(?:FALSE|NULL|TRUE)\b/i, + number: /\b0x[\da-f]+\b|\b\d+(?:\.\d*)?|\B\.\d+\b/i, + operator: + /[-+*\/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?|\b(?:AND|BETWEEN|DIV|ILIKE|IN|IS|LIKE|NOT|OR|REGEXP|RLIKE|SOUNDS LIKE|XOR)\b/i, + punctuation: /[;[\]()`,.]/, + }; +} + interface PrismCodeProps { code: string; lang: string; @@ -19,7 +53,7 @@ const PrismCode: FC = ({ code, lang = "sql", style }) => { const [htmlContent, setContent] = useState(""); useEffect(() => { - const html = highlight(code, languages[lang], lang); + const html = Prism.highlight(code, Prism.languages[lang], lang); setContent(html); }, [code, lang]); @@ -32,11 +66,7 @@ const PrismCode: FC = ({ code, lang = "sql", style }) => { return (
-        
+        
           
= ({
= ({ validate: validate.cronExp, }} starPosition="left" - starColor="#A31BCB" + starColor="#4a7faa" label={ {t("schedule")} ( diff --git a/src/components/RequestInfo/index.module.less b/src/components/RequestInfo/index.module.less index 04e19af9..c8ca83d1 100644 --- a/src/components/RequestInfo/index.module.less +++ b/src/components/RequestInfo/index.module.less @@ -1,6 +1,6 @@ .item { padding: 10px 5px; - color: #a31bcb; + color: #4a7faa; font-weight: 600; background: #f9f9f9; border-radius: 6px; diff --git a/src/components/RestAPI/index.module.less b/src/components/RestAPI/index.module.less index cfaa2ed4..022fd12d 100644 --- a/src/components/RestAPI/index.module.less +++ b/src/components/RestAPI/index.module.less @@ -40,7 +40,7 @@ } .copy { - color: #470d69; + color: #3f6587; cursor: pointer; &:hover { @@ -67,8 +67,21 @@ position: relative; } +.bodyHeader { + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; + margin-bottom: 8px; +} + +.bodyLabel { + font-weight: 700; + font-size: 14px; +} + .textAreaCopy { position: absolute; - top: 40px; + top: 48px; right: 20px; } diff --git a/src/components/RestAPI/index.test.tsx b/src/components/RestAPI/index.test.tsx index daa6e0a9..cea12d3a 100644 --- a/src/components/RestAPI/index.test.tsx +++ b/src/components/RestAPI/index.test.tsx @@ -1,15 +1,22 @@ -import { describe, test, expect, vi } from "vitest"; +import { describe, test, expect, vi, beforeEach } from "vitest"; import { render, screen, fireEvent, waitFor } from "@testing-library/react"; +import { tableFromArrays, tableToIPC } from "apache-arrow"; import RestAPI from "./"; -import type { Mock } from "vitest"; - -vi.spyOn(window, "fetch").mockImplementation( - vi.fn(() => Promise.resolve({ json: () => "error" })) as Mock -); - describe("RestAPI", () => { + beforeEach(() => { + vi.restoreAllMocks(); + vi.spyOn(window, "fetch").mockResolvedValue( + new Response(JSON.stringify({ error: "error" }), { + status: 200, + headers: { + "Content-Type": "application/json", + }, + }) + ); + }); + test("renders RestAPI component", () => { render(); const restApiElement = screen.getByTestId("rest-api"); @@ -21,9 +28,44 @@ describe("RestAPI", () => { const submitButton = screen.getByText("common:words.send_request"); fireEvent.click(submitButton); - waitFor(() => { + await waitFor(() => { const responseElement = screen.getByTestId("response"); expect(responseElement).toBeInTheDocument(); }); }); + + test("decodes arrow responses into schema and preview rows", async () => { + const table = tableFromArrays({ + sales: [12, 18], + region: ["US", "EU"], + }); + const payload = tableToIPC(table, "stream"); + + vi.spyOn(window, "fetch").mockResolvedValueOnce( + new Response(payload, { + status: 200, + headers: { + "Content-Type": "application/vnd.apache.arrow.stream", + "Content-Disposition": 'attachment; filename="query-result.arrow"', + }, + }) + ); + + render(); + + fireEvent.mouseDown(screen.getByRole("combobox")); + fireEvent.click(screen.getByText("Arrow")); + fireEvent.click(screen.getByText("common:words.send_request")); + + await waitFor(() => { + expect(screen.getByDisplayValue(/"rowCount": 2/)).toBeInTheDocument(); + }); + + expect( + screen.getByDisplayValue(/"fileName": "query-result\.arrow"/) + ).toBeInTheDocument(); + expect(screen.getByDisplayValue(/"previewRows": \[/)).toBeInTheDocument(); + expect(screen.getByDisplayValue(/"sales": 12/)).toBeInTheDocument(); + expect(screen.getByDisplayValue(/"region": "US"/)).toBeInTheDocument(); + }); }); diff --git a/src/components/RestAPI/index.tsx b/src/components/RestAPI/index.tsx index 8f5546e3..c6275cb3 100644 --- a/src/components/RestAPI/index.tsx +++ b/src/components/RestAPI/index.tsx @@ -1,13 +1,15 @@ -import { Spin, Col, Form, Row, Space } from "antd"; +import { Radio, Select, Spin, Col, Form, Row, Space, message } from "antd"; import { useTranslation } from "react-i18next"; import { useForm } from "react-hook-form"; import cn from "classnames"; +import { tableFromIPC } from "apache-arrow"; import Input from "@/components/Input"; import InfoBlock from "@/components/InfoBlock"; import Button from "@/components/Button"; import AuthTokensStore from "@/stores/AuthTokensStore"; import validations from "@/utils/helpers/validations"; +import { parseRestBodyToPlaygroundState } from "@/utils/helpers/parseRestBodyToPlaygroundState"; import type { PlaygroundState } from "@/types/exploration"; import type { SortBy } from "@/types/sort"; @@ -17,6 +19,8 @@ import styles from "./index.module.less"; import type { FC } from "react"; +type OutputFormat = "json" | "csv" | "jsonstat" | "arrow"; + const CUBEJS_REST_API_URL = window.CUBEJS_REST_API_URL !== undefined ? window.CUBEJS_REST_API_URL @@ -31,6 +35,7 @@ interface RestApiProps { dataSourceId: string; branchId: string; playgroundState: PlaygroundState; + onApplyQuery?: (state: PlaygroundState) => void; } interface RestApiState { @@ -43,79 +48,359 @@ interface ApiResponse { progress?: any; } +interface BinaryResponseSummary { + contentType: string; + fileName: string | null; + sizeBytes: number; +} + const defaultState = { loading: false, }; const normalizeOrders = (orders: SortBy[]) => { - return (orders || []).reduce( - (acc, cur) => ({ ...acc, [cur.id]: cur.desc ? "desc" : "asc" }), - {} + // Drop the "no order selected" placeholder the query builder emits + // (`emptyCube.emptyKey`). The legacy Cube planner silently ignored the + // unresolvable member; the Tesseract planner rejects it with + // "Cannot resolve: emptyCube", which 500s the query. + return (orders || []) + .filter((cur) => cur.id && cur.id !== "emptyCube.emptyKey") + .reduce( + (acc, cur) => ({ ...acc, [cur.id]: cur.desc ? "desc" : "asc" }), + {} + ); +}; + +const FORMAT_OPTIONS = [ + { value: "json", label: "JSON" }, + { value: "csv", label: "CSV" }, + { value: "arrow", label: "Arrow" }, + { value: "jsonstat", label: "JSON-Stat" }, +]; + +const ARROW_CONTENT_TYPE = "application/vnd.apache.arrow.stream"; +const ARROW_FIELD_MAPPING_HEADER = "x-synmetrix-arrow-field-mapping"; +const ARROW_FIELD_MAPPING_ENCODING_HEADER = + "x-synmetrix-arrow-field-mapping-encoding"; +const ARROW_FIELD_MAPPING_ENCODING = "base64url-json"; +const ARROW_PREVIEW_ROWS = 20; + +const getFileNameFromDisposition = (header: string | null) => { + if (!header) return null; + + const utf8Match = header.match(/filename\*=UTF-8''([^;]+)/i); + if (utf8Match?.[1]) { + return decodeURIComponent(utf8Match[1]); + } + + const quotedMatch = header.match(/filename="([^"]+)"/i); + if (quotedMatch?.[1]) { + return quotedMatch[1]; + } + + const plainMatch = header.match(/filename=([^;]+)/i); + return plainMatch?.[1]?.trim() || null; +}; + +const summarizeBinaryResponse = async (response: Response) => { + const blob = await response.blob(); + + const summary: BinaryResponseSummary = { + contentType: + response.headers.get("content-type") || "application/octet-stream", + fileName: getFileNameFromDisposition( + response.headers.get("content-disposition") + ), + sizeBytes: blob.size, + }; + + return JSON.stringify(summary, null, 2); +}; + +const normalizeArrowValue = (value: unknown): unknown => { + if (value == null) return value; + + if (typeof value === "bigint") { + return value.toString(); + } + + if (value instanceof Date) { + return value.toISOString(); + } + + if (value instanceof ArrayBuffer) { + return Array.from(new Uint8Array(value)); + } + + if (ArrayBuffer.isView(value)) { + return Array.from( + new Uint8Array(value.buffer, value.byteOffset, value.byteLength) + ); + } + + if (Array.isArray(value)) { + return value.map((item) => normalizeArrowValue(item)); + } + + if (typeof value === "object") { + return Object.fromEntries( + Object.entries(value).map(([key, item]) => [ + key, + normalizeArrowValue(item), + ]) + ); + } + + return value; +}; + +const decodeBase64Url = (value: string) => { + const normalized = value.replace(/-/g, "+").replace(/_/g, "/"); + const padded = normalized.padEnd( + normalized.length + ((4 - (normalized.length % 4)) % 4), + "=" ); + return atob(padded); +}; + +const getArrowFieldMapping = (response: Response) => { + const encodedMapping = response.headers.get(ARROW_FIELD_MAPPING_HEADER); + const encoding = response.headers.get(ARROW_FIELD_MAPPING_ENCODING_HEADER); + + if (!encodedMapping) return null; + + if (!encoding || encoding === ARROW_FIELD_MAPPING_ENCODING) { + return { + encoding: ARROW_FIELD_MAPPING_ENCODING, + mapping: JSON.parse(decodeBase64Url(encodedMapping)) as Record< + string, + string + >, + }; + } + + return { + encoding, + mapping: null, + error: `Unsupported Arrow field mapping encoding: ${encoding}`, + }; +}; + +const summarizeArrowResponse = async (response: Response) => { + const bytes = new Uint8Array(await response.arrayBuffer()); + const fieldMappingInfo = getArrowFieldMapping(response); + + try { + const table = tableFromIPC(bytes); + const previewRows = table + .slice(0, ARROW_PREVIEW_ROWS) + .toArray() + .map((row) => normalizeArrowValue(row)); + + return JSON.stringify( + { + contentType: + response.headers.get("content-type") || "application/octet-stream", + fileName: getFileNameFromDisposition( + response.headers.get("content-disposition") + ), + sizeBytes: bytes.byteLength, + rowCount: table.numRows, + previewRowCount: previewRows.length, + schema: table.schema.fields.map((field) => ({ + name: field.name, + type: String(field.type), + nullable: field.nullable, + })), + semanticSchema: fieldMappingInfo?.mapping + ? table.schema.fields.map((field) => ({ + name: fieldMappingInfo.mapping?.[field.name] || field.name, + sourceName: field.name, + type: String(field.type), + nullable: field.nullable, + })) + : undefined, + fieldMappingEncoding: fieldMappingInfo?.encoding, + fieldMapping: fieldMappingInfo?.mapping, + fieldMappingError: fieldMappingInfo?.error, + previewRows, + }, + null, + 2 + ); + } catch (error) { + return JSON.stringify( + { + ...JSON.parse( + await summarizeBinaryResponse( + new Response(bytes, { + headers: { + "content-type": + response.headers.get("content-type") || + "application/octet-stream", + "content-disposition": + response.headers.get("content-disposition") || "", + }, + }) + ) + ), + parseError: error instanceof Error ? error.message : String(error), + fieldMappingEncoding: fieldMappingInfo?.encoding, + fieldMapping: fieldMappingInfo?.mapping, + fieldMappingError: fieldMappingInfo?.error, + }, + null, + 2 + ); + } }; const RestAPI: FC = ({ dataSourceId, branchId, playgroundState, + onApplyQuery, }) => { const { t } = useTranslation(["explore", "common"], { useSuspense: false }); - const { accessToken } = AuthTokensStore(); + const { accessToken, workosAccessToken } = AuthTokensStore(); + const [authMethod, setAuthMethod] = useState<"workos" | "hasura">( + workosAccessToken ? "workos" : "hasura" + ); const [state, setState] = useState(defaultState); + const [outputFormat, setOutputFormat] = useState("json"); + const activeToken = + authMethod === "workos" && workosAccessToken + ? workosAccessToken + : accessToken; + const buildBody = useCallback( + (format: OutputFormat) => { + const query = { + ...playgroundState, + order: normalizeOrders(playgroundState?.order || []), + }; + const body: Record = { query }; + if (format !== "json") { + body.format = format; + } + return JSON.stringify(body, null, 2); + }, + [playgroundState] + ); + const { control, handleSubmit, setValue, getValues, watch } = useForm({ values: { - json: JSON.stringify( - { - ...playgroundState, - order: normalizeOrders(playgroundState?.order || []), - }, - null, - 2 - ), + json: buildBody(outputFormat), "x-hasura-datasource-id": dataSourceId, "x-hasura-branch-id": branchId, - token: `Bearer ${accessToken}`, + token: `Bearer ${activeToken}`, url: CUBEJS_REST_API_URL, response: "", }, }); + // Update body when output format changes + useEffect(() => { + setValue("json", buildBody(outputFormat)); + }, [outputFormat, buildBody, setValue]); + const onSubmit = async (values: any) => { setState({ ...defaultState, loading: true }); - let response: ApiResponse = {}; - - const doFetch = async () => { - const rawResponse = await fetch(values.url, { - method: "POST", - headers: { - authorization: values.token, - "Content-Type": "application/json", - "x-hasura-datasource-id": values["x-hasura-datasource-id"], - "x-hasura-branch-id": values["x-hasura-branch-id"], - }, - body: JSON.stringify({ - query: values.json, - }), - }); - - response = await rawResponse.json(); - if (response?.error === "Continue wait") { - setState((prev) => ({ ...prev, loadingTip: response?.error })); - await doFetch(); - } - }; + let responseText = ""; try { - await doFetch(); + const doFetch = async (): Promise => { + return fetch(values.url, { + method: "POST", + headers: { + authorization: values.token, + "Content-Type": "application/json", + "x-hasura-datasource-id": values["x-hasura-datasource-id"], + "x-hasura-branch-id": values["x-hasura-branch-id"], + }, + body: values.json, + }); + }; + + while (true) { + const rawResponse = await doFetch(); + const contentType = rawResponse.headers.get("content-type") || ""; + const isJsonResponse = contentType.includes("application/json"); + const isCsvResponse = contentType.includes("text/csv"); + const isArrowResponse = contentType.includes(ARROW_CONTENT_TYPE); + + if (!rawResponse.ok) { + if (isJsonResponse) { + const errBody = await rawResponse.json().catch(() => null); + responseText = JSON.stringify( + errBody || { error: `HTTP ${rawResponse.status}` }, + null, + 2 + ); + } else { + const errorBody = await rawResponse.text().catch(() => ""); + responseText = JSON.stringify( + { + error: errorBody || `HTTP ${rawResponse.status}`, + }, + null, + 2 + ); + } + break; + } + + if (isJsonResponse) { + const response: ApiResponse = await rawResponse.json(); + if (response?.error === "Continue wait") { + setState((prev) => ({ ...prev, loadingTip: response?.error })); + continue; + } + responseText = JSON.stringify(response, null, 2); + break; + } + + if (isCsvResponse || outputFormat === "csv") { + responseText = await rawResponse.text(); + break; + } + + if (isArrowResponse || outputFormat === "arrow") { + responseText = await summarizeArrowResponse(rawResponse); + break; + } + + responseText = await rawResponse.text(); + break; + } } catch (e: any) { - response.error = e?.message || e; + responseText = JSON.stringify({ error: e?.message || e }, null, 2); } - setValue("response", JSON.stringify(response, null, 2)); + setValue("response", responseText); setState(defaultState); }; + const onApplyToExplore = () => { + if (!onApplyQuery) return; + + try { + const nextState = parseRestBodyToPlaygroundState(getValues("json") || ""); + onApplyQuery(nextState); + message.success("Query applied to Explore. Click Run Query to execute."); + } catch (e: any) { + message.error( + e?.message + ? `Could not apply query: ${e.message}` + : "Could not apply query" + ); + } + }; + + useEffect(() => { + setValue("token", `Bearer ${activeToken}`); + }, [authMethod, activeToken, setValue]); + useEffect(() => { const subscription = watch((values, { name }) => { if (name === "token") { @@ -138,6 +423,21 @@ const RestAPI: FC = ({ >
+ {workosAccessToken && ( + + setAuthMethod(e.target.value)} + optionType="button" + buttonStyle="solid" + size="small" + > + WorkOS + Hasura + + + )} + = ({ - POST} - suffix={ - - navigator.clipboard.writeText(getValues("url") || "") + + + POST} + suffix={ + + navigator.clipboard.writeText(getValues("url") || "") + } + /> } /> - } - /> + + + + = ({ - navigator.clipboard.writeText(getValues("json") || "") + navigator.clipboard.writeText(getValues("response") || "") } /> diff --git a/src/components/SQLRunner/index.module.less b/src/components/SQLRunner/index.module.less index 330f5a7e..091562f0 100644 --- a/src/components/SQLRunner/index.module.less +++ b/src/components/SQLRunner/index.module.less @@ -32,7 +32,7 @@ padding: 10px 7px 10px 13px; font-size: 12px !important; - background: #a31bcb; + background: #4a7faa; box-shadow: none !important; span { diff --git a/src/components/SecurityForm/index.module.less b/src/components/SecurityForm/index.module.less index 68e0947e..c2bca07c 100644 --- a/src/components/SecurityForm/index.module.less +++ b/src/components/SecurityForm/index.module.less @@ -1,5 +1,5 @@ .title { margin-bottom: 25px; font-weight: 700; - font-family: var(--font-manrope); + font-family: var(--font-inter); } diff --git a/src/components/SideMenu/index.module.less b/src/components/SideMenu/index.module.less index 7cf90f8e..0410b576 100644 --- a/src/components/SideMenu/index.module.less +++ b/src/components/SideMenu/index.module.less @@ -2,7 +2,7 @@ display: flex; justify-content: start; min-height: 100%; - background: #f9f9f9; + background: rgba(249, 249, 249, 0.6); } .inner { @@ -19,7 +19,10 @@ padding: 13px 0; overflow: hidden; text-align: center; - background: var(--color-primary); + background: rgba(63, 101, 135, 0.85); + backdrop-filter: blur(12px); + -webkit-backdrop-filter: blur(12px); + border-right: 1px solid rgba(255, 255, 255, 0.1); &.mobile { width: auto; @@ -49,7 +52,7 @@ margin-bottom: 20px; padding: 13px 12px; color: var(--color-white) !important; - font-family: var(--font-manrope); + font-family: var(--font-inter); text-align: center; background: rgba(255, 255, 255, 0.02); border-radius: 14px; @@ -76,7 +79,7 @@ margin: 0; padding: 0; font-weight: 700; - font-family: var(--font-manrope); + font-family: var(--font-inter); } .link { diff --git a/src/components/SideMenu/index.tsx b/src/components/SideMenu/index.tsx index 5053d438..bf2f796e 100644 --- a/src/components/SideMenu/index.tsx +++ b/src/components/SideMenu/index.tsx @@ -196,7 +196,7 @@ const SideMenu: FC = () => {
{buttons}
diff --git a/src/components/Sidebar/index.module.less b/src/components/Sidebar/index.module.less index 341c90f0..4eaa056d 100644 --- a/src/components/Sidebar/index.module.less +++ b/src/components/Sidebar/index.module.less @@ -1,7 +1,19 @@ +.resizableWrapper { + position: relative; + display: flex; + flex-shrink: 0; + height: 100%; +} + .wrapper { - width: 282px; - background: #f9f9f9; - border-right: 1px solid rgba(0, 0, 0, 0.1); + flex: 1; + min-width: 0; + height: 100%; + overflow: hidden; + background: rgba(255, 255, 255, 0.5); + backdrop-filter: blur(10px); + -webkit-backdrop-filter: blur(10px); + border-right: 1px solid rgba(255, 255, 255, 0.2); &Mobile { width: 100%; @@ -23,7 +35,9 @@ } .body { - background: #f9f9f9; + background: rgba(255, 255, 255, 0.4); + overflow-y: auto; + height: calc(100% - 60px); } .iconContainer { @@ -33,3 +47,20 @@ width: 25px; height: 25px; } + +.resizeHandle { + position: absolute; + top: 0; + right: -3px; + width: 6px; + height: 100%; + cursor: col-resize; + background: transparent; + transition: background 0.2s; + z-index: 10; + + &:hover, + &:active { + background: rgba(63, 101, 135, 0.3); + } +} diff --git a/src/components/Sidebar/index.tsx b/src/components/Sidebar/index.tsx index 0ec11e6e..a82f2655 100644 --- a/src/components/Sidebar/index.tsx +++ b/src/components/Sidebar/index.tsx @@ -1,3 +1,4 @@ +import { useState, useCallback, useEffect, useRef } from "react"; import { useResponsive } from "ahooks"; import cn from "classnames"; @@ -5,6 +6,10 @@ import styles from "./index.module.less"; import type { FC, ReactNode } from "react"; +const DEFAULT_WIDTH = 282; +const MIN_WIDTH = 200; +const MAX_WIDTH = 500; + interface SidebarProps { icon?: ReactNode; title: ReactNode; @@ -13,16 +18,64 @@ interface SidebarProps { const Sidebar: FC = ({ icon, title, children }) => { const responsive = useResponsive(); + const [width, setWidth] = useState(DEFAULT_WIDTH); + const dragRef = useRef<{ startX: number; startWidth: number } | null>(null); + + const onMouseDown = useCallback( + (e: React.MouseEvent) => { + e.preventDefault(); + dragRef.current = { startX: e.clientX, startWidth: width }; + document.body.style.cursor = "col-resize"; + document.body.style.userSelect = "none"; + }, + [width] + ); + + useEffect(() => { + const onMouseMove = (e: MouseEvent) => { + if (!dragRef.current) return; + const newWidth = Math.min( + MAX_WIDTH, + Math.max( + MIN_WIDTH, + dragRef.current.startWidth + e.clientX - dragRef.current.startX + ) + ); + setWidth(newWidth); + }; + const onMouseUp = () => { + if (dragRef.current) { + document.body.style.cursor = ""; + document.body.style.userSelect = ""; + } + dragRef.current = null; + }; + document.addEventListener("mousemove", onMouseMove); + document.addEventListener("mouseup", onMouseUp); + return () => { + document.removeEventListener("mousemove", onMouseMove); + document.removeEventListener("mouseup", onMouseUp); + }; + }, []); + + if (!responsive.lg) { + return ( +
+ {children &&
{children}
} +
+ ); + } return ( -
- {responsive.lg && ( +
+
{icon &&
{icon}
}
{title}
- )} - {children &&
{children}
} + {children &&
{children}
} +
+
); }; diff --git a/src/components/SidebarMenu/index.module.less b/src/components/SidebarMenu/index.module.less index 58b14f39..c0b0332d 100644 --- a/src/components/SidebarMenu/index.module.less +++ b/src/components/SidebarMenu/index.module.less @@ -23,8 +23,8 @@ .active { background: linear-gradient( 0deg, - rgba(71, 13, 105, 0.1) 0%, - rgba(71, 13, 105, 0.1) 100% + rgba(63, 101, 135, 0.1) 0%, + rgba(63, 101, 135, 0.1) 100% ), #fff; } diff --git a/src/components/SignInForm/index.module.less b/src/components/SignInForm/index.module.less index 5384d55d..7b85c153 100644 --- a/src/components/SignInForm/index.module.less +++ b/src/components/SignInForm/index.module.less @@ -59,7 +59,7 @@ } .magicLink { - background: rgba(163, 27, 203, 0.1); + background: rgba(74, 127, 170, 0.1); border: none; backdrop-filter: blur(10px); } diff --git a/src/components/SignInForm/index.tsx b/src/components/SignInForm/index.tsx index 5170c834..728b97a9 100644 --- a/src/components/SignInForm/index.tsx +++ b/src/components/SignInForm/index.tsx @@ -1,13 +1,8 @@ -import { Form, Typography } from "antd"; -import cn from "classnames"; -import { useForm } from "react-hook-form"; +import { Typography, Button, Input, Space, Divider, Alert } from "antd"; import { useTranslation } from "react-i18next"; -import Button from "@/components/Button"; -import Input from "@/components/Input"; import useLocation from "@/hooks/useLocation"; -import validate from "@/utils/helpers/validations"; -import { SIGNIN, SIGNUP } from "@/utils/constants/paths"; +import { SIGNUP } from "@/utils/constants/paths"; import styles from "./index.module.less"; @@ -15,37 +10,67 @@ import type { FC } from "react"; const { Title, Text } = Typography; -export interface SignInFormType { - email: string; - password?: string; -} +const AUTH_ERROR_MESSAGES: Record = { + session_expired: "Your session has expired. Please sign in again.", + access_denied: "Access was denied. Please try again or contact your admin.", + callback_failed: + "Sign-in could not be completed due to a server error. Please try again.", + unauthorized: + "You are not authorized to access this resource. Please sign in.", + signup_disabled: + "Account registration is currently disabled. Please contact your administrator.", +}; interface SignInFormProps { - isMagicLink: boolean; - loading: boolean; - onSubmit: (data: SignInFormType) => void; + error?: string | null; } -const SignInForm: FC = ({ - isMagicLink, - loading, - onSubmit, -}) => { +const SignInForm: FC = ({ error }) => { + const [email, setEmail] = useState(""); + const [isLoading, setIsLoading] = useState(false); + const [signupEnabled, setSignupEnabled] = useState(false); const [, setLocation] = useLocation(); - const { t } = useTranslation(["sign", "common"]); - const { - control, - handleSubmit, - setValue, - formState: { errors }, - } = useForm(); + // Fetch auth config to check if signup is enabled useEffect(() => { - if (isMagicLink) { - setValue("password", undefined); + fetch("/auth/config") + .then((r) => r.json()) + .then((data) => setSignupEnabled(data.signupEnabled === true)) + .catch(() => setSignupEnabled(false)); + }, []); + + // Read error from URL on mount + const [errorMessage, setErrorMessage] = useState(null); + useEffect(() => { + const params = new URLSearchParams(window.location.search); + const errorCode = params.get("error") || error; + if (errorCode) { + setErrorMessage( + AUTH_ERROR_MESSAGES[errorCode] || + "Something went wrong. Please try again." + ); + // Clean error from URL + const url = new URL(window.location.href); + url.searchParams.delete("error"); + window.history.replaceState({}, "", url.toString()); } - }, [isMagicLink, setValue]); + }, [error]); + + const handleSSOSignin = () => { + if (!email.trim()) return; + setIsLoading(true); + const params = new URLSearchParams({ email: email.trim() }); + window.location.href = `/auth/signin?${params.toString()}`; + }; + + const handleProviderSignin = (provider: string) => { + window.location.href = `/auth/signin?provider=${provider}`; + }; + + const handleCreateAccount = () => { + window.location.href = "/auth/signin?signup=true"; + }; return (
@@ -54,78 +79,81 @@ const SignInForm: FC = ({ {t("sign_in.text")}!
-
- -
-
{t("sign_in.or")}
- + {errorMessage && ( + setErrorMessage(null)} + style={{ marginBottom: 16 }} + /> + )} + + - validate.email(v) || t("common:form.errors.email"), - }} - name="email" + value={email} + onChange={(e) => setEmail(e.target.value)} + onPressEnter={handleSSOSignin} + disabled={isLoading} + size="large" /> - {!isMagicLink && ( - - )} + - - {t("sign_in.bottom_text")}{" "} - + + - - + + + {signupEnabled && ( + <> + + + + + + Already have an account?{" "} + + + + )} +
); }; export default SignInForm; + +export type { SignInFormProps }; diff --git a/src/components/SignUpForm/index.module.less b/src/components/SignUpForm/index.module.less index 40ea303f..ecdfe0af 100644 --- a/src/components/SignUpForm/index.module.less +++ b/src/components/SignUpForm/index.module.less @@ -14,7 +14,7 @@ } .magicLink { - background: rgba(163, 27, 203, 0.1); + background: rgba(74, 127, 170, 0.1); border: none; backdrop-filter: blur(10px); } diff --git a/src/components/SignUpForm/index.tsx b/src/components/SignUpForm/index.tsx index 42b4685b..41ca771e 100644 --- a/src/components/SignUpForm/index.tsx +++ b/src/components/SignUpForm/index.tsx @@ -1,20 +1,5 @@ -import { Form, Typography } from "antd"; -import cn from "classnames"; -import { useForm } from "react-hook-form"; -import { useTranslation } from "react-i18next"; - -import Button from "@/components/Button"; -import Input from "@/components/Input"; -import useLocation from "@/hooks/useLocation"; -import validate from "@/utils/helpers/validations"; -import { SIGNIN, SIGNUP } from "@/utils/constants/paths"; - -import styles from "./index.module.less"; - import type { FC } from "react"; -const { Title, Text } = Typography; - export interface SignUpFormType { email: string; password?: string; @@ -22,135 +7,17 @@ export interface SignUpFormType { } interface SignUpProps { - isMagicLink: boolean; - loading: boolean; - onSubmit: (data: SignUpFormType) => void; + isMagicLink?: boolean; + loading?: boolean; + onSubmit?: (data: SignUpFormType) => void; } -const SignUpForm: FC = ({ isMagicLink, loading, onSubmit }) => { - const [, setLocation] = useLocation(); - - const { t } = useTranslation(["sign", "common"]); - const { - control, - handleSubmit, - formState: { errors }, - } = useForm(); - - return ( -
-
- {t("sign_up.title")} - {t("sign_up.text")}! -
-
- -
-
{t("sign_up.or")}
-
- - validate.email(v) || t("common:form.errors.email"), - }} - name="email" - /> - {!isMagicLink && ( - - validate.password(v) || t("common:form.errors.password"), - }} - name="password" - fieldType="password" - /> - )} - -
- - - {t("sign_up.privacy_text_1")}{" "} - {" "} - {t("sign_up.privacy_text_2")}{" "} - - - -
- - +const SignUpForm: FC = () => { + useEffect(() => { + window.location.href = "/auth/signin?signup=true"; + }, []); - - {t("sign_up.bottom_text")}{" "} - - - -
- ); + return
Redirecting to sign up...
; }; export default SignUpForm; diff --git a/src/components/SmartGenSettings/index.module.less b/src/components/SmartGenSettings/index.module.less new file mode 100644 index 00000000..04fea658 --- /dev/null +++ b/src/components/SmartGenSettings/index.module.less @@ -0,0 +1,3 @@ +.wrapper { + padding: 16px 0; +} diff --git a/src/components/SmartGenSettings/index.tsx b/src/components/SmartGenSettings/index.tsx new file mode 100644 index 00000000..13cccfe5 --- /dev/null +++ b/src/components/SmartGenSettings/index.tsx @@ -0,0 +1,139 @@ +import { useState, useEffect } from "react"; +import { Alert, Input, Space, Tag, Typography } from "antd"; +import { PlusOutlined } from "@ant-design/icons"; +import { useTranslation } from "react-i18next"; + +import Button from "@/components/Button"; +import useTeamSettings from "@/hooks/useTeamSettings"; + +import styles from "./index.module.less"; + +import type { FC } from "react"; + +const { Title, Text } = Typography; + +const SmartGenSettings: FC = () => { + const { t } = useTranslation(["settings", "common"]); + const { settings, updating, updateError, updateSettings } = useTeamSettings(); + + const [partition, setPartition] = useState(settings.partition ?? ""); + const [internalTables, setInternalTables] = useState( + settings.internal_tables ?? [] + ); + const [newTable, setNewTable] = useState(""); + const [dirty, setDirty] = useState(false); + + useEffect(() => { + setPartition(settings.partition ?? ""); + setInternalTables(settings.internal_tables ?? []); + }, [settings.partition, settings.internal_tables]); + + const handleAddTable = () => { + const trimmed = newTable.trim(); + if (trimmed && !internalTables.includes(trimmed)) { + setInternalTables([...internalTables, trimmed]); + setNewTable(""); + setDirty(true); + } + }; + + const handleRemoveTable = (table: string) => { + setInternalTables(internalTables.filter((item) => item !== table)); + setDirty(true); + }; + + const handleSave = async () => { + await updateSettings({ + partition: partition || null, + internal_tables: internalTables, + }); + setDirty(false); + }; + + return ( +
+ Smart Generation Settings + + Configure partition isolation for smart-generated models. Internal + tables will have profiling and queries scoped to the specified + partition. + + + +
+ + Partition Value + + { + setPartition(e.target.value); + setDirty(true); + }} + placeholder="e.g., your_partition_id" + style={{ maxWidth: 400 }} + /> + + Profiling queries and generated models will be scoped to this + partition for internal tables. + +
+ +
+ + Internal Tables + + + Tables that should be filtered by the partition value above. + +
+ {internalTables.map((table) => ( + handleRemoveTable(table)} + style={{ marginBottom: 4 }} + > + {table} + + ))} +
+ + setNewTable(e.target.value)} + onPressEnter={handleAddTable} + placeholder="Table name" + /> + + +
+ + {updateError && } + + +
+
+ ); +}; + +export default SmartGenSettings; diff --git a/src/components/SmartGeneration/FilterBuilder.tsx b/src/components/SmartGeneration/FilterBuilder.tsx new file mode 100644 index 00000000..74e41618 --- /dev/null +++ b/src/components/SmartGeneration/FilterBuilder.tsx @@ -0,0 +1,904 @@ +import { useCallback, useEffect, useMemo, useRef, useState } from "react"; +import { Button, InputNumber, Select, Space, Input, Spin } from "antd"; +import { PlusOutlined, DeleteOutlined } from "@ant-design/icons"; + +import AuthTokensStore from "@/stores/AuthTokensStore"; + +import type { FC } from "react"; + +// --------------------------------------------------------------------------- +// Types +// --------------------------------------------------------------------------- + +export interface FilterCondition { + column: string; + operator: string; + value: any; +} + +export interface SchemaColumn { + name: string; + raw_type: string; + value_type: string; +} + +/** + * Maps raw ClickHouse column name → Cube.js fully-qualified dimension member. + * Built from `meta.source_column` on each dimension in the Cube.js meta response. + */ +export type DimensionMap = Record; + +export interface FilterBuilderProps { + schema: SchemaColumn[]; + filters: FilterCondition[]; + onChange: (filters: FilterCondition[]) => void; + /** + * Column → Cube.js dimension member map (from meta). + * When provided, value lookups go through Cube.js load API. + * When absent, falls back to /api/v1/column-values (direct query with partition). + */ + dimensionMap?: DimensionMap; + /** Table name — used for direct value lookups when no cube model exists */ + tableName?: string; + /** Schema/database name — used for direct value lookups */ + tableSchema?: string; + /** Datasource ID for auth headers */ + datasourceId?: string; + /** Branch ID for auth headers */ + branchId?: string; +} + +// --------------------------------------------------------------------------- +// Operator definitions — human-readable labels +// --------------------------------------------------------------------------- + +interface OperatorDef { + label: string; + value: string; +} + +const ALL_OPERATORS: OperatorDef[] = [ + { label: "equals (=)", value: "=" }, + { label: "not equals (\u2260)", value: "!=" }, + { label: "greater than (>)", value: ">" }, + { label: "greater or equal (\u2265)", value: ">=" }, + { label: "less than (<)", value: "<" }, + { label: "less or equal (\u2264)", value: "<=" }, + { label: "in list", value: "IN" }, + { label: "not in list", value: "NOT IN" }, + { label: "matches (LIKE)", value: "LIKE" }, + { label: "is empty", value: "IS NULL" }, + { label: "is not empty", value: "IS NOT NULL" }, +]; + +const OPERATORS_BY_TYPE: Record = { + STRING: [ + "=", + "!=", + ">", + ">=", + "<", + "<=", + "IN", + "NOT IN", + "LIKE", + "IS NULL", + "IS NOT NULL", + ], + NUMBER: [ + "=", + "!=", + ">", + ">=", + "<", + "<=", + "IN", + "NOT IN", + "IS NULL", + "IS NOT NULL", + ], + DATE: ["=", "!=", ">", ">=", "<", "<=", "IS NULL", "IS NOT NULL"], + BOOLEAN: ["=", "!=", "IS NULL", "IS NOT NULL"], +}; + +const NO_VALUE_OPERATORS = new Set(["IS NULL", "IS NOT NULL"]); +const MULTI_VALUE_OPERATORS = new Set(["IN", "NOT IN"]); +const VALUE_LOOKUP_OPERATORS = new Set(["=", "!=", "IN", "NOT IN"]); +const MAX_FILTERS = 10; +const DEBOUNCE_MS = 300; + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +function getValueType(schema: SchemaColumn[], columnName: string): string { + const col = schema.find((c) => c.name === columnName); + return col?.value_type?.toUpperCase() || "STRING"; +} + +function getOperatorsForType(valueType: string): OperatorDef[] { + const allowed = OPERATORS_BY_TYPE[valueType] || OPERATORS_BY_TYPE.STRING; + return ALL_OPERATORS.filter((op) => allowed.includes(op.value)); +} + +function normalizeText(value: unknown): string { + if (value == null) return ""; + return String(value).toLowerCase().trim(); +} + +function findOrderedTokenStart(text: string, tokens: string[]): number { + let cursor = 0; + let firstStart = -1; + for (const token of tokens) { + const idx = text.indexOf(token, cursor); + if (idx < 0) return -1; + if (firstStart < 0) firstStart = idx; + cursor = idx + token.length; + } + return firstStart; +} + +function classifyColumnMatch( + query: string, + option: { label?: unknown; value?: unknown } +): { matched: boolean; tier: number; index: number } { + const value = normalizeText(option?.value); + const label = normalizeText(option?.label); + const text = value || label; + if (!query) return { matched: true, tier: 9, index: 0 }; + if (!text) + return { matched: false, tier: 99, index: Number.MAX_SAFE_INTEGER }; + + // Tier 0: exact match + if (text === query || label === query) { + return { matched: true, tier: 0, index: 0 }; + } + + // Tier 1: left-most prefix match + if (text.startsWith(query)) { + return { matched: true, tier: 1, index: 0 }; + } + + // Tier 2/3: ordered token match from left to right + const queryTokens = query.split(/\s+/).filter(Boolean); + const orderedIdx = findOrderedTokenStart(text, queryTokens); + if (orderedIdx >= 0) { + const atBoundary = + orderedIdx === 0 || /[._\-\s]/.test(text[orderedIdx - 1] || ""); + return { matched: true, tier: atBoundary ? 2 : 3, index: orderedIdx }; + } + + return { matched: false, tier: 99, index: Number.MAX_SAFE_INTEGER }; +} + +function isKeyValueColumn(columnName: string): boolean { + const name = normalizeText(columnName); + return ( + name.includes(".key") || + name.includes(".value") || + name.endsWith("_key") || + name.endsWith("_value") || + name.includes("key.") || + name.includes("value.") + ); +} + +// --------------------------------------------------------------------------- +// Cube.js load API — same pipeline as Explore page +// --------------------------------------------------------------------------- + +/** + * Map a filter-builder operator to a Cube.js filter operator. + * Only operators that make sense for narrowing value candidates are mapped. + */ +function toCubeOperator(op: string): string | null { + switch (op) { + case "=": + return "equals"; + case "!=": + return "notEquals"; + case ">": + return "gt"; + case ">=": + return "gte"; + case "<": + return "lt"; + case "<=": + return "lte"; + case "IS NULL": + return "notSet"; + case "IS NOT NULL": + return "set"; + default: + return null; + } +} + +/** + * Convert completed sibling FilterConditions into Cube.js filter objects. + * Only includes filters that have a corresponding dimension in the map. + */ +function buildCubeFilters( + siblings: FilterCondition[], + dimensionMap: DimensionMap +): any[] { + const cubeFilters: any[] = []; + for (const f of siblings) { + if (!f.column || !f.operator) continue; + const member = dimensionMap[f.column]; + if (!member) continue; + + const cubeOp = toCubeOperator(f.operator); + if (!cubeOp) continue; // skip IN/NOT IN/LIKE — complex to translate + + if (cubeOp === "set" || cubeOp === "notSet") { + cubeFilters.push({ member, operator: cubeOp }); + } else if (f.value != null && f.value !== "") { + cubeFilters.push({ + member, + operator: cubeOp, + values: [String(f.value)], + }); + } + } + return cubeFilters; +} + +async function loadCubeValues( + member: string, + searchTerm: string, + siblingCubeFilters: any[], + datasourceId: string, + branchId: string | undefined, + signal: AbortSignal +): Promise { + const token = + AuthTokensStore.getState().workosAccessToken || + AuthTokensStore.getState().accessToken; + + const headers: Record = { + "Content-Type": "application/json", + "x-hasura-datasource-id": datasourceId, + }; + if (token) headers.Authorization = `Bearer ${token}`; + if (branchId) headers["x-hasura-branch-id"] = branchId; + + const filters: any[] = [...siblingCubeFilters]; + + // Server-side partial matching via Cube.js `contains` filter + if (searchTerm.trim()) { + filters.push({ + member, + operator: "contains", + values: [searchTerm.trim()], + }); + } + + const query: Record = { + dimensions: [member], + limit: 200, + order: { [member]: "asc" }, + }; + if (filters.length > 0) query.filters = filters; + + // Cube.js may return "Continue wait" while compiling — retry up to 3 times + for (let attempt = 0; attempt < 3; attempt++) { + const res = await fetch("/api/v1/load", { + method: "POST", + headers, + body: JSON.stringify({ query }), + signal, + }); + + if (!res.ok) return []; + const data = await res.json(); + + if (data.error === "Continue wait") { + await new Promise((r) => setTimeout(r, 1000)); + continue; + } + + const rows: any[] = data.data || []; + return [ + ...new Set( + rows + .map((r) => r[member]) + .filter((v) => v != null && v !== "") + .map(String) + ), + ]; + } + + return []; // all retries exhausted +} + +/** + * Direct column-values endpoint — works without a cube model. + * Goes through the same checkAuth + driverFactory pipeline as profile-table, + * so partition filtering is applied from the security context. + */ +async function loadDirectValues( + tableName: string, + tableSchema: string, + column: string, + searchTerm: string, + siblingFilters: FilterCondition[], + datasourceId: string, + branchId: string | undefined, + signal: AbortSignal +): Promise { + const token = + AuthTokensStore.getState().workosAccessToken || + AuthTokensStore.getState().accessToken; + + const headers: Record = { + "Content-Type": "application/json", + "x-hasura-datasource-id": datasourceId, + }; + if (token) headers.Authorization = `Bearer ${token}`; + if (branchId) headers["x-hasura-branch-id"] = branchId; + + const completed = siblingFilters.filter( + (f) => + f.column && + f.operator && + (f.value != null || NO_VALUE_OPERATORS.has(f.operator)) + ); + + const body: Record = { + table: tableName, + schema: tableSchema, + column, + limit: 200, + }; + if (searchTerm.trim()) body.search = searchTerm.trim(); + if (completed.length > 0) body.filters = completed; + + const res = await fetch("/api/v1/column-values", { + method: "POST", + headers, + body: JSON.stringify(body), + signal, + }); + + if (!res.ok) return []; + const data = await res.json(); + return Array.isArray(data.values) ? data.values : []; +} + +// --------------------------------------------------------------------------- +// Value lookup hook — Cube.js load when available, direct query as fallback +// --------------------------------------------------------------------------- + +function useColumnValues( + column: string, + siblingFilters: FilterCondition[], + dimensionMember: string | undefined, + dimensionMap: DimensionMap | undefined, + tableName: string | undefined, + tableSchema: string | undefined, + datasourceId: string | undefined, + branchId: string | undefined +): { + values: string[]; + loading: boolean; + onSearch: (term: string) => void; +} { + const [values, setValues] = useState([]); + const [loading, setLoading] = useState(false); + const abortRef = useRef(null); + const debounceRef = useRef | null>(null); + + // Mutable refs for the debounced search closure + const argsRef = useRef({ + column, + siblingFilters, + dimensionMember, + dimensionMap, + tableName, + tableSchema, + datasourceId, + branchId, + }); + argsRef.current = { + column, + siblingFilters, + dimensionMember, + dimensionMap, + tableName, + tableSchema, + datasourceId, + branchId, + }; + + // Stable key for sibling filters + const siblingKey = useMemo(() => { + const completed = siblingFilters.filter( + (f) => + f.column && + f.operator && + (f.value != null || NO_VALUE_OPERATORS.has(f.operator)) + ); + return JSON.stringify(completed); + }, [siblingFilters]); + + // Unified fetch function — Cube.js load if available, direct endpoint otherwise + const doFetch = useCallback( + (searchTerm: string, signal: AbortSignal) => { + const a = argsRef.current; + if (a.tableName && a.tableSchema && a.column && a.datasourceId) { + // Prefer direct table query so value options are always sourced + // from the currently selected table/schema in Smart Generate. + return loadDirectValues( + a.tableName, + a.tableSchema, + a.column, + searchTerm, + a.siblingFilters, + a.datasourceId, + a.branchId, + signal + ); + } + if (a.dimensionMember && a.dimensionMap && a.datasourceId) { + // Fallback path when table context is unavailable + const cubeFilters = buildCubeFilters(a.siblingFilters, a.dimensionMap); + return loadCubeValues( + a.dimensionMember, + searchTerm, + cubeFilters, + a.datasourceId, + a.branchId, + signal + ); + } + return Promise.resolve([]); + }, + // eslint-disable-next-line react-hooks/exhaustive-deps + [] + ); + + // Fetch when column, dimension member, or sibling filters change + useEffect(() => { + if (!column || !datasourceId) { + setValues([]); + return; + } + // Need either a cube dimension OR table info + if (!dimensionMember && (!tableName || !tableSchema)) { + setValues([]); + return; + } + + abortRef.current?.abort(); + const ctl = new AbortController(); + abortRef.current = ctl; + + setLoading(true); + doFetch("", ctl.signal) + .then((v) => { + if (!ctl.signal.aborted) setValues(v); + }) + .catch((e) => { + if (e.name !== "AbortError") setValues([]); + }) + .finally(() => { + if (!ctl.signal.aborted) setLoading(false); + }); + + return () => ctl.abort(); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [ + column, + dimensionMember, + datasourceId, + branchId, + tableName, + tableSchema, + siblingKey, + ]); + + // Debounced search as user types + const onSearch = useCallback( + (term: string) => { + const a = argsRef.current; + if (!a.column || !a.datasourceId) return; + + if (debounceRef.current) clearTimeout(debounceRef.current); + debounceRef.current = setTimeout(() => { + abortRef.current?.abort(); + const ctl = new AbortController(); + abortRef.current = ctl; + + setLoading(true); + doFetch(term, ctl.signal) + .then((v) => { + if (!ctl.signal.aborted) setValues(v); + }) + .catch((e) => { + if (e.name !== "AbortError") setValues([]); + }) + .finally(() => { + if (!ctl.signal.aborted) setLoading(false); + }); + }, DEBOUNCE_MS); + }, + [doFetch] + ); + + return { values, loading, onSearch }; +} + +// --------------------------------------------------------------------------- +// Value editor +// --------------------------------------------------------------------------- + +const ValueEditor: FC<{ + operator: string; + valueType: string; + value: any; + onChange: (value: any) => void; + lookupValues: string[]; + lookupLoading: boolean; + hasLookup: boolean; + onSearch: (term: string) => void; +}> = ({ + operator, + valueType, + value, + onChange, + lookupValues, + lookupLoading, + hasLookup, + onSearch, +}) => { + if (NO_VALUE_OPERATORS.has(operator)) return null; + + const useLookup = hasLookup && VALUE_LOOKUP_OPERATORS.has(operator); + + if (MULTI_VALUE_OPERATORS.has(operator)) { + return ( + + ); + } + + if (useLookup) { + return ( + onChange(e.target.value)} + /> + ); + } + + return ( + onChange(e.target.value)} + /> + ); +}; + +// --------------------------------------------------------------------------- +// Single filter row +// --------------------------------------------------------------------------- + +const FilterRow: FC<{ + filter: FilterCondition; + index: number; + schema: SchemaColumn[]; + columnOptions: { label: string; value: string }[]; + siblingFilters: FilterCondition[]; + dimensionMap?: DimensionMap; + tableName?: string; + tableSchema?: string; + datasourceId?: string; + branchId?: string; + onColumnChange: (index: number, column: string) => void; + onOperatorChange: (index: number, operator: string) => void; + onValueChange: (index: number, value: any) => void; + onRemove: (index: number) => void; +}> = ({ + filter, + index, + schema, + columnOptions, + siblingFilters, + dimensionMap, + tableName, + tableSchema, + datasourceId, + branchId, + onColumnChange, + onOperatorChange, + onValueChange, + onRemove, +}) => { + const vt = getValueType(schema, filter.column); + const operators = getOperatorsForType(vt); + const [columnSearch, setColumnSearch] = useState(""); + + const dimensionMember = dimensionMap?.[filter.column]; + + const { values, loading, onSearch } = useColumnValues( + filter.column, + siblingFilters, + dimensionMember, + dimensionMap, + tableName, + tableSchema, + datasourceId, + branchId + ); + + const filteredColumnOptions = useMemo(() => { + const query = normalizeText(columnSearch); + if (!query) return columnOptions; + + return columnOptions + .map((option, originalIndex) => { + const match = classifyColumnMatch(query, option); + return { option, originalIndex, ...match }; + }) + .filter((entry) => entry.matched) + .sort((a, b) => { + // New search behavior: strict left-to-right ordering. + if (a.tier !== b.tier) return a.tier - b.tier; + if (a.index !== b.index) return a.index - b.index; + if (a.originalIndex !== b.originalIndex) { + return a.originalIndex - b.originalIndex; + } + return a.option.value.localeCompare(b.option.value); + }) + .map((entry) => entry.option); + }, [columnOptions, columnSearch]); + + return ( + + onOperatorChange(index, val)} + options={operators} + /> + onValueChange(index, val)} + lookupValues={values} + lookupLoading={loading} + hasLookup={ + !!dimensionMember || (!!tableName && !!tableSchema && !!datasourceId) + } + onSearch={onSearch} + /> + +
+
+ ); +}; + +export default FilterBuilder; diff --git a/src/components/SmartGeneration/index.module.less b/src/components/SmartGeneration/index.module.less new file mode 100644 index 00000000..c5563d88 --- /dev/null +++ b/src/components/SmartGeneration/index.module.less @@ -0,0 +1,581 @@ +.wrapper { + padding: 20px 24px; +} + +.header { + margin-bottom: 12px; +} + +.dataSource { + display: flex; + align-items: center; + margin-bottom: 16px; +} + +.iconWrapper { + display: flex; + align-items: center; + justify-content: center; + width: 48px; + height: 48px; + margin-right: 12px; + padding: 11px; + background: #fff; + border: 0.798px solid rgba(165, 165, 165, 0.3); + border-radius: 9.677px; + box-shadow: 0 3.19px 12.77px 0 rgba(8, 8, 8, 0.06); +} + +.title { + margin: 0; + font-family: var(--font-inter); +} + +.tableSelect { + margin-bottom: 24px; +} + +.progressSection { + margin: 24px 0; +} + +.progressPhase { + display: flex; + align-items: baseline; + gap: 6px; + margin-bottom: 4px; + font-size: 14px; + font-weight: 600; + color: #1a1a1a; +} + +.progressPhaseLabel { + color: var(--color-primary); + font-weight: 700; + font-size: 12px; + text-transform: uppercase; + letter-spacing: 0.03em; +} + +.progressStepCount { + margin-left: auto; + font-size: 11px; + font-weight: 500; + color: #999; + font-variant-numeric: tabular-nums; +} + +.progressStep { + margin-bottom: 8px; + color: var(--color-dimgray-300); + font-size: 13px; +} + +.progressMeta { + display: flex; + gap: 12px; + margin-top: 4px; + font-size: 11px; + color: #888; + font-variant-numeric: tabular-nums; +} + +.progressElapsed { + color: #888; +} + +.progressEta { + color: var(--color-primary); + font-weight: 500; +} + +.progressLog { + margin-top: 10px; + padding: 8px 0; + border-top: 1px solid rgba(0, 0, 0, 0.06); +} + +.progressLogItem { + font-size: 11px; + color: #999; + line-height: 1.6; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* -- Profile Summary hero -- */ + +.profileHero { + margin: 16px 0 0; + padding: 10px 14px; + background: #fff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; +} + +.profileHeroHeader { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 8px; + padding-bottom: 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.06); +} + +.profileTableName { + margin: 0 !important; + font-family: 'SF Mono', 'Menlo', 'Monaco', monospace; + font-weight: 600; + font-size: 13px; + color: #1a1a1a; + letter-spacing: -0.01em; +} + +.profileSampled { + font-size: 10px; + color: #888; + background: rgba(0, 0, 0, 0.04); + padding: 1px 7px; + border-radius: 8px; + font-weight: 500; +} + +.statsRow { + display: flex; + gap: 0; +} + +.stat { + display: flex; + flex-direction: column; + align-items: center; + gap: 1px; + padding: 4px 0; + flex: 1; + min-width: 0; + border-right: 1px solid rgba(0, 0, 0, 0.06); + + &:last-child { + border-right: none; + } +} + +.statValue { + font-size: 16px; + font-weight: 700; + color: #1a1a1a; + line-height: 1.2; + font-variant-numeric: tabular-nums; +} + +.statLabel { + font-size: 9px; + font-weight: 600; + color: #999; + text-transform: uppercase; + letter-spacing: 0.05em; +} + +.statHighlight .statValue { + color: var(--color-primary); +} + +/* -- Column list (infinite scroll) -- */ + +.columnListSection { + margin: 20px 0 16px; +} + +.columnSearchInput { + width: 220px; +} + +.columnFilterTabs { + display: flex; + align-items: center; + gap: 4px; + margin-bottom: 8px; + + .columnSearchInput { + margin-left: auto; + } +} + +.columnFilterTab { + padding: 3px 10px; + font-size: 11px; + font-weight: 500; + border-radius: 12px; + border: 1px solid rgba(0, 0, 0, 0.1); + background: #fff; + color: #666; + cursor: pointer; + transition: all 0.15s; + + &:hover { + border-color: rgba(63, 101, 135, 0.3); + color: #3f6587; + } +} + +.columnFilterTabActive { + background: rgba(63, 101, 135, 0.1); + border-color: rgba(63, 101, 135, 0.3); + color: #3f6587; + font-weight: 600; +} + +.columnScroll { + max-height: 340px; + overflow-y: auto; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + background: #fff; +} + +.columnItemHeader { + display: flex; + align-items: center; + gap: 8px; + padding: 6px 14px; + font-size: 10px; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.05em; + color: #999; + background: #fafbfc; + border-bottom: 1px solid rgba(0, 0, 0, 0.08); + position: sticky; + top: 0; + z-index: 1; + + > span:nth-child(1) { width: 16px; flex-shrink: 0; } /* chevron */ + > span:nth-child(2) { width: 8px; flex-shrink: 0; } /* dot */ + > span:nth-child(3) { flex: 2.5; min-width: 0; } /* name */ + > span:nth-child(4) { flex: 1.2; min-width: 0; } /* type */ + > span:nth-child(5) { flex: 1; min-width: 0; } /* fill */ + > span:nth-child(6) { flex: 0.8; min-width: 0; } /* unique */ + > span:nth-child(7) { flex: 3; min-width: 0; } /* info */ +} + +.columnItem { + display: flex; + align-items: center; + gap: 8px; + padding: 6px 14px; + cursor: pointer; + transition: background 0.15s; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + + &:last-child { + border-bottom: none; + } + + &:hover { + background: #f5f7fa; + } +} + +.columnItemInactive { + opacity: 0.55; + + &:hover { + opacity: 0.8; + } +} + +.columnItemExpanded { + background: #f0f4f8; + + &:hover { + background: #f0f4f8; + } +} + +.columnChevron { + width: 16px; + flex-shrink: 0; + font-size: 10px; + color: #999; + transition: transform 0.15s; + text-align: center; +} + +.columnChevronOpen { + transform: rotate(90deg); + color: var(--color-primary); +} + +.columnStatusDot { + width: 8px; + height: 8px; + flex-shrink: 0; + border-radius: 50%; + background: #ccc; +} + +.columnStatusActive { + background: #52c41a; + box-shadow: 0 0 4px rgba(82, 196, 26, 0.4); +} + +.columnStatusEmpty { + background: #d9d9d9; +} + +.columnName { + flex: 2.5; + min-width: 0; + font-size: 13px; + font-weight: 600; + color: #1a1a1a; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + font-family: 'SF Mono', 'Menlo', 'Monaco', monospace; +} + +.columnType { + flex: 1.2; + min-width: 0; + font-size: 11px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + + > span { + padding: 1px 6px; + background: rgba(63, 101, 135, 0.1); + border-radius: 3px; + color: #3f6587; + font-family: 'SF Mono', 'Menlo', 'Monaco', monospace; + } +} + +.columnFill { + flex: 1; + min-width: 0; + display: flex; + align-items: center; + gap: 6px; +} + +.fillBar { + flex: 1; + height: 4px; + background: rgba(0, 0, 0, 0.06); + border-radius: 2px; + overflow: hidden; + min-width: 30px; + max-width: 60px; +} + +.fillBarInner { + height: 100%; + border-radius: 2px; + background: #52c41a; + transition: width 0.3s; +} + +.fillBarLow { + background: #faad14; +} + +.fillBarEmpty { + background: #d9d9d9; +} + +.fillPercent { + font-size: 11px; + font-weight: 500; + color: #555; + font-variant-numeric: tabular-nums; + white-space: nowrap; +} + +.columnUnique { + flex: 0.8; + min-width: 0; + font-size: 11px; + color: #555; + font-variant-numeric: tabular-nums; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.columnInfo { + flex: 3; + min-width: 0; + display: flex; + align-items: center; + gap: 6px; + overflow: hidden; +} + +.columnInfoText { + font-size: 12px; + color: #666; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.columnInfoTags { + display: flex; + gap: 3px; + overflow: hidden; + + > span { + padding: 0 5px; + font-size: 10px; + background: rgba(0, 0, 0, 0.05); + border-radius: 3px; + color: #555; + white-space: nowrap; + line-height: 18px; + } +} + +.columnRange { + font-size: 10px; + color: #888; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.columnDetails { + padding: 12px 14px 14px 36px; + background: #f8fafb; + border-bottom: 1px solid rgba(0, 0, 0, 0.06); +} + +.detailGrid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); + gap: 10px 20px; +} + +.detailItem { + display: flex; + flex-direction: column; +} + +.detailLabel { + font-size: 10px; + text-transform: uppercase; + letter-spacing: 0.05em; + color: #999; + margin-bottom: 2px; + font-weight: 500; +} + +.detailValue { + font-size: 13px; + font-weight: 600; + color: #1a1a1a; + word-break: break-all; +} + +.detailDescription { + grid-column: 1 / -1; + margin-top: 6px; + padding-top: 6px; + border-top: 1px solid rgba(0, 0, 0, 0.04); + font-size: 12px; + color: #555; + line-height: 1.4; + font-style: italic; +} + +.detailValues { + grid-column: 1 / -1; +} + +.detailValueTags { + display: flex; + flex-wrap: wrap; + gap: 4px; + margin-top: 4px; +} + +/* -- Existing sections -- */ + +.summarySection { + margin: 24px 0; +} + +.summaryGrid { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 12px; + margin-top: 12px; +} + +.summaryCard { + padding: 12px 16px; + background: rgba(63, 101, 135, 0.04); + border-radius: 8px; +} + +.summaryLabel { + font-size: 12px; + color: var(--color-dimgray-300); + margin-bottom: 4px; +} + +.summaryValue { + font-size: 18px; + font-weight: 600; + color: var(--color-primary); +} + +.existingModelWarning { + margin: 16px 0; +} + +.mergeOptions { + margin: 16px 0; +} + +.actions { + display: flex; + gap: 12px; + margin-top: 24px; +} + +.errorMessage { + margin-top: 16px; +} + +.changePreview { + margin: 24px 0; +} + +.changeSection { + margin-bottom: 16px; +} + +.changeSectionHeader { + display: flex; + align-items: center; + gap: 8px; + margin-bottom: 8px; +} + +.branchAlert { + margin-bottom: 16px; +} + +.outputNamesSection { + border: 1px solid rgba(114, 46, 209, 0.18); + background: #faf5ff; + border-radius: 8px; + padding: 16px 16px 12px; +} + +.saveBranchInOutput { + display: block; +} diff --git a/src/components/SmartGeneration/index.tsx b/src/components/SmartGeneration/index.tsx new file mode 100644 index 00000000..5cc71c3f --- /dev/null +++ b/src/components/SmartGeneration/index.tsx @@ -0,0 +1,2129 @@ +import { useState, useEffect, useMemo, useCallback, useRef } from "react"; +import { + Alert, + Checkbox, + Input as AntInput, + Progress, + Radio, + Select, + Space, + Spin, + Table, + Tag, + Tooltip, + Typography, +} from "antd"; +import { RightOutlined } from "@ant-design/icons"; +import { useTranslation } from "react-i18next"; + +import Button from "@/components/Button"; +import AuthTokensStore from "@/stores/AuthTokensStore"; +import type { Branch, DataSourceInfo, Schema } from "@/types/dataSource"; +import { + Branch_Statuses_Enum, + useSmartGenDataSchemasMutation, + useFetchMetaQuery, + useFetchTablesQuery, +} from "@/graphql/generated"; + +import FilterBuilder from "./FilterBuilder"; + +import styles from "./index.module.less"; + +import type { FilterCondition, DimensionMap } from "./FilterBuilder"; +import type { FC } from "react"; + +const { Title, Text } = Typography; + +// --------------------------------------------------------------------------- +// Phase labels for the profiler SSE events +// --------------------------------------------------------------------------- + +const PHASE_LABELS: Record = { + init: "Schema Discovery", + metadata: "Schema Discovery", + schema_analysis: "Schema Discovery", + initial_profile: "Initial Profile", + profiling: "Deep Profiling", + map_stats: "Map Key Stats", + lc_probe: "Value Enumeration", +}; + +interface ProgressEvent { + step: string; + message: string; + progress: number; + detail?: Record; +} + +/** Format milliseconds into a human-readable duration. */ +function formatDuration(ms: number): string { + if (ms < 1000) return `${ms}ms`; + const secs = Math.round(ms / 1000); + if (secs < 60) return `${secs}s`; + const mins = Math.floor(secs / 60); + const remSecs = secs % 60; + return remSecs > 0 ? `${mins}m ${remSecs}s` : `${mins}m`; +} + +/** Real-time profile progress from SSE events. */ +const ProfileProgress: FC<{ + events: ProgressEvent[]; + onCancel?: () => void; +}> = ({ events, onCancel }) => { + const latest = events[events.length - 1]; + const phaseLabel = latest ? PHASE_LABELS[latest.step] : null; + const percent = latest ? Math.round(latest.progress * 100) : 2; + + const stepNum = (latest?.detail?.step as number) || 0; + const totalSteps = (latest?.detail?.total_steps as number) || 0; + const elapsedMs = (latest?.detail?.elapsed_ms as number) || 0; + const etaMs = (latest?.detail?.eta_ms as number) || null; + + return ( +
+ +
+ + {phaseLabel || "Connecting..."} + + {totalSteps > 0 && ( + + {stepNum}/{totalSteps} + + )} +
+
+ {latest?.message || "Starting profiler..."} +
+ +
+ {elapsedMs > 0 && ( + + {formatDuration(elapsedMs)} elapsed + + )} + {etaMs != null && etaMs > 0 && ( + + ~{formatDuration(etaMs)} remaining + + )} +
+ {events.length > 1 && ( +
+ {events.slice(-4, -1).map((e, i) => ( +
+ {e.message} +
+ ))} +
+ )} +
+ {onCancel && ( + + )} +
+ ); +}; + +/** Simulated progress for non-SSE steps (dry-run, apply). */ +const SimulatedProgress: FC<{ + messages: string[]; + maxPercent?: number; + intervalMs?: number; +}> = ({ messages, maxPercent = 95, intervalMs = 1500 }) => { + const [msgIdx, setMsgIdx] = useState(0); + const [percent, setPercent] = useState(5); + + useEffect(() => { + const step = Math.floor(maxPercent / messages.length); + const timer = setInterval(() => { + setMsgIdx((prev) => Math.min(prev + 1, messages.length - 1)); + setPercent((prev) => Math.min(prev + step, maxPercent)); + }, intervalMs); + return () => clearInterval(timer); + }, [messages.length, maxPercent, intervalMs]); + + return ( +
+ +
{messages[msgIdx]}
+ +
+
+ ); +}; + +// -- Change preview types -- + +interface ChangeField { + name: string; + type?: string; + member_type: string; + cube: string; + reason?: string; + source?: "map" | "nested" | "ai"; +} + +interface ChangeBlock { + block: string; + cube: string; +} + +interface AIMetricEntry { + name: string; + type: string; + member_type: string; + cube: string; + ai_generation_context: string | null; +} + +interface ChangePreview { + fields_added: ChangeField[]; + fields_updated: ChangeField[]; + fields_removed: ChangeField[]; + fields_preserved: ChangeField[]; + blocks_preserved: ChangeBlock[]; + summary: string; + ai_metrics_added?: AIMetricEntry[]; + ai_metrics_retained?: AIMetricEntry[]; + ai_metrics_removed?: AIMetricEntry[]; +} + +/** Render the change preview as categorized tables. */ +const ChangePreviewPanel: FC<{ preview: ChangePreview }> = ({ preview }) => { + const columns = [ + { title: "Field", dataIndex: "name", key: "name" }, + { + title: "Type", + dataIndex: "member_type", + key: "member_type", + render: (v: string) => ( + {v} + ), + }, + { + title: "Cube Type", + dataIndex: "type", + key: "type", + render: (v: string) => v || "—", + }, + { title: "Cube", dataIndex: "cube", key: "cube" }, + ]; + + const preservedColumns = [ + { title: "Field", dataIndex: "name", key: "name" }, + { + title: "Type", + dataIndex: "member_type", + key: "member_type", + render: (v: string) => ( + {v} + ), + }, + { + title: "Reason", + dataIndex: "reason", + key: "reason", + render: (v: string) => { + switch (v) { + case "user_created": + return User-created; + case "edited_description": + return Edited description; + default: + return v; + } + }, + }, + { title: "Cube", dataIndex: "cube", key: "cube" }, + ]; + + const aiAdded = preview.ai_metrics_added ?? []; + const aiRetained = preview.ai_metrics_retained ?? []; + const aiRemoved = preview.ai_metrics_removed ?? []; + const hasAIMetrics = + aiAdded.length > 0 || aiRetained.length > 0 || aiRemoved.length > 0; + + // Filter out ai_generated fields from the preserved table — they're shown in the AI section + const nonAIPreserved = preview.fields_preserved.filter( + (f) => f.reason !== "ai_generated" + ); + + const hasChanges = + preview.fields_added.length > 0 || + preview.fields_updated.length > 0 || + preview.fields_removed.length > 0; + + return ( +
+ Change Preview + + {preview.summary} + + + {preview.fields_added.length > 0 && ( +
+
+ +{preview.fields_added.length} + Fields to add +
+ `${r.cube}.${r.name}`} + pagination={ + preview.fields_added.length > 10 ? { pageSize: 10 } : false + } + /> + + )} + + {preview.fields_updated.length > 0 && ( +
+
+ ~{preview.fields_updated.length} + Fields to update +
+
`${r.cube}.${r.name}`} + pagination={ + preview.fields_updated.length > 10 ? { pageSize: 10 } : false + } + /> + + )} + + {preview.fields_removed.length > 0 && ( +
+
+ -{preview.fields_removed.length} + Fields to remove +
+
`${r.cube}.${r.name}`} + pagination={ + preview.fields_removed.length > 10 ? { pageSize: 10 } : false + } + /> + + )} + + {nonAIPreserved.length > 0 && ( +
+
+ {nonAIPreserved.length} + User fields preserved +
+
`${r.cube}.${r.name}`} + pagination={nonAIPreserved.length > 10 ? { pageSize: 10 } : false} + /> + + )} + + {preview.blocks_preserved.length > 0 && ( +
+
+ Blocks preserved +
+ + {preview.blocks_preserved.map((b) => ( + + {b.block} + + ))} + +
+ )} + + {hasAIMetrics && ( +
+
+ AI-Generated Metrics +
+ + {aiAdded.length > 0 && ( +
+ + Added + + + {aiAdded.map((m) => ( + + + {m.cube}.{m.name}{" "} + ({m.member_type}) + + + ))} + +
+ )} + + {aiRetained.length > 0 && ( +
+ + Retained + + + {aiRetained.map((m) => ( + + + {m.cube}.{m.name}{" "} + ({m.member_type}) + + + ))} + +
+ )} + + {aiRemoved.length > 0 && ( +
+ + Removed + + + {aiRemoved.map((m) => ( + + + {m.cube}.{m.name}{" "} + ({m.member_type}) + + + ))} + +
+ )} +
+ )} + + {!hasChanges && + !hasAIMetrics && + nonAIPreserved.length === 0 && + preview.blocks_preserved.length === 0 && ( + + )} + + ); +}; + +/** Top-level profile summary banner. */ +const ProfileHero: FC<{ + table: string; + schema: string; + profileData: any; +}> = ({ table, schema, profileData }) => { + const rows = profileData.row_count ?? 0; + const allCols = profileData.columns?.filter(Boolean) ?? []; + const cols = allCols.length; + const activeCols = allCols.filter( + (c: any) => c.has_values !== false && c.value_rows > 0 + ).length; + const pks = profileData.primary_keys?.length ?? 0; + const arrays = profileData.array_candidates?.length ?? 0; + + return ( +
+
+ + {schema !== "no_schema" ? `${schema}.` : ""} + {table} + + {profileData.sampled && ( + + sampled {(profileData.sample_size ?? 0).toLocaleString()} rows + + )} +
+
+
+ {rows.toLocaleString()} + rows +
+
+ {cols} + columns +
+
+ {activeCols} + active +
+
+ {pks} + primary keys +
+ {arrays > 0 && ( +
+ {arrays} + arrays +
+ )} +
+
+ ); +}; + +/** Expandable column detail row. */ +const ColumnDetailPanel: FC<{ col: any }> = ({ col }) => { + const lcVals: string[] = col.lc_values + ? Array.isArray(col.lc_values) + ? col.lc_values + : Object.keys(col.lc_values) + : []; + + return ( +
+
+ {col.value_rows != null && ( +
+ Non-null + + {Number(col.value_rows).toLocaleString()} + +
+ )} + {col.unique_values != null && ( +
+ Unique + + {Number(col.unique_values).toLocaleString()} + +
+ )} + {col.min_value != null && ( +
+ Min + {col.min_value} +
+ )} + {col.max_value != null && ( +
+ Max + {col.max_value} +
+ )} + {col.avg_value != null && ( +
+ Avg + + {Number(col.avg_value).toLocaleString(undefined, { + maximumFractionDigits: 2, + })} + +
+ )} + {col.max_array_length != null && ( +
+ Max array len + {col.max_array_length} +
+ )} + {col.description && ( +
{col.description}
+ )} + {lcVals.length > 0 && ( +
+ Values +
+ {lcVals.map((v) => ( + + {v} + + ))} +
+
+ )} + {col.unique_keys && col.unique_keys.length > 0 && ( +
+ Map keys +
+ {col.unique_keys.map((k: string) => ( + + {k} + + ))} +
+
+ )} +
+
+ ); +}; + +/** Format large numbers compactly: 1234 → "1.2K", 1234567 → "1.2M" */ +function compactNum(n: number | null | undefined): string { + if (n == null) return "—"; + const v = Number(n); + if (v >= 1_000_000) return `${(v / 1_000_000).toFixed(1)}M`; + if (v >= 1_000) return `${(v / 1_000).toFixed(1)}K`; + return v.toLocaleString(); +} + +/** Get inline info text: description, LC value preview, or range hint */ +function getColumnInfo(col: any): { text?: string; tags?: string[] } { + // Show LC values as inline tags (most useful at-a-glance info) + const lcVals: string[] = col.lc_values + ? Array.isArray(col.lc_values) + ? col.lc_values + : Object.keys(col.lc_values) + : []; + if (lcVals.length > 0) { + return { tags: lcVals.slice(0, 5) }; + } + // Show description if available + if (col.description) { + return { text: col.description }; + } + // Show range for numeric columns + if (col.min_value != null && col.max_value != null) { + return { text: `${col.min_value} … ${col.max_value}` }; + } + // Show map key count + if (col.unique_keys?.length > 0) { + return { text: `${col.unique_keys.length} map keys` }; + } + return {}; +} + +type ColumnFilter = "all" | "active" | "empty"; + +/** Infinite-scroll column list with activity indicators and inline stats. */ +const ColumnList: FC<{ + columns: any[]; + rowCount: number; + selectedColumns?: Set; + onSelectionChange?: (selected: Set) => void; +}> = ({ columns, rowCount, selectedColumns, onSelectionChange }) => { + const [expandedCol, setExpandedCol] = useState(null); + const [search, setSearch] = useState(""); + const [filter, setFilter] = useState("all"); + const selectable = !!onSelectionChange; + + const activeCount = useMemo( + () => + columns.filter((c) => c.has_values !== false && c.value_rows > 0).length, + [columns] + ); + const emptyCount = columns.length - activeCount; + + const filtered = useMemo(() => { + let result = columns; + + // Activity filter + if (filter === "active") { + result = result.filter((c) => c.has_values !== false && c.value_rows > 0); + } else if (filter === "empty") { + result = result.filter( + (c) => c.has_values === false || !(c.value_rows > 0) + ); + } + + // Search filter + if (search) { + const q = search.toLowerCase(); + result = result.filter( + (c) => + c.name.toLowerCase().includes(q) || + (c.description && c.description.toLowerCase().includes(q)) || + (c.raw_type && c.raw_type.toLowerCase().includes(q)) + ); + } + + return result; + }, [columns, search, filter]); + + return ( +
+
+ {(["all", "active", "empty"] as ColumnFilter[]).map((f) => ( + setFilter(f)} + > + {f === "all" + ? `All (${columns.length})` + : f === "active" + ? `Active (${activeCount})` + : `Empty (${emptyCount})`} + + ))} + setSearch(e.target.value)} + /> +
+
+
+ {selectable && ( + c.has_values !== false && c.value_rows > 0) + .every((c) => selectedColumns.has(c.name)) + } + indeterminate={ + selectedColumns != null && + filtered.some((c) => selectedColumns.has(c.name)) && + !filtered + .filter((c) => c.has_values !== false && c.value_rows > 0) + .every((c) => selectedColumns.has(c.name)) + } + onChange={(e) => { + if (!onSelectionChange || !selectedColumns) return; + const next = new Set(selectedColumns); + const activeFiltered = filtered.filter( + (c) => c.has_values !== false && c.value_rows > 0 + ); + if (e.target.checked) { + activeFiltered.forEach((c) => next.add(c.name)); + } else { + activeFiltered.forEach((c) => next.delete(c.name)); + } + onSelectionChange(next); + }} + /> + )} + + + Name + Type + Fill + Unique + Info +
+ {filtered.map((col) => { + const isOpen = expandedCol === col.name; + const isActive = col.has_values !== false && col.value_rows > 0; + const fillPct = + rowCount > 0 && col.value_rows != null + ? Math.round((Number(col.value_rows) / rowCount) * 100) + : isActive + ? 100 + : 0; + const info = getColumnInfo(col); + + return ( +
+
setExpandedCol(isOpen ? null : col.name)} + > + {selectable && ( + e.stopPropagation()} + onChange={(e) => { + if (!onSelectionChange || !selectedColumns) return; + const next = new Set(selectedColumns); + if (e.target.checked) { + next.add(col.name); + } else { + next.delete(col.name); + } + onSelectionChange(next); + }} + /> + )} + + + {col.name} + + {col.raw_type} + + + + + + {fillPct}% + + + {col.unique_values != null + ? compactNum(col.unique_values) + : "—"} + + + {info.tags ? ( + + {info.tags.map((t) => ( + {t} + ))} + + ) : info.text ? ( + {info.text} + ) : null} + +
+ {isOpen && } +
+ ); + })} + {filtered.length === 0 && ( +
+ No columns match “{search}” +
+ )} +
+
+ ); +}; + +type SmartGenStep = + | "select" + | "profiling" + | "preview" + | "previewing_changes" + | "change_preview" + | "applying" + | "done"; + +interface ArrayJoinSelection { + column: string; + alias: string; + selected: boolean; +} + +interface SmartGenerationProps { + dataSource: DataSourceInfo; + /** All available datasources for the select step (defaults to [dataSource]) */ + dataSources?: DataSourceInfo[]; + schema: Schema | undefined; + branchId: string; + branches: Branch[]; + onComplete: (savedBranchId: string) => void; + onCancel: () => void; + /** Pre-selected table schema (e.g. "cst") from model provenance — skips table selection */ + initialSchema?: string; + /** Pre-selected table name (e.g. "semantic_events") from model provenance — skips table selection */ + initialTable?: string; + /** Filters from previous generation (pre-populated on reprofile) */ + previousFilters?: FilterCondition[]; +} + +const SmartGeneration: FC = ({ + dataSource: initialDataSource, + dataSources, + schema: initialSchemaData, + branchId: initialBranchId, + branches: initialBranches, + onComplete, + onCancel, + initialSchema, + initialTable, + previousFilters, +}) => { + const { t } = useTranslation(["models", "common"]); + + const availableSources = useMemo(() => { + const list = + dataSources && dataSources.length > 0 ? dataSources : [initialDataSource]; + return list.filter(Boolean) as DataSourceInfo[]; + }, [dataSources, initialDataSource]); + + const [selectedDataSourceId, setSelectedDataSourceId] = useState( + () => availableSources[0]?.id || initialDataSource.id || "" + ); + + useEffect(() => { + if (!availableSources.length) return; + if (!availableSources.some((ds) => ds.id === selectedDataSourceId)) { + setSelectedDataSourceId(availableSources[0].id || ""); + } + }, [availableSources, selectedDataSourceId]); + + const dataSource = + availableSources.find((ds) => ds.id === selectedDataSourceId) || + availableSources[0] || + initialDataSource; + + const branches = dataSource.branches?.length + ? dataSource.branches + : selectedDataSourceId === initialDataSource.id + ? initialBranches + : dataSource.branches || []; + + const branchId = + branches.find((b) => b.status === Branch_Statuses_Enum.Active)?.id || + branches[0]?.id || + (selectedDataSourceId === initialDataSource.id ? initialBranchId : "") || + ""; + + const [tablesResult, execFetchTables] = useFetchTablesQuery({ + variables: { id: selectedDataSourceId }, + pause: !selectedDataSourceId, + requestPolicy: "cache-and-network", + }); + + useEffect(() => { + if (selectedDataSourceId) { + execFetchTables(); + } + }, [selectedDataSourceId, execFetchTables]); + + const schema = + tablesResult.data?.fetch_tables?.schema || + (selectedDataSourceId === initialDataSource.id + ? initialSchemaData + : undefined); + + const isSchemaLoading = tablesResult.fetching && !schema; + + const [step, setStep] = useState("select"); + const [targetBranchId, setTargetBranchId] = useState(branchId); + const [lockedBranchId, setLockedBranchId] = useState(null); + const [saveToBranchId, setSaveToBranchId] = useState(""); + + const metaBranchId = lockedBranchId || targetBranchId; + const [filters, setFilters] = useState( + previousFilters || [] + ); + const [selectedSchema, setSelectedSchema] = useState( + initialSchema || "" + ); + const [selectedTable, setSelectedTable] = useState( + initialTable || "" + ); + const [mergeStrategy, setMergeStrategy] = useState("auto"); + const [fileNameOverride, setFileNameOverride] = useState(""); + const [cubeNameOverride, setCubeNameOverride] = useState(""); + const [arrayJoinSelections, setArrayJoinSelections] = useState< + ArrayJoinSelection[] + >([]); + const [error, setError] = useState(null); + const [rawProfile, setRawProfile] = useState(null); + const [changePreview, setChangePreview] = useState( + null + ); + const [suggestedAIMetrics, setSuggestedAIMetrics] = useState([]); + const [selectedAIMetricNames, setSelectedAIMetricNames] = useState< + Set + >(new Set()); + const [selectedColumns, setSelectedColumns] = useState>( + new Set() + ); + + const [selectedModelFields, setSelectedModelFields] = useState>( + new Set() + ); + const [profileData, setProfileData] = useState(null); + const [skipLlm, setSkipLlm] = useState(false); + const [progressEvents, setProgressEvents] = useState([]); + const abortRef = useRef(null); + + const [smartGenResult, execSmartGen] = useSmartGenDataSchemasMutation(); + + const handleDataSourceSelect = useCallback((id: string) => { + setSelectedDataSourceId(id); + setSelectedSchema(""); + setSelectedTable(""); + setFilters([]); + setError(null); + setLockedBranchId(null); + setSaveToBranchId(""); + }, []); + + useEffect(() => { + setTargetBranchId(branchId); + }, [branchId]); + + useEffect(() => { + if (!branches?.length) return; + const ids = new Set(branches.map((b) => b.id)); + if (targetBranchId && ids.has(targetBranchId)) return; + if (branchId && ids.has(branchId)) { + setTargetBranchId(branchId); + return; + } + setTargetBranchId(branches[0].id); + }, [branches, branchId, targetBranchId]); + + // Fetch Cube.js meta — same query the Explore page uses. + // pause=false when both datasource + branch are available (mirrors Explore page pattern). + const [metaResult, execMetaQuery] = useFetchMetaQuery({ + variables: { datasource_id: dataSource.id!, branch_id: metaBranchId }, + pause: !dataSource.id || !metaBranchId, + }); + + // Re-fetch meta when datasource or branch changes + useEffect(() => { + if (dataSource.id && metaBranchId) { + execMetaQuery(); + } + }, [dataSource.id, metaBranchId, execMetaQuery]); + + // Build dimension map: raw ClickHouse column name → fully-qualified Cube.js + // dimension member (e.g. "event" → "semantic_events.event"). + // + // Three matching strategies, in priority order: + // 1. dim.meta.source_column === rawColumn (direct, set by our cubeBuilder) + // 2. dim short name === rawColumn (exact, works for simple columns) + // 3. dim short name === sanitized(rawColumn) (handles special chars) + const dimensionMap = useMemo(() => { + const cubes = metaResult.data?.fetch_meta?.cubes as any[] | undefined; + if (!cubes || cubes.length === 0) return undefined; + + // Collect ALL dimensions across all cubes, indexed by short name and source_column + const bySourceCol: Record = {}; + const byShortName: Record = {}; + + for (const cube of cubes) { + for (const dim of cube.dimensions || []) { + if (!dim.name) continue; + const fullName: string = dim.name; // "cubeName.dimName" + + // Strategy 1: meta.source_column + const sc = dim.meta?.source_column; + if (sc && typeof sc === "string") { + bySourceCol[sc] = fullName; + } + + // Index by short name for strategies 2 & 3 + const dot = fullName.lastIndexOf("."); + const shortName = dot >= 0 ? fullName.slice(dot + 1) : fullName; + byShortName[shortName] = fullName; + } + } + + // Now map each raw column from the table schema + const tableColumns = schema?.[selectedSchema]?.[selectedTable] || []; + if (tableColumns.length === 0) return undefined; + + const map: DimensionMap = {}; + for (const col of tableColumns) { + const raw = col.name; + + // Strategy 1: exact source_column match + if (bySourceCol[raw]) { + map[raw] = bySourceCol[raw]; + continue; + } + + // Strategy 2: exact short-name match + if (byShortName[raw]) { + map[raw] = byShortName[raw]; + continue; + } + + // Strategy 3: sanitized match + let sanitized = raw.replace(/[^a-zA-Z0-9_]/g, "_"); + if (/^\d/.test(sanitized)) sanitized = `field_${sanitized}`; + sanitized = sanitized.replace(/_+/g, "_").replace(/^_+|_+$/g, ""); + if (sanitized && byShortName[sanitized]) { + map[raw] = byShortName[sanitized]; + } + } + + if (Object.keys(map).length > 0) { + console.debug("[FilterBuilder] dimensionMap built:", map); + return map; + } + console.debug( + "[FilterBuilder] no dimension map — meta cubes:", + cubes?.length, + "tableColumns:", + tableColumns.length, + "byShortName keys:", + Object.keys(byShortName).slice(0, 5), + "bySourceCol keys:", + Object.keys(bySourceCol).slice(0, 5) + ); + return undefined; + }, [metaResult.data, selectedSchema, selectedTable, schema]); + + /** Profile a table via direct SSE to CubeJS — bypasses Hasura for real-time progress. */ + const startProfile = useCallback( + (tblSchema: string, tblName: string) => { + // Abort any in-flight profile + abortRef.current?.abort(); + const controller = new AbortController(); + abortRef.current = controller; + + setStep("profiling"); + setLockedBranchId(targetBranchId); + setError(null); + setRawProfile(null); + setChangePreview(null); + setProfileData(null); + setProgressEvents([]); + + const token = + AuthTokensStore.getState().workosAccessToken || + AuthTokensStore.getState().accessToken; + + fetch("/api/v1/profile-table", { + method: "POST", + headers: { + "Content-Type": "application/json", + Accept: "text/event-stream", + ...(token ? { Authorization: `Bearer ${token}` } : {}), + "x-hasura-datasource-id": dataSource.id!, + "x-hasura-branch-id": targetBranchId, + }, + body: JSON.stringify({ + table: tblName, + schema: tblSchema, + branchId: targetBranchId, + ...(filters.length > 0 ? { filters } : {}), + }), + signal: controller.signal, + }) + .then(async (res) => { + if (!res.ok) { + const body = await res.json().catch(() => null); + throw new Error(body?.message || `Profile failed (${res.status})`); + } + + const reader = res.body?.getReader(); + if (!reader) throw new Error("No response stream"); + + const decoder = new TextDecoder(); + let buffer = ""; + // SSE event accumulator — handles data split across chunks + let sseEvent = ""; + let sseData = ""; + + const handleSseEvent = (eventType: string, dataStr: string) => { + let data: any; + try { + data = JSON.parse(dataStr); + } catch { + return; // incomplete or malformed JSON + } + + if (eventType === "progress") { + setProgressEvents((prev) => [...prev, data as ProgressEvent]); + } else if (eventType === "complete") { + const pd = data; + setProfileData(pd); + if (pd.existing_model?.suggested_merge_strategy) { + setMergeStrategy(pd.existing_model.suggested_merge_strategy); + } + if (pd.raw_profile) { + setRawProfile(pd.raw_profile); + } + if (pd.array_candidates?.length) { + setArrayJoinSelections( + pd.array_candidates.filter(Boolean).map((c: any) => ({ + column: c.column, + alias: c.suggested_alias, + selected: false, + })) + ); + } + // Auto-select columns that carry analytical signal. Mirrors the + // skip cascade in cubeBuilder.processColumns so the user sees the + // same fields checked as would be auto-included by the backend. + // Skipped: + // - has_values === false (no rows / never populated) + // - STRING/UUID with unique_values === 0 (only empty strings) + // - STRING/UUID with the single LC-probed value being '', whitespace, '0' or 0 + // - NUMBER with min===max===0 (all-zero column) + // - BOOLEAN/Int8 with min===max OR unique_values===1 (constant flag) + if (pd.columns?.length) { + const isAlwaysSameBool = (c: any) => + c.value_type === "BOOLEAN" && + ((c.min_value != null && + c.max_value != null && + c.min_value === c.max_value) || + c.unique_values === 1); + const isAllZeroNumber = (c: any) => + c.value_type === "NUMBER" && + c.min_value != null && + c.max_value != null && + Number(c.min_value) === 0 && + Number(c.max_value) === 0; + const isEmptyConstantString = (c: any) => { + if (c.value_type !== "STRING" && c.value_type !== "UUID") + return false; + if (c.column_type === "MAP") return false; + if (c.unique_values === 0) return true; + if ( + c.unique_values === 1 && + Array.isArray(c.lc_values) && + c.lc_values.length === 1 + ) { + const v = c.lc_values[0]; + return ( + v == null || + v === "" || + v === "0" || + v === 0 || + (typeof v === "string" && v.trim() === "") + ); + } + return false; + }; + const carriesSignal = (c: any) => { + if (c.has_values === false && !(c.value_rows > 0)) + return false; + if (isAlwaysSameBool(c)) return false; + if (isAllZeroNumber(c)) return false; + if (isEmptyConstantString(c)) return false; + return true; + }; + const active = pd.columns + .filter(carriesSignal) + .map((c: any) => c.name); + setSelectedColumns(new Set(active)); + } + setSaveToBranchId(targetBranchId); + setStep("preview"); + } else if (eventType === "error") { + setError(data.error || "Profiling failed"); + setStep("select"); + setLockedBranchId(null); + setSaveToBranchId(""); + } + }; + + while (true) { + const { done, value } = await reader.read(); + if (done) break; + + buffer += decoder.decode(value, { stream: true }); + const lines = buffer.split("\n"); + buffer = lines.pop() || ""; + + for (const line of lines) { + if (line === "") { + // Blank line = end of SSE event block + if (sseEvent && sseData) { + handleSseEvent(sseEvent, sseData); + } + sseEvent = ""; + sseData = ""; + } else if (line.startsWith("event: ")) { + sseEvent = line.slice(7).trim(); + } else if (line.startsWith("data: ")) { + sseData += line.slice(6); + } else if (sseData) { + // Continuation of a data line split across chunks + sseData += line; + } + } + } + // Handle final event if stream ends without trailing blank line + if (sseEvent && sseData) { + handleSseEvent(sseEvent, sseData); + } + }) + .catch((err) => { + if (err.name === "AbortError") return; // cancelled by user + setError(err.message || "Profiling failed"); + setStep("select"); + setLockedBranchId(null); + setSaveToBranchId(""); + }); + }, + [dataSource.id, targetBranchId, filters] + ); + + // Sync late-arriving initial selection (e.g. after page refresh). + // Initial table/schema can be resolved by parent after this component mounts. + useEffect(() => { + const tableExistsInSchema = + !!initialSchema && + !!initialTable && + !!schema?.[initialSchema]?.[initialTable]; + + if (tableExistsInSchema) { + setSelectedSchema(initialSchema); + setSelectedTable(initialTable); + setStep("select"); + setError(null); + + // Pre-populate filters from previous generation when reprofiling. + if (previousFilters && previousFilters.length > 0) { + setFilters(previousFilters); + } + } + }, [initialSchema, initialTable, previousFilters, schema]); + + useEffect(() => { + return () => abortRef.current?.abort(); + }, []); + + const tableOptions = useMemo(() => { + if (!schema) return []; + const options: { label: string; value: string }[] = []; + for (const [schemaName, tables] of Object.entries(schema)) { + for (const tableName of Object.keys(tables)) { + options.push({ + label: + schemaName === "no_schema" + ? tableName + : `${schemaName}.${tableName}`, + value: `${schemaName}::${tableName}`, + }); + } + } + return options; + }, [schema]); + + const branchOptions = useMemo( + () => + (branches || []).map((b) => ({ + value: b.id, + label: + b.status === Branch_Statuses_Enum.Active + ? `${b.name} (${t("common:words.default")})` + : b.name, + })), + [branches, t] + ); + + const saveBranch = saveToBranchId || lockedBranchId || targetBranchId; + + const isTableOptionsLoading = + isSchemaLoading || !schema || tableOptions.length === 0; + + const dataSourceOptions = useMemo( + () => + availableSources.map((ds) => ({ + value: ds.id!, + label: ds.name, + })), + [availableSources] + ); + + const selectedTableValue = useMemo(() => { + if (!selectedSchema || !selectedTable) return undefined; + const value = `${selectedSchema}::${selectedTable}`; + return tableOptions.some((option) => option.value === value) + ? value + : undefined; + }, [selectedSchema, selectedTable, tableOptions]); + + const handleTableSelect = useCallback((value: string) => { + const [schemaName, tableName] = value.split("::"); + setSelectedSchema(schemaName); + setSelectedTable(tableName); + setFilters([]); + setError(null); + }, []); + + const handleProfile = useCallback(() => { + if (!branchOptions.length) { + setError(t("models:smart_gen.no_branches")); + return; + } + if (!selectedTable || !selectedSchema) return; + startProfile(selectedSchema, selectedTable); + }, [branchOptions.length, selectedTable, selectedSchema, startProfile, t]); + + // Preview changes (dry-run) — no ClickHouse query, uses cached profile + const handlePreviewChanges = useCallback(async () => { + setStep("previewing_changes"); + setError(null); + + const selectedArrayJoins = arrayJoinSelections + .filter((a) => a.selected) + .map((a) => ({ column: a.column, alias: a.alias })); + + // Pass selected_columns whenever the user has deselected any columns + const totalColumns = profileData?.columns?.length ?? 0; + const isSubset = + selectedColumns.size > 0 && selectedColumns.size < totalColumns; + + const result = await execSmartGen({ + datasource_id: dataSource.id!, + branch_id: saveBranch, + table_name: selectedTable, + table_schema: selectedSchema, + merge_strategy: mergeStrategy, + array_join_columns: selectedArrayJoins.length + ? selectedArrayJoins + : undefined, + profile_data: rawProfile || undefined, + dry_run: true, + filters: filters.length > 0 ? filters : undefined, + file_name: fileNameOverride || undefined, + cube_name: cubeNameOverride || undefined, + selected_columns: isSubset ? [...selectedColumns] : undefined, + skip_llm: skipLlm || undefined, + } as any); + + if (result.error) { + setError(result.error.message); + setStep("preview"); + return; + } + + const genData = result.data?.smart_gen_dataschemas; + const preview = genData?.change_preview; + if (preview) { + setChangePreview(preview as ChangePreview); + + // Required fields: rewrite rule dimensions + filter dimensions (always included) + const requiredSet = new Set(genData?.required_fields || []); + + // Default selection rules: + // ALWAYS checked: count measure, required fields (rewrite rules + filters) + // Checked by default: regular columns (no source tag) + // Unchecked (opt-in): map fields, nested fields, AI-generated fields + const isDefaultSelected = (f: any) => { + const key = `${f.cube}.${f.name}`; + // Always include required fields + if (requiredSet.has(key)) return true; + // Always include the count measure + if (f.name === "count" && f.member_type === "measure") return true; + // Opt-in: AI-generated fields start unchecked (user picks from suggestions) + if (f.source === "ai") return false; + // Everything else checked by default + return true; + }; + + const allKeys = [ + ...(preview.fields_added || []) + .filter(isDefaultSelected) + .map((f: any) => `${f.cube}.${f.name}`), + ...(preview.fields_updated || []) + .filter(isDefaultSelected) + .map((f: any) => `${f.cube}.${f.name}`), + ]; + setSelectedModelFields(new Set(allKeys)); + } + + // Capture AI metric suggestions from the LLM (if any) + const aiSuggestions = genData?.ai_enrichment?.suggested_metrics || []; + setSuggestedAIMetrics(aiSuggestions); + // AI metrics are opt-in (unchecked by default) + setSelectedAIMetricNames(new Set()); + + setStep("change_preview"); + }, [ + dataSource.id, + saveBranch, + selectedTable, + selectedSchema, + mergeStrategy, + arrayJoinSelections, + rawProfile, + filters, + selectedColumns, + profileData, + execSmartGen, + ]); + + // Apply changes (real mutation) — uses cached profile, no ClickHouse query + const handleApply = useCallback(async () => { + setStep("applying"); + setError(null); + + const selectedArrayJoins = arrayJoinSelections + .filter((a) => a.selected) + .map((a) => ({ column: a.column, alias: a.alias })); + + // Pass selected_columns whenever the user has deselected any columns + const applyTotalColumns = profileData?.columns?.length ?? 0; + const applyIsSubset = + selectedColumns.size > 0 && selectedColumns.size < applyTotalColumns; + + // Compute excluded fields: all preview fields NOT in the user's selection + const allPreviewFields = [ + ...((changePreview?.fields_added || []) as ChangeField[]), + ...((changePreview?.fields_updated || []) as ChangeField[]), + ].map((f) => `${f.cube}.${f.name}`); + const excludedFields = allPreviewFields.filter( + (key) => !selectedModelFields.has(key) + ); + + const result = await execSmartGen({ + datasource_id: dataSource.id!, + branch_id: saveBranch, + table_name: selectedTable, + table_schema: selectedSchema, + merge_strategy: mergeStrategy, + array_join_columns: selectedArrayJoins.length + ? selectedArrayJoins + : undefined, + profile_data: rawProfile || undefined, + dry_run: false, + filters: filters.length > 0 ? filters : undefined, + file_name: fileNameOverride || undefined, + cube_name: cubeNameOverride || undefined, + selected_ai_metrics: [...selectedAIMetricNames], + selected_columns: applyIsSubset ? [...selectedColumns] : undefined, + excluded_fields: excludedFields.length > 0 ? excludedFields : undefined, + skip_llm: skipLlm || undefined, + } as any); + + if (result.error) { + setError(result.error.message); + setStep("change_preview"); + return; + } + + setStep("done"); + }, [ + dataSource.id, + saveBranch, + selectedTable, + selectedSchema, + mergeStrategy, + arrayJoinSelections, + rawProfile, + filters, + selectedAIMetricNames, + selectedColumns, + selectedModelFields, + changePreview, + profileData, + execSmartGen, + ]); + + const handleProfileCancel = useCallback(() => { + abortRef.current?.abort(); + setError(null); + setStep("select"); + setLockedBranchId(null); + setSaveToBranchId(""); + }, []); + + const genData = smartGenResult.data?.smart_gen_dataschemas; + + return ( +
+
+
+ + {dataSource.name} + +
+ + Smart Generate analyzes your table structure and creates an optimized + Cube.js data model with auto-detected dimensions, measures, and Map + key expansion. + +
+ + {step === "select" && branchOptions.length === 0 && ( + + )} + + {/* Step 1: Data Source + Table Selection */} + {step === "select" && ( + <> +
+ Select a data source + + (option?.label ?? "") + .toString() + .toLowerCase() + .includes(input.toLowerCase()) + } + options={tableOptions} + /> +
+ + {selectedTable && selectedSchema && schema && ( +
+ Filters (optional) + + Add filters to profile a data subset instead of the entire + table. + + { + const tableColumns = + schema?.[selectedSchema]?.[selectedTable] || []; + return tableColumns.map((col) => ({ + name: col.name, + raw_type: col.type, + value_type: /int|float|decimal|double/i.test(col.type) + ? "NUMBER" + : /date|datetime/i.test(col.type) + ? "DATE" + : /bool/i.test(col.type) + ? "BOOLEAN" + : "STRING", + })); + })()} + filters={filters} + onChange={setFilters} + dimensionMap={dimensionMap} + tableName={selectedTable} + tableSchema={selectedSchema} + datasourceId={dataSource.id!} + branchId={metaBranchId} + /> +
+ )} + + {error && ( + + )} + +
+ + +
+ + )} + + {/* Step 2: Profiling in progress (real SSE progress) */} + {step === "profiling" && ( + + )} + + {/* Step 3: Profile preview + options */} + {step === "preview" && profileData && ( + <> + + + {profileData.columns && profileData.columns.length > 0 && ( + <> +
+ {selectedColumns.size} of{" "} + { + profileData.columns.filter( + (c: any) => c.has_values !== false && c.value_rows > 0 + ).length + }{" "} + active columns selected for model +
+ + + )} + + {arrayJoinSelections.length > 0 && ( +
+ Array Columns (ARRAY JOIN) + + Select array columns to flatten into separate queryable cubes. + + + {arrayJoinSelections.map((aj, idx) => ( +
+ { + const updated = [...arrayJoinSelections]; + updated[idx] = { + ...updated[idx], + selected: e.target.checked, + }; + setArrayJoinSelections(updated); + }} + > + {aj.column} + + {aj.selected && ( + { + const updated = [...arrayJoinSelections]; + updated[idx] = { + ...updated[idx], + alias: e.target.value, + }; + setArrayJoinSelections(updated); + }} + /> + )} +
+ ))} +
+
+ )} + + {profileData.existing_model && ( +
+ + Existing model:{" "} + + {profileData.existing_model.file_name} + + {profileData.existing_model.file_format === "js" && ( + <> — JS file, YAML will coexist + )} + + setMergeStrategy(e.target.value)} + > + + + Auto ({profileData.existing_model.suggested_merge_strategy}) + + Merge (preserve user content) + Replace (overwrite) + + +
+ )} + +
+ {t("models:smart_gen.output_names_title")} + + {t("models:smart_gen.output_save_branch_label")} + + handleRoleChange(record, val)} + style={{ width: 110 }} + options={Object.values(Roles).map((r) => ({ + label: r, + value: r, + }))} + /> + ); + }, + }, + ...(isPortalAdmin + ? [ + { + title: "", + key: "actions", + width: 80, + render: (_: unknown, record: Member) => ( + handleRemove(record)} + > + + + ), + }, + ] + : []), + ]; + + return ( +
+ + View and manage team members. Change roles or remove members as needed. + + + {isPortalAdmin && ( + + setInviteEmail(e.target.value)} + onPressEnter={handleInvite} + placeholder="Email address" + style={{ flex: 1 }} + /> +
10 ? { pageSize: 10, size: "small" } : false + } + scroll={members.length > 8 ? { y: 400 } : undefined} + /> + + ); +}; + +const PropertiesTab: FC<{ team: Team }> = ({ team }) => { + const [form] = Form.useForm(); + const [, updateProperties] = useMutation(UPDATE_TEAM_PROPERTIES); + const [saving, setSaving] = useState(false); + + useEffect(() => { + const settings = team.settings || {}; + const entries = Object.entries(settings).map(([key, value]) => ({ + key, + value: typeof value === "string" ? value : JSON.stringify(value), + })); + form.setFieldsValue({ + properties: entries.length > 0 ? entries : [{ key: "", value: "" }], + }); + }, [team.id, team.settings, form]); + + const handleSave = async () => { + const values = form.getFieldsValue(); + const properties: Record = {}; + (values.properties || []).forEach( + (entry: { key: string; value: string }) => { + if (entry.key) { + properties[entry.key] = entry.value || null; + } + } + ); + + setSaving(true); + const res = await updateProperties({ + team_id: team.id, + properties, + }); + setSaving(false); + + if (res.data?.update_team_properties?.success) { + message.success("Team properties updated"); + } else { + message.error("Failed to update team properties"); + } + }; + + return ( +
+ + Manage key-value properties for this team. Properties like + "partition" are used for data access controls. + + +
+ + {(fields, { add, remove }) => ( + <> + {fields.map(({ key, name, ...restField }) => ( + + + + + + + + remove(name)} + > + + + + ))} + + + )} + + + +
+ ); +}; + +const TeamSettings: FC = ({ + initialValue, + onSubmit, + team, + isPortalAdmin = false, +}) => { const { t } = useTranslation(["settings", "common"]); const { control, handleSubmit } = useForm({ values: initialValue, }); - return ( -
- {t("members.team_settings.title")} - - + const members = team?.members || []; + const isEditing = !!initialValue?.id; + + const generalContent = ( +
+ + {t("members.team_settings.team_name")} and basic team configuration. + + + + + + + +
+ ); - - + if (!isEditing) { + return ( +
+ + {t("members.team_settings.title")} + + {generalContent} +
+ ); + } + + if (!isPortalAdmin) { + return ( +
+ + {t("members.team_settings.title")} + + {generalContent} + {members.length > 0 && ( + + )} +
+ ); + } + + const tabItems = [ + { + key: "general", + label: "General", + children: generalContent, + }, + { + key: "members", + label: `Members (${members.length})`, + children: ( + + ), + }, + { + key: "properties", + label: "Properties", + children: , + }, + { + key: "smart-gen", + label: "Smart Generation", + children: ( +
+ +
+ ), + }, + ]; + + return ( +
+ + {t("members.team_settings.title")} + + +
); }; diff --git a/src/components/TeamsTable/index.tsx b/src/components/TeamsTable/index.tsx index 90d94f0f..d8bc5af2 100644 --- a/src/components/TeamsTable/index.tsx +++ b/src/components/TeamsTable/index.tsx @@ -23,7 +23,7 @@ interface TeamsTableProps { onEdit: (team: Team) => void; } -const AVATAR_COLORS = ["#000000", "#470D69", "#A31BCB"]; +const AVATAR_COLORS = ["#000000", "#3f6587", "#4a7faa"]; const TeamsTable: FC = ({ teams, @@ -42,7 +42,7 @@ const TeamsTable: FC = ({ {value} {record.id === currentTeam?.id && ( - + {t("common:words.current")} )} diff --git a/src/components/UserDataWrapper/index.tsx b/src/components/UserDataWrapper/index.tsx index a25c0ae8..a784164c 100644 --- a/src/components/UserDataWrapper/index.tsx +++ b/src/components/UserDataWrapper/index.tsx @@ -1,4 +1,5 @@ import useUserData from "@/hooks/useUserData"; +import PageLoading from "@/components/PageLoading"; import type { ReactNode } from "react"; @@ -7,7 +8,11 @@ export type UserDataWrapperProps = { }; const UserDataWapper: React.FC = ({ children }) => { - useUserData(); + const { bootstrapping } = useUserData(); + + if (bootstrapping) { + return ; + } return <>{children}; }; diff --git a/src/components/VersionPreview/index.module.less b/src/components/VersionPreview/index.module.less index 08a2cc24..417c6975 100644 --- a/src/components/VersionPreview/index.module.less +++ b/src/components/VersionPreview/index.module.less @@ -6,7 +6,7 @@ .version { overflow: hidden; - color: #a31bcb; + color: #4a7faa; font-weight: 700; font-size: 14px; white-space: nowrap; diff --git a/src/components/VersionPreview/index.tsx b/src/components/VersionPreview/index.tsx index b49d0fc9..8beaac98 100644 --- a/src/components/VersionPreview/index.tsx +++ b/src/components/VersionPreview/index.tsx @@ -47,7 +47,7 @@ const VersionPreview: FC = ({ = ({ @@ -164,7 +171,62 @@ const VirtualTable: FC = ({ loading, loadingTip, sortinMode = "client-side", + showAutoSizeButton = true, + toolbarExtra, }) => { + const [columnWidths, setColumnWidths] = useState>({}); + const [tableKey, setTableKey] = useState(0); + const wrapperRef = useRef(null); + const resizeRef = useRef<{ + colId: string; + startX: number; + startWidth: number; + } | null>(null); + + const getColumnWidth = useCallback( + (colId: string) => + Math.max(MIN_COL_WIDTH, columnWidths[colId] ?? COL_WIDTH), + [columnWidths] + ); + + const onResizeStart = useCallback( + (colId: string, e: React.MouseEvent) => { + e.preventDefault(); + e.stopPropagation(); + resizeRef.current = { + colId, + startX: e.clientX, + startWidth: getColumnWidth(colId), + }; + document.body.style.cursor = "col-resize"; + document.body.style.userSelect = "none"; + }, + [getColumnWidth] + ); + + useEffect(() => { + const onMouseMove = (e: MouseEvent) => { + if (!resizeRef.current) return; + const { colId, startX, startWidth } = resizeRef.current; + const newWidth = Math.max(MIN_COL_WIDTH, startWidth + e.clientX - startX); + setColumnWidths((prev) => ({ ...prev, [colId]: newWidth })); + }; + const onMouseUp = () => { + if (resizeRef.current) { + document.body.style.cursor = ""; + document.body.style.userSelect = ""; + setTableKey((k) => k + 1); + } + resizeRef.current = null; + }; + document.addEventListener("mousemove", onMouseMove); + document.addEventListener("mouseup", onMouseUp); + return () => { + document.removeEventListener("mousemove", onMouseMove); + document.removeEventListener("mouseup", onMouseUp); + }; + }, []); + const defaultColumns = useMemo( () => Object.keys(getOr({}, 0, data)).map((colId) => { @@ -196,24 +258,44 @@ const VirtualTable: FC = ({ useSortBy ); + const autoSizeColumns = useCallback(() => { + if (flatHeaders.length === 0) return; + const HEADER_EXTRA = 48; + const newWidths: Record = {}; + const rawRows = data || []; + const hasNoRows = rawRows.length === 0; + flatHeaders.forEach((col) => { + const headerStr = typeof col.Header === "string" ? col.Header : col.id; + const headerWidth = + String(headerStr).length * PX_PER_CHAR + HEADER_PADDING + HEADER_EXTRA; + let maxDataWidth = 0; + rawRows.forEach((row: any) => { + const val = row?.[col.id]; + const str = + typeof val === "object" ? JSON.stringify(val) : String(val ?? ""); + const len = Math.min(str.length, 100); + maxDataWidth = Math.max( + maxDataWidth, + len * PX_PER_CHAR + HEADER_PADDING + ); + }); + const baseWidth = Math.max(headerWidth, maxDataWidth); + newWidths[col.id] = Math.max( + MIN_COL_WIDTH, + hasNoRows ? Math.ceil(headerWidth * 1.15) : baseWidth + ); + }); + setColumnWidths(newWidths); + setTableKey((k) => k + 1); + message.success("Columns auto-sized"); + }, [flatHeaders, data]); + const headerRenderer: TableHeaderRenderer = ({ label, columnData }) => { const { sortDirection, onSortChange, columnId, granularity } = columnData; - let humanLabel = label; - - if (granularity) { - humanLabel = `${label} (by ${granularity})`; - } - - const children = [ - - - {humanLabel} - - , - ]; + const fullTitle = (columnData as any).fullTitle; + const tooltipTitle = + fullTitle ?? (granularity ? `${label} (by ${granularity})` : label); + const shortLabel = typeof label === "string" ? label : String(label ?? ""); let icon = ; @@ -248,25 +330,38 @@ const VirtualTable: FC = ({ }, ]; - if (sortDisabled) { - return children; - } + const dataKey = (columnData as any).dataKey ?? columnId; - children.push( - + return ( +
+ + + {shortLabel} + + +
+ {!sortDisabled && ( + + )} +
onResizeStart(dataKey, e)} + > + +
+
+
); - - return children; }; const cellDataGetter: TableCellDataGetter = ({ rowData, dataKey }) => { @@ -343,15 +438,16 @@ const VirtualTable: FC = ({ }; const isEmpty = !columns.length && !rows.length; + const TABLE_PADDING = 40; const tableWidth = useMemo(() => { - let tw = flatHeaders.length * COL_WIDTH; - - if (!hideIndexColumn) { - tw += INDEX_COL_WIDTH; - } + let tw = flatHeaders.reduce((sum, col) => sum + getColumnWidth(col.id), 0); + if (!hideIndexColumn) tw += INDEX_COL_WIDTH; + return tw + TABLE_PADDING; + }, [flatHeaders, getColumnWidth, hideIndexColumn]); - return tw; - }, [flatHeaders.length, hideIndexColumn]); + const wrapperWidth = wrapperRef.current?.clientWidth || width; + const hasOverflow = tableWidth > wrapperWidth; + const effectiveTableWidth = hasOverflow ? tableWidth : wrapperWidth; const defaultEmptyComponent = ( @@ -371,25 +467,42 @@ const VirtualTable: FC = ({ message={msg.text} /> ))} -
-
+
+ {(showAutoSizeButton || toolbarExtra) && ( +
+ {showAutoSizeButton && ( + + )} + {toolbarExtra} +
+ )} +
rows[index]} rowStyle={({ index }) => ({ - width: tableWidth, background: index % 2 ? "rgba(249, 249, 249, 1)" : "none", })} noRowsRenderer={noRowsRenderer} @@ -401,10 +514,15 @@ const VirtualTable: FC = ({ {!hideIndexColumn && ( rowData.index + 1} + cellRenderer={({ cellData }) => ( +
{cellData}
+ )} dataKey="index" width={INDEX_COL_WIDTH} + flexGrow={0} + flexShrink={0} /> )} {flatHeaders.map((col) => { @@ -412,6 +530,7 @@ const VirtualTable: FC = ({ const columnMemberId = `${cube}.${field}`; const value = col.render("Header"); + const fullTitle = (col as any).fullTitle ?? value; const colSortConfig = sortBy.find((sortItem) => sortItem.id === columnMemberId) || @@ -429,12 +548,16 @@ const VirtualTable: FC = ({ key={col.id} label={value} dataKey={col.id} - width={COL_WIDTH} + width={getColumnWidth(col.id)} + flexGrow={hasOverflow ? 0 : 1} + flexShrink={0} headerRenderer={headerRenderer} cellDataGetter={cellDataGetter} cellRenderer={internalCellRenderer} columnData={{ columnId: columnMemberId, + dataKey: col.id, + fullTitle, onSortChange, sortDirection, granularity, diff --git a/src/global.less b/src/global.less index 41a105e2..6a4ef16e 100644 --- a/src/global.less +++ b/src/global.less @@ -20,47 +20,7 @@ body, src: url("/public/fonts/Montserrat-Bold.ttf") format("truetype"); } -@font-face { - font-weight: 200; - font-family: "Manrope"; - font-style: normal; - src: url("/public/fonts/Manrope-Light.ttf") format("truetype"); -} - -@font-face { - font-weight: 300; - font-family: "Manrope"; - font-style: normal; - src: url("/public/fonts/Manrope-ExtraLight.ttf") format("truetype"); -} - -@font-face { - font-weight: 400; - font-family: "Manrope"; - font-style: normal; - src: url("/public/fonts/Manrope-Regular.ttf") format("truetype"); -} - -@font-face { - font-weight: 500; - font-family: "Manrope"; - font-style: normal; - src: url("/public/fonts/Manrope-Medium.ttf") format("truetype"); -} - -@font-face { - font-weight: 600; - font-family: "Manrope"; - font-style: normal; - src: url("/public/fonts/Manrope-SemiBold.ttf") format("truetype"); -} - -@font-face { - font-weight: 700; - font-family: "Manrope"; - font-style: normal; - src: url("/public/fonts/Manrope-Bold.ttf") format("truetype"); -} +/* Lato and Inter loaded via Google Fonts CDN in index.html */ @font-face { font-weight: normal; @@ -89,26 +49,30 @@ body, body { margin: 0; - font-family: var(--font-manrope); + font-family: var(--font-inter); line-height: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } -div, +div { + font-family: var(--font-inter); +} + h1, h2, h3, h4, h5 { - font-family: var(--font-manrope); + font-family: var(--font-lato); } :root { /* fonts */ --font-montserrat: Montserrat; --font-gotham-pro: "Gotham Pro"; - --font-manrope: "Manrope"; + --font-inter: "Inter", sans-serif; + --font-lato: "Lato", sans-serif; --font-sora: "Sora"; /* font sizes */ @@ -120,16 +84,16 @@ h5 { --font-size-sm: 14px; /* Colors */ - --color-primary: #470d69; - --color-mediumpurple: #a56edd; - --color-dimgray-100: #463854; - --color-dimgray-200: rgba(70, 56, 84, 0.2); - --color-dimgray-300: rgba(70, 56, 84, 0.1); + --color-primary: #3f6587; + --color-mediumpurple: #5a8ab5; + --color-dimgray-100: #3a4f63; + --color-dimgray-200: rgba(58, 79, 99, 0.2); + --color-dimgray-300: rgba(58, 79, 99, 0.1); --color-gray: rgba(255, 255, 255, 0.2); --color-darkslategray: #343743; --color-darkslategray-100: rgba(52, 55, 67, 0.2); - --color-whitesmoke: #e9e8ee; - --color-darkorchid: #b65cf8; + --color-whitesmoke: #e8edf2; + --color-darkorchid: #6ba3d6; --color-white: #fff; --color-black: #000; --color-error: #ff4d4f; @@ -190,6 +154,6 @@ h5 { .ant-table-cell { font-size: 12px; - font-family: var(--font-manrope); + font-family: var(--font-inter); background: transparent !important; } diff --git a/src/graphql/generated.ts b/src/graphql/generated.ts index a830ac02..5bb6a5ef 100644 --- a/src/graphql/generated.ts +++ b/src/graphql/generated.ts @@ -30,11 +30,22 @@ export type Scalars = { json: { input: any; output: any }; jsonb: { input: any; output: any }; numeric: { input: any; output: any }; - timestamp: { input: any; output: any }; timestamptz: { input: any; output: any }; uuid: { input: any; output: any }; }; +export type ArrayCandidateOutput = { + __typename?: "ArrayCandidateOutput"; + column: Scalars["String"]["output"]; + element_type: Scalars["String"]["output"]; + suggested_alias: Scalars["String"]["output"]; +}; + +export type ArrayJoinInput = { + alias: Scalars["String"]["input"]; + column: Scalars["String"]["input"]; +}; + /** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ export type Boolean_Comparison_Exp = { _eq?: InputMaybe; @@ -60,6 +71,17 @@ export type CreateTeamOutput = { name?: Maybe; }; +export type ExistingModelInfo = { + __typename?: "ExistingModelInfo"; + file_format: Scalars["String"]["output"]; + file_name: Scalars["String"]["output"]; + has_user_content: Scalars["Boolean"]["output"]; + has_ai_metrics: Scalars["Boolean"]["output"]; + suggested_merge_strategy: Scalars["String"]["output"]; + supports_reprofile: Scalars["Boolean"]["output"]; + previous_filters?: Maybe; +}; + export type ExportDataModelsOutput = { __typename?: "ExportDataModelsOutput"; download_url: Scalars["String"]["output"]; @@ -120,6 +142,37 @@ export type PreAggregationsOutput = { data: Scalars["json"]["output"]; }; +export type ProfileTableOutput = { + __typename?: "ProfileTableOutput"; + array_candidates?: Maybe>>; + code: Scalars["String"]["output"]; + columns?: Maybe>>; + existing_model?: Maybe; + primary_keys?: Maybe>>; + row_count?: Maybe; + sample_size?: Maybe; + sampled: Scalars["Boolean"]["output"]; +}; + +export type ProfiledColumnOutput = { + __typename?: "ProfiledColumnOutput"; + column_type: Scalars["String"]["output"]; + has_values: Scalars["Boolean"]["output"]; + value_rows?: Maybe; + lc_values?: Maybe; + name: Scalars["String"]["output"]; + raw_type: Scalars["String"]["output"]; + unique_keys?: Maybe>>; + unique_values?: Maybe; + min_value?: Maybe; + max_value?: Maybe; + avg_value?: Maybe; + max_array_length?: Maybe; + key_stats?: Maybe; + description?: Maybe; + value_type: Scalars["String"]["output"]; +}; + export type RunSourceQueryOutput = { __typename?: "RunSourceQueryOutput"; result?: Maybe; @@ -131,6 +184,15 @@ export type SendTestAlertOutput = { result?: Maybe; }; +export type SmartGenOutput = { + __typename?: "SmartGenOutput"; + changed: Scalars["Boolean"]["output"]; + code: Scalars["String"]["output"]; + file_name?: Maybe; + message?: Maybe; + version_id?: Maybe; +}; + export type SourceMetaOutput = { __typename?: "SourceMetaOutput"; cubes?: Maybe; @@ -179,6 +241,12 @@ export type String_Comparison_Exp = { _similar?: InputMaybe; }; +export type UpdateTeamSettingsOutput = { + __typename?: "UpdateTeamSettingsOutput"; + code: Scalars["String"]["output"]; + message?: Maybe; +}; + /** columns and relationships of "access_lists" */ export type Access_Lists = { __typename?: "access_lists"; @@ -1336,6 +1404,7 @@ export type Auth_Accounts = { /** An object relationship */ user: Users; user_id: Scalars["uuid"]["output"]; + workos_user_id?: Maybe; }; /** columns and relationships of "auth.accounts" */ @@ -1492,6 +1561,7 @@ export type Auth_Accounts_Bool_Exp = { updated_at?: InputMaybe; user?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** unique or primary key constraints on table "auth.accounts" */ @@ -1504,6 +1574,8 @@ export enum Auth_Accounts_Constraint { AccountsPkey = "accounts_pkey", /** unique or primary key constraint on columns "user_id" */ AccountsUserIdKey = "accounts_user_id_key", + /** unique or primary key constraint on columns "workos_user_id" */ + AccountsWorkosUserIdUnique = "accounts_workos_user_id_unique", } /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -1543,6 +1615,7 @@ export type Auth_Accounts_Insert_Input = { updated_at?: InputMaybe; user?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** aggregate max on columns */ @@ -1559,6 +1632,7 @@ export type Auth_Accounts_Max_Fields = { ticket_expires_at?: Maybe; updated_at?: Maybe; user_id?: Maybe; + workos_user_id?: Maybe; }; /** order by max() on columns of table "auth.accounts" */ @@ -1574,6 +1648,7 @@ export type Auth_Accounts_Max_Order_By = { ticket_expires_at?: InputMaybe; updated_at?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** aggregate min on columns */ @@ -1590,6 +1665,7 @@ export type Auth_Accounts_Min_Fields = { ticket_expires_at?: Maybe; updated_at?: Maybe; user_id?: Maybe; + workos_user_id?: Maybe; }; /** order by min() on columns of table "auth.accounts" */ @@ -1605,6 +1681,7 @@ export type Auth_Accounts_Min_Order_By = { ticket_expires_at?: InputMaybe; updated_at?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** response of any mutation on the table "auth.accounts" */ @@ -1652,6 +1729,7 @@ export type Auth_Accounts_Order_By = { updated_at?: InputMaybe; user?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** primary key columns input for table: auth.accounts */ @@ -1696,6 +1774,8 @@ export enum Auth_Accounts_Select_Column { UpdatedAt = "updated_at", /** column name */ UserId = "user_id", + /** column name */ + WorkosUserId = "workos_user_id", } /** select "auth_accounts_aggregate_bool_exp_bool_and_arguments_columns" columns of table "auth.accounts" */ @@ -1735,6 +1815,7 @@ export type Auth_Accounts_Set_Input = { ticket_expires_at?: InputMaybe; updated_at?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** Streaming cursor of the table "auth_accounts" */ @@ -1762,6 +1843,7 @@ export type Auth_Accounts_Stream_Cursor_Value_Input = { ticket_expires_at?: InputMaybe; updated_at?: InputMaybe; user_id?: InputMaybe; + workos_user_id?: InputMaybe; }; /** update columns of table "auth.accounts" */ @@ -1796,6 +1878,8 @@ export enum Auth_Accounts_Update_Column { UpdatedAt = "updated_at", /** column name */ UserId = "user_id", + /** column name */ + WorkosUserId = "workos_user_id", } export type Auth_Accounts_Updates = { @@ -1815,228 +1899,6 @@ export type Auth_Accounts_Updates = { where: Auth_Accounts_Bool_Exp; }; -/** columns and relationships of "auth.migrations" */ -export type Auth_Migrations = { - __typename?: "auth_migrations"; - executed_at?: Maybe; - hash: Scalars["String"]["output"]; - id: Scalars["Int"]["output"]; - name: Scalars["String"]["output"]; -}; - -/** aggregated selection of "auth.migrations" */ -export type Auth_Migrations_Aggregate = { - __typename?: "auth_migrations_aggregate"; - aggregate?: Maybe; - nodes: Array; -}; - -/** aggregate fields of "auth.migrations" */ -export type Auth_Migrations_Aggregate_Fields = { - __typename?: "auth_migrations_aggregate_fields"; - avg?: Maybe; - count: Scalars["Int"]["output"]; - max?: Maybe; - min?: Maybe; - stddev?: Maybe; - stddev_pop?: Maybe; - stddev_samp?: Maybe; - sum?: Maybe; - var_pop?: Maybe; - var_samp?: Maybe; - variance?: Maybe; -}; - -/** aggregate fields of "auth.migrations" */ -export type Auth_Migrations_Aggregate_FieldsCountArgs = { - columns?: InputMaybe>; - distinct?: InputMaybe; -}; - -/** aggregate avg on columns */ -export type Auth_Migrations_Avg_Fields = { - __typename?: "auth_migrations_avg_fields"; - id?: Maybe; -}; - -/** Boolean expression to filter rows from the table "auth.migrations". All fields are combined with a logical 'AND'. */ -export type Auth_Migrations_Bool_Exp = { - _and?: InputMaybe>; - _not?: InputMaybe; - _or?: InputMaybe>; - executed_at?: InputMaybe; - hash?: InputMaybe; - id?: InputMaybe; - name?: InputMaybe; -}; - -/** unique or primary key constraints on table "auth.migrations" */ -export enum Auth_Migrations_Constraint { - /** unique or primary key constraint on columns "name" */ - MigrationsNameKey = "migrations_name_key", - /** unique or primary key constraint on columns "id" */ - MigrationsPkey = "migrations_pkey", -} - -/** input type for incrementing numeric columns in table "auth.migrations" */ -export type Auth_Migrations_Inc_Input = { - id?: InputMaybe; -}; - -/** input type for inserting data into table "auth.migrations" */ -export type Auth_Migrations_Insert_Input = { - executed_at?: InputMaybe; - hash?: InputMaybe; - id?: InputMaybe; - name?: InputMaybe; -}; - -/** aggregate max on columns */ -export type Auth_Migrations_Max_Fields = { - __typename?: "auth_migrations_max_fields"; - executed_at?: Maybe; - hash?: Maybe; - id?: Maybe; - name?: Maybe; -}; - -/** aggregate min on columns */ -export type Auth_Migrations_Min_Fields = { - __typename?: "auth_migrations_min_fields"; - executed_at?: Maybe; - hash?: Maybe; - id?: Maybe; - name?: Maybe; -}; - -/** response of any mutation on the table "auth.migrations" */ -export type Auth_Migrations_Mutation_Response = { - __typename?: "auth_migrations_mutation_response"; - /** number of rows affected by the mutation */ - affected_rows: Scalars["Int"]["output"]; - /** data from the rows affected by the mutation */ - returning: Array; -}; - -/** on_conflict condition type for table "auth.migrations" */ -export type Auth_Migrations_On_Conflict = { - constraint: Auth_Migrations_Constraint; - update_columns?: Array; - where?: InputMaybe; -}; - -/** Ordering options when selecting data from "auth.migrations". */ -export type Auth_Migrations_Order_By = { - executed_at?: InputMaybe; - hash?: InputMaybe; - id?: InputMaybe; - name?: InputMaybe; -}; - -/** primary key columns input for table: auth.migrations */ -export type Auth_Migrations_Pk_Columns_Input = { - id: Scalars["Int"]["input"]; -}; - -/** select columns of table "auth.migrations" */ -export enum Auth_Migrations_Select_Column { - /** column name */ - ExecutedAt = "executed_at", - /** column name */ - Hash = "hash", - /** column name */ - Id = "id", - /** column name */ - Name = "name", -} - -/** input type for updating data in table "auth.migrations" */ -export type Auth_Migrations_Set_Input = { - executed_at?: InputMaybe; - hash?: InputMaybe; - id?: InputMaybe; - name?: InputMaybe; -}; - -/** aggregate stddev on columns */ -export type Auth_Migrations_Stddev_Fields = { - __typename?: "auth_migrations_stddev_fields"; - id?: Maybe; -}; - -/** aggregate stddev_pop on columns */ -export type Auth_Migrations_Stddev_Pop_Fields = { - __typename?: "auth_migrations_stddev_pop_fields"; - id?: Maybe; -}; - -/** aggregate stddev_samp on columns */ -export type Auth_Migrations_Stddev_Samp_Fields = { - __typename?: "auth_migrations_stddev_samp_fields"; - id?: Maybe; -}; - -/** Streaming cursor of the table "auth_migrations" */ -export type Auth_Migrations_Stream_Cursor_Input = { - /** Stream column input with initial value */ - initial_value: Auth_Migrations_Stream_Cursor_Value_Input; - /** cursor ordering */ - ordering?: InputMaybe; -}; - -/** Initial value of the column from where the streaming should start */ -export type Auth_Migrations_Stream_Cursor_Value_Input = { - executed_at?: InputMaybe; - hash?: InputMaybe; - id?: InputMaybe; - name?: InputMaybe; -}; - -/** aggregate sum on columns */ -export type Auth_Migrations_Sum_Fields = { - __typename?: "auth_migrations_sum_fields"; - id?: Maybe; -}; - -/** update columns of table "auth.migrations" */ -export enum Auth_Migrations_Update_Column { - /** column name */ - ExecutedAt = "executed_at", - /** column name */ - Hash = "hash", - /** column name */ - Id = "id", - /** column name */ - Name = "name", -} - -export type Auth_Migrations_Updates = { - /** increments the numeric columns with given value of the filtered values */ - _inc?: InputMaybe; - /** sets the columns of the filtered rows to the given values */ - _set?: InputMaybe; - /** filter the rows which have to be updated */ - where: Auth_Migrations_Bool_Exp; -}; - -/** aggregate var_pop on columns */ -export type Auth_Migrations_Var_Pop_Fields = { - __typename?: "auth_migrations_var_pop_fields"; - id?: Maybe; -}; - -/** aggregate var_samp on columns */ -export type Auth_Migrations_Var_Samp_Fields = { - __typename?: "auth_migrations_var_samp_fields"; - id?: Maybe; -}; - -/** aggregate variance on columns */ -export type Auth_Migrations_Variance_Fields = { - __typename?: "auth_migrations_variance_fields"; - id?: Maybe; -}; - /** columns and relationships of "auth.providers" */ export type Auth_Providers = { __typename?: "auth_providers"; @@ -5347,10 +5209,6 @@ export type Mutation_Root = { delete_auth_accounts?: Maybe; /** delete single row from the table: "auth.accounts" */ delete_auth_accounts_by_pk?: Maybe; - /** delete data from the table: "auth.migrations" */ - delete_auth_migrations?: Maybe; - /** delete single row from the table: "auth.migrations" */ - delete_auth_migrations_by_pk?: Maybe; /** delete data from the table: "auth.providers" */ delete_auth_providers?: Maybe; /** delete single row from the table: "auth.providers" */ @@ -5458,10 +5316,6 @@ export type Mutation_Root = { insert_auth_accounts?: Maybe; /** insert a single row into the table: "auth.accounts" */ insert_auth_accounts_one?: Maybe; - /** insert data into the table: "auth.migrations" */ - insert_auth_migrations?: Maybe; - /** insert a single row into the table: "auth.migrations" */ - insert_auth_migrations_one?: Maybe; /** insert data into the table: "auth.providers" */ insert_auth_providers?: Maybe; /** insert a single row into the table: "auth.providers" */ @@ -5549,6 +5403,7 @@ export type Mutation_Root = { invite_team_member?: Maybe; run_query?: Maybe; send_test_alert?: Maybe; + smart_gen_dataschemas?: Maybe; /** update data of the table: "access_lists" */ update_access_lists?: Maybe; /** update single row of the table: "access_lists" */ @@ -5587,14 +5442,6 @@ export type Mutation_Root = { update_auth_accounts_many?: Maybe< Array> >; - /** update data of the table: "auth.migrations" */ - update_auth_migrations?: Maybe; - /** update single row of the table: "auth.migrations" */ - update_auth_migrations_by_pk?: Maybe; - /** update multiples rows of table: "auth.migrations" */ - update_auth_migrations_many?: Maybe< - Array> - >; /** update data of the table: "auth.providers" */ update_auth_providers?: Maybe; /** update single row of the table: "auth.providers" */ @@ -5721,6 +5568,7 @@ export type Mutation_Root = { update_team_roles_by_pk?: Maybe; /** update multiples rows of table: "team_roles" */ update_team_roles_many?: Maybe>>; + update_team_settings?: Maybe; /** update data of the table: "teams" */ update_teams?: Maybe; /** update single row of the table: "teams" */ @@ -5806,16 +5654,6 @@ export type Mutation_RootDelete_Auth_Accounts_By_PkArgs = { id: Scalars["uuid"]["input"]; }; -/** mutation root */ -export type Mutation_RootDelete_Auth_MigrationsArgs = { - where: Auth_Migrations_Bool_Exp; -}; - -/** mutation root */ -export type Mutation_RootDelete_Auth_Migrations_By_PkArgs = { - id: Scalars["Int"]["input"]; -}; - /** mutation root */ export type Mutation_RootDelete_Auth_ProvidersArgs = { where: Auth_Providers_Bool_Exp; @@ -6105,18 +5943,6 @@ export type Mutation_RootInsert_Auth_Accounts_OneArgs = { on_conflict?: InputMaybe; }; -/** mutation root */ -export type Mutation_RootInsert_Auth_MigrationsArgs = { - objects: Array; - on_conflict?: InputMaybe; -}; - -/** mutation root */ -export type Mutation_RootInsert_Auth_Migrations_OneArgs = { - object: Auth_Migrations_Insert_Input; - on_conflict?: InputMaybe; -}; - /** mutation root */ export type Mutation_RootInsert_Auth_ProvidersArgs = { objects: Array; @@ -6393,6 +6219,17 @@ export type Mutation_RootSend_Test_AlertArgs = { name?: InputMaybe; }; +/** mutation root */ +export type Mutation_RootSmart_Gen_DataschemasArgs = { + array_join_columns?: InputMaybe>>; + branch_id: Scalars["uuid"]["input"]; + datasource_id: Scalars["uuid"]["input"]; + max_map_keys?: InputMaybe; + merge_strategy?: InputMaybe; + table_name: Scalars["String"]["input"]; + table_schema: Scalars["String"]["input"]; +}; + /** mutation root */ export type Mutation_RootUpdate_Access_ListsArgs = { _append?: InputMaybe; @@ -6508,25 +6345,6 @@ export type Mutation_RootUpdate_Auth_Accounts_ManyArgs = { updates: Array; }; -/** mutation root */ -export type Mutation_RootUpdate_Auth_MigrationsArgs = { - _inc?: InputMaybe; - _set?: InputMaybe; - where: Auth_Migrations_Bool_Exp; -}; - -/** mutation root */ -export type Mutation_RootUpdate_Auth_Migrations_By_PkArgs = { - _inc?: InputMaybe; - _set?: InputMaybe; - pk_columns: Auth_Migrations_Pk_Columns_Input; -}; - -/** mutation root */ -export type Mutation_RootUpdate_Auth_Migrations_ManyArgs = { - updates: Array; -}; - /** mutation root */ export type Mutation_RootUpdate_Auth_ProvidersArgs = { _set?: InputMaybe; @@ -6905,14 +6723,30 @@ export type Mutation_RootUpdate_Team_Roles_ManyArgs = { updates: Array; }; +/** mutation root */ +export type Mutation_RootUpdate_Team_SettingsArgs = { + settings: Scalars["jsonb"]["input"]; + team_id: Scalars["uuid"]["input"]; +}; + /** mutation root */ export type Mutation_RootUpdate_TeamsArgs = { + _append?: InputMaybe; + _delete_at_path?: InputMaybe; + _delete_elem?: InputMaybe; + _delete_key?: InputMaybe; + _prepend?: InputMaybe; _set?: InputMaybe; where: Teams_Bool_Exp; }; /** mutation root */ export type Mutation_RootUpdate_Teams_By_PkArgs = { + _append?: InputMaybe; + _delete_at_path?: InputMaybe; + _delete_elem?: InputMaybe; + _delete_key?: InputMaybe; + _prepend?: InputMaybe; _set?: InputMaybe; pk_columns: Teams_Pk_Columns_Input; }; @@ -7337,12 +7171,6 @@ export type Query_Root = { auth_accounts_aggregate: Auth_Accounts_Aggregate; /** fetch data from the table: "auth.accounts" using primary key columns */ auth_accounts_by_pk?: Maybe; - /** fetch data from the table: "auth.migrations" */ - auth_migrations: Array; - /** fetch aggregated fields from the table: "auth.migrations" */ - auth_migrations_aggregate: Auth_Migrations_Aggregate; - /** fetch data from the table: "auth.migrations" using primary key columns */ - auth_migrations_by_pk?: Maybe; /** fetch data from the table: "auth.providers" */ auth_providers: Array; /** fetch aggregated fields from the table: "auth.providers" */ @@ -7427,6 +7255,7 @@ export type Query_Root = { pinned_items_by_pk?: Maybe; pre_aggregation_preview?: Maybe; pre_aggregations?: Maybe; + profile_table?: Maybe; /** An array relationship */ reports: Array; /** An aggregate relationship */ @@ -7577,26 +7406,6 @@ export type Query_RootAuth_Accounts_By_PkArgs = { id: Scalars["uuid"]["input"]; }; -export type Query_RootAuth_MigrationsArgs = { - distinct_on?: InputMaybe>; - limit?: InputMaybe; - offset?: InputMaybe; - order_by?: InputMaybe>; - where?: InputMaybe; -}; - -export type Query_RootAuth_Migrations_AggregateArgs = { - distinct_on?: InputMaybe>; - limit?: InputMaybe; - offset?: InputMaybe; - order_by?: InputMaybe>; - where?: InputMaybe; -}; - -export type Query_RootAuth_Migrations_By_PkArgs = { - id: Scalars["Int"]["input"]; -}; - export type Query_RootAuth_ProvidersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -7886,6 +7695,13 @@ export type Query_RootPre_AggregationsArgs = { datasource_id: Scalars["String"]["input"]; }; +export type Query_RootProfile_TableArgs = { + branch_id: Scalars["uuid"]["input"]; + datasource_id: Scalars["uuid"]["input"]; + table_name: Scalars["String"]["input"]; + table_schema: Scalars["String"]["input"]; +}; + export type Query_RootReportsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -9587,14 +9403,6 @@ export type Subscription_Root = { auth_accounts_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "auth.accounts" */ auth_accounts_stream: Array; - /** fetch data from the table: "auth.migrations" */ - auth_migrations: Array; - /** fetch aggregated fields from the table: "auth.migrations" */ - auth_migrations_aggregate: Auth_Migrations_Aggregate; - /** fetch data from the table: "auth.migrations" using primary key columns */ - auth_migrations_by_pk?: Maybe; - /** fetch data from the table in a streaming manner: "auth.migrations" */ - auth_migrations_stream: Array; /** fetch data from the table: "auth.providers" */ auth_providers: Array; /** fetch aggregated fields from the table: "auth.providers" */ @@ -9896,32 +9704,6 @@ export type Subscription_RootAuth_Accounts_StreamArgs = { where?: InputMaybe; }; -export type Subscription_RootAuth_MigrationsArgs = { - distinct_on?: InputMaybe>; - limit?: InputMaybe; - offset?: InputMaybe; - order_by?: InputMaybe>; - where?: InputMaybe; -}; - -export type Subscription_RootAuth_Migrations_AggregateArgs = { - distinct_on?: InputMaybe>; - limit?: InputMaybe; - offset?: InputMaybe; - order_by?: InputMaybe>; - where?: InputMaybe; -}; - -export type Subscription_RootAuth_Migrations_By_PkArgs = { - id: Scalars["Int"]["input"]; -}; - -export type Subscription_RootAuth_Migrations_StreamArgs = { - batch_size: Scalars["Int"]["input"]; - cursor: Array>; - where?: InputMaybe; -}; - export type Subscription_RootAuth_ProvidersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -10671,6 +10453,8 @@ export type Teams = { reports: Array; /** An aggregate relationship */ reports_aggregate: Reports_Aggregate; + /** Team-level admin configuration (partition, internal_tables) */ + settings: Scalars["jsonb"]["output"]; updated_at: Scalars["timestamptz"]["output"]; /** An object relationship */ user: Users; @@ -10785,6 +10569,11 @@ export type TeamsReports_AggregateArgs = { where?: InputMaybe; }; +/** columns and relationships of "teams" */ +export type TeamsSettingsArgs = { + path?: InputMaybe; +}; + /** aggregated selection of "teams" */ export type Teams_Aggregate = { __typename?: "teams_aggregate"; @@ -10824,6 +10613,12 @@ export type Teams_Aggregate_Order_By = { min?: InputMaybe; }; +/** append existing jsonb value of filtered columns with new jsonb value */ +export type Teams_Append_Input = { + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; +}; + /** input type for inserting array relation for remote table "teams" */ export type Teams_Arr_Rel_Insert_Input = { data: Array; @@ -10851,6 +10646,7 @@ export type Teams_Bool_Exp = { name?: InputMaybe; reports?: InputMaybe; reports_aggregate?: InputMaybe; + settings?: InputMaybe; updated_at?: InputMaybe; user?: InputMaybe; user_id?: InputMaybe; @@ -10858,12 +10654,30 @@ export type Teams_Bool_Exp = { /** unique or primary key constraints on table "teams" */ export enum Teams_Constraint { + /** unique or primary key constraint on columns */ + TeamsNameUnique = "teams_name_unique", /** unique or primary key constraint on columns "id" */ TeamsPkey = "teams_pkey", - /** unique or primary key constraint on columns "user_id", "name" */ - TeamsUserIdNameKey = "teams_user_id_name_key", } +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export type Teams_Delete_At_Path_Input = { + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe>; +}; + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export type Teams_Delete_Elem_Input = { + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; +}; + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export type Teams_Delete_Key_Input = { + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; +}; + /** input type for inserting data into table "teams" */ export type Teams_Insert_Input = { access_lists?: InputMaybe; @@ -10875,6 +10689,8 @@ export type Teams_Insert_Input = { members?: InputMaybe; name?: InputMaybe; reports?: InputMaybe; + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; updated_at?: InputMaybe; user?: InputMaybe; user_id?: InputMaybe; @@ -10952,6 +10768,7 @@ export type Teams_Order_By = { members_aggregate?: InputMaybe; name?: InputMaybe; reports_aggregate?: InputMaybe; + settings?: InputMaybe; updated_at?: InputMaybe; user?: InputMaybe; user_id?: InputMaybe; @@ -10962,6 +10779,12 @@ export type Teams_Pk_Columns_Input = { id: Scalars["uuid"]["input"]; }; +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export type Teams_Prepend_Input = { + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; +}; + /** select columns of table "teams" */ export enum Teams_Select_Column { /** column name */ @@ -10971,6 +10794,8 @@ export enum Teams_Select_Column { /** column name */ Name = "name", /** column name */ + Settings = "settings", + /** column name */ UpdatedAt = "updated_at", /** column name */ UserId = "user_id", @@ -10981,6 +10806,8 @@ export type Teams_Set_Input = { created_at?: InputMaybe; id?: InputMaybe; name?: InputMaybe; + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; updated_at?: InputMaybe; user_id?: InputMaybe; }; @@ -10998,6 +10825,8 @@ export type Teams_Stream_Cursor_Value_Input = { created_at?: InputMaybe; id?: InputMaybe; name?: InputMaybe; + /** Team-level admin configuration (partition, internal_tables) */ + settings?: InputMaybe; updated_at?: InputMaybe; user_id?: InputMaybe; }; @@ -11011,31 +10840,30 @@ export enum Teams_Update_Column { /** column name */ Name = "name", /** column name */ + Settings = "settings", + /** column name */ UpdatedAt = "updated_at", /** column name */ UserId = "user_id", } export type Teams_Updates = { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: InputMaybe; + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: InputMaybe; + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: InputMaybe; + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: InputMaybe; + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: InputMaybe; /** sets the columns of the filtered rows to the given values */ _set?: InputMaybe; /** filter the rows which have to be updated */ where: Teams_Bool_Exp; }; -/** Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. */ -export type Timestamp_Comparison_Exp = { - _eq?: InputMaybe; - _gt?: InputMaybe; - _gte?: InputMaybe; - _in?: InputMaybe>; - _is_null?: InputMaybe; - _lt?: InputMaybe; - _lte?: InputMaybe; - _neq?: InputMaybe; - _nin?: InputMaybe>; -}; - /** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */ export type Timestamptz_Comparison_Exp = { _eq?: InputMaybe; @@ -11961,6 +11789,7 @@ export type UserTeamFieldsFragment = { __typename?: "teams"; id: any; name: string; + settings: any; created_at: any; updated_at: any; members: Array<{ @@ -12039,6 +11868,7 @@ export type CurrentUserQuery = { __typename?: "teams"; id: any; name: string; + settings: any; created_at: any; updated_at: any; members: Array<{ @@ -12105,6 +11935,7 @@ export type SubCurrentUserSubscription = { __typename?: "teams"; id: any; name: string; + settings: any; created_at: any; updated_at: any; members: Array<{ @@ -12540,6 +12371,122 @@ export type RunSourceSqlQueryMutation = { } | null; }; +export type ProfileTableQueryVariables = Exact<{ + datasource_id: Scalars["uuid"]["input"]; + branch_id: Scalars["uuid"]["input"]; + table_name: Scalars["String"]["input"]; + table_schema: Scalars["String"]["input"]; +}>; + +export type ProfileTableQuery = { + __typename?: "query_root"; + profile_table?: { + __typename?: "ProfileTableOutput"; + code: string; + row_count?: number | null; + sampled: boolean; + sample_size?: number | null; + primary_keys?: Array | null; + columns?: Array<{ + __typename?: "ProfiledColumnOutput"; + name: string; + raw_type: string; + column_type: string; + value_type: string; + has_values: boolean; + value_rows?: number | null; + unique_values?: number | null; + min_value?: string | null; + max_value?: string | null; + avg_value?: number | null; + max_array_length?: number | null; + unique_keys?: Array | null; + lc_values?: any | null; + key_stats?: any | null; + description?: string | null; + } | null> | null; + array_candidates?: Array<{ + __typename?: "ArrayCandidateOutput"; + column: string; + element_type: string; + suggested_alias: string; + } | null> | null; + existing_model?: { + __typename?: "ExistingModelInfo"; + file_name: string; + file_format: string; + has_user_content: boolean; + has_ai_metrics: boolean; + supports_reprofile: boolean; + suggested_merge_strategy: string; + previous_filters?: any | null; + } | null; + raw_profile?: any | null; + } | null; +}; + +export type FilterConditionInput = { + column: Scalars["String"]["input"]; + operator: Scalars["String"]["input"]; + value?: InputMaybe; +}; + +export type SmartGenDataSchemasMutationVariables = Exact<{ + datasource_id: Scalars["uuid"]["input"]; + branch_id: Scalars["uuid"]["input"]; + table_name: Scalars["String"]["input"]; + table_schema: Scalars["String"]["input"]; + array_join_columns?: InputMaybe< + Array> | InputMaybe + >; + max_map_keys?: InputMaybe; + merge_strategy?: InputMaybe; + profile_data?: InputMaybe; + dry_run?: InputMaybe; + filters?: InputMaybe< + Array> | InputMaybe + >; + file_name?: InputMaybe; + cube_name?: InputMaybe; + selected_ai_metrics?: InputMaybe< + | Array> + | InputMaybe + >; + selected_columns?: InputMaybe< + | Array> + | InputMaybe + >; +}>; + +export type SmartGenDataSchemasMutation = { + __typename?: "mutation_root"; + smart_gen_dataschemas?: { + __typename?: "SmartGenOutput"; + code: string; + message?: string | null; + version_id?: any | null; + file_name?: string | null; + changed: boolean; + change_preview?: any | null; + ai_enrichment?: any | null; + previous_filters?: any | null; + } | null; +}; + +export type UpdateTeamSettingsMutationVariables = Exact<{ + team_id: Scalars["uuid"]["input"]; + settings: Scalars["jsonb"]["input"]; +}>; + +export type UpdateTeamSettingsMutation = { + __typename?: "mutation_root"; + update_team_settings?: { + __typename?: "UpdateTeamSettingsOutput"; + code: string; + message?: string | null; + } | null; +}; + export type CreateExplorationMutationVariables = Exact<{ object: Explorations_Insert_Input; }>; @@ -12835,6 +12782,10 @@ export type AllDataSchemasQuery = { created_at: any; updated_at: any; datasource_id: any; + user_id?: any; + checksum?: string | null; + user?: { __typename?: "users"; display_name?: string | null } | null; + datasource?: { __typename?: "datasources"; name: string } | null; }>; }>; }>; @@ -13007,6 +12958,8 @@ export type VersionByBranchIdQuery = { name: string; code: string; checksum?: string | null; + user?: { __typename?: "users"; display_name?: string | null } | null; + datasource?: { __typename?: "datasources"; name: string } | null; }>; }>; versions_aggregate: { @@ -13028,6 +12981,7 @@ export type CurrentVersionQuery = { __typename?: "versions"; id: any; checksum: string; + user?: { __typename?: "users"; display_name?: string | null } | null; dataschemas: Array<{ __typename?: "dataschemas"; created_at: any; @@ -13038,6 +12992,8 @@ export type CurrentVersionQuery = { name: string; code: string; checksum?: string | null; + user?: { __typename?: "users"; display_name?: string | null } | null; + datasource?: { __typename?: "datasources"; name: string } | null; }>; }>; }; @@ -13068,6 +13024,7 @@ export const UserTeamFieldsFragmentDoc = gql` fragment UserTeamFields on teams { id name + settings created_at updated_at members(order_by: { updated_at: desc }) { @@ -13935,6 +13892,171 @@ export function useRunSourceSqlQueryMutation() { RunSourceSqlQueryMutationVariables >(RunSourceSqlQueryDocument); } +export const ProfileTableDocument = gql` + query ProfileTable( + $datasource_id: uuid! + $branch_id: uuid! + $table_name: String! + $table_schema: String! + ) { + profile_table( + datasource_id: $datasource_id + branch_id: $branch_id + table_name: $table_name + table_schema: $table_schema + ) { + code + row_count + sampled + sample_size + columns { + name + raw_type + column_type + value_type + has_values + value_rows + unique_values + min_value + max_value + avg_value + max_array_length + unique_keys + lc_values + key_stats + description + } + array_candidates { + column + element_type + suggested_alias + } + primary_keys + existing_model { + file_name + file_format + has_user_content + has_ai_metrics + supports_reprofile + suggested_merge_strategy + previous_filters + } + raw_profile + } + } +`; + +export function useProfileTableQuery( + options: Omit, "query"> +) { + return Urql.useQuery({ + query: ProfileTableDocument, + ...options, + }); +} +export const SmartGenDataSchemasDocument = gql` + mutation SmartGenDataSchemas( + $datasource_id: uuid! + $branch_id: uuid! + $table_name: String! + $table_schema: String! + $array_join_columns: [ArrayJoinInput] + $max_map_keys: Int + $merge_strategy: String + $profile_data: jsonb + $dry_run: Boolean + $filters: [FilterConditionInput] + $file_name: String + $cube_name: String + $selected_ai_metrics: [String] + $selected_columns: [String] + $excluded_fields: [String] + $skip_llm: Boolean + ) { + smart_gen_dataschemas( + datasource_id: $datasource_id + branch_id: $branch_id + table_name: $table_name + table_schema: $table_schema + array_join_columns: $array_join_columns + max_map_keys: $max_map_keys + merge_strategy: $merge_strategy + profile_data: $profile_data + dry_run: $dry_run + filters: $filters + file_name: $file_name + cube_name: $cube_name + selected_ai_metrics: $selected_ai_metrics + selected_columns: $selected_columns + excluded_fields: $excluded_fields + skip_llm: $skip_llm + ) { + code + message + version_id + file_name + changed + change_preview + ai_enrichment + model_validation + previous_filters + } + } +`; + +export function useSmartGenDataSchemasMutation() { + return Urql.useMutation< + SmartGenDataSchemasMutation, + SmartGenDataSchemasMutationVariables + >(SmartGenDataSchemasDocument); +} +export const UpdateTeamSettingsDocument = gql` + mutation UpdateTeamSettings($team_id: uuid!, $settings: jsonb!) { + update_team_settings(team_id: $team_id, settings: $settings) { + code + message + } + } +`; + +export function useUpdateTeamSettingsMutation() { + return Urql.useMutation< + UpdateTeamSettingsMutation, + UpdateTeamSettingsMutationVariables + >(UpdateTeamSettingsDocument); +} +export const CopyDatasourceDocument = gql` + mutation CopyDatasource($datasource_id: uuid!, $target_team_id: uuid!) { + copy_datasource( + datasource_id: $datasource_id + target_team_id: $target_team_id + ) { + id + name + } + } +`; + +export type CopyDatasourceMutation = { + __typename?: "mutation_root"; + copy_datasource?: { + __typename?: "CopyDatasourceOutput"; + id?: string | null; + name?: string | null; + } | null; +}; + +export type CopyDatasourceMutationVariables = Exact<{ + datasource_id: Scalars["uuid"]["input"]; + target_team_id: Scalars["uuid"]["input"]; +}>; + +export function useCopyDatasourceMutation() { + return Urql.useMutation< + CopyDatasourceMutation, + CopyDatasourceMutationVariables + >(CopyDatasourceDocument); +} export const CreateExplorationDocument = gql` mutation CreateExploration($object: explorations_insert_input!) { insert_explorations_one(object: $object) { @@ -14317,6 +14439,14 @@ export const AllDataSchemasDocument = gql` created_at updated_at datasource_id + user_id + checksum + user { + display_name + } + datasource { + name + } } } } @@ -14568,6 +14698,12 @@ export const VersionByBranchIdDocument = gql` name code checksum + user { + display_name + } + datasource { + name + } } } versions_aggregate(where: { branch_id: { _eq: $branch_id } }) { @@ -14595,6 +14731,9 @@ export const CurrentVersionDocument = gql` ) { id checksum + user { + display_name + } dataschemas(order_by: { name: asc }) { created_at updated_at @@ -14604,6 +14743,12 @@ export const CurrentVersionDocument = gql` name code checksum + user { + display_name + } + datasource { + name + } } } } @@ -14650,6 +14795,7 @@ export const namedOperations = { FetchTables: "FetchTables", FetchMeta: "FetchMeta", CurrentDataSource: "CurrentDataSource", + ProfileTable: "ProfileTable", CurrentExploration: "CurrentExploration", Members: "Members", CurrentLog: "CurrentLog", @@ -14679,6 +14825,8 @@ export const namedOperations = { DeleteDataSource: "DeleteDataSource", GenDataSchemas: "GenDataSchemas", RunSourceSQLQuery: "RunSourceSQLQuery", + SmartGenDataSchemas: "SmartGenDataSchemas", + UpdateTeamSettings: "UpdateTeamSettings", CreateExploration: "CreateExploration", GenSQL: "GenSQL", UpdateMember: "UpdateMember", diff --git a/src/graphql/gql/admin.gql b/src/graphql/gql/admin.gql new file mode 100644 index 00000000..b88bd8a4 --- /dev/null +++ b/src/graphql/gql/admin.gql @@ -0,0 +1,78 @@ +mutation ListAllTeams($limit: Int, $offset: Int, $search: String) { + list_all_teams(limit: $limit, offset: $offset, search: $search) { + teams { + id + name + settings + member_count + datasource_count + created_at + } + total + } +} + +mutation UpdateTeamProperties($team_id: uuid!, $properties: jsonb!) { + update_team_properties(team_id: $team_id, properties: $properties) { + success + } +} + +mutation UpdateMemberProperties($member_id: uuid!, $properties: jsonb!) { + update_member_properties(member_id: $member_id, properties: $properties) { + success + } +} + +mutation ManageQueryRewriteRule( + $action: String! + $id: uuid + $cube_name: String + $dimension: String + $property_source: String + $property_key: String + $operator: String +) { + manage_query_rewrite_rule( + action: $action + id: $id + cube_name: $cube_name + dimension: $dimension + property_source: $property_source + property_key: $property_key + operator: $operator + ) { + success + rule_id + } +} + +query QueryRewriteRules { + query_rewrite_rules(order_by: { cube_name: asc }) { + id + cube_name + dimension + property_source + property_key + operator + created_at + updated_at + } +} + +query TeamMembersAdmin($team_id: uuid!) { + members(where: { team_id: { _eq: $team_id } }) { + id + user_id + properties + user { + display_name + account { + email + } + } + member_roles { + team_role + } + } +} diff --git a/src/graphql/gql/currentUser.gql b/src/graphql/gql/currentUser.gql index d8b98b35..362c70b7 100644 --- a/src/graphql/gql/currentUser.gql +++ b/src/graphql/gql/currentUser.gql @@ -7,12 +7,14 @@ fragment BranchesFields on branches { fragment UserTeamFields on teams { id name + settings created_at updated_at members(order_by: { updated_at: desc }) { id user_id member_roles { + id team_role } user { diff --git a/src/graphql/gql/datasources.gql b/src/graphql/gql/datasources.gql index 5cda2244..fb1f8e1d 100644 --- a/src/graphql/gql/datasources.gql +++ b/src/graphql/gql/datasources.gql @@ -160,3 +160,117 @@ mutation RunSourceSQLQuery( result } } + +query ProfileTable( + $datasource_id: uuid! + $branch_id: uuid! + $table_name: String! + $table_schema: String! +) { + profile_table( + datasource_id: $datasource_id + branch_id: $branch_id + table_name: $table_name + table_schema: $table_schema + ) { + code + row_count + sampled + sample_size + columns { + name + raw_type + column_type + value_type + has_values + value_rows + unique_values + min_value + max_value + avg_value + max_array_length + unique_keys + lc_values + key_stats + description + } + array_candidates { + column + element_type + suggested_alias + } + primary_keys + existing_model { + file_name + file_format + has_user_content + has_ai_metrics + supports_reprofile + suggested_merge_strategy + previous_filters + } + raw_profile + } +} + +mutation SmartGenDataSchemas( + $datasource_id: uuid! + $branch_id: uuid! + $table_name: String! + $table_schema: String! + $array_join_columns: [ArrayJoinInput] + $max_map_keys: Int + $merge_strategy: String + $profile_data: jsonb + $dry_run: Boolean + $filters: [FilterConditionInput] + $file_name: String + $cube_name: String + $selected_ai_metrics: [String] + $selected_columns: [String] + $excluded_fields: [String] + $skip_llm: Boolean +) { + smart_gen_dataschemas( + datasource_id: $datasource_id + branch_id: $branch_id + table_name: $table_name + table_schema: $table_schema + array_join_columns: $array_join_columns + max_map_keys: $max_map_keys + merge_strategy: $merge_strategy + profile_data: $profile_data + dry_run: $dry_run + filters: $filters + file_name: $file_name + cube_name: $cube_name + selected_ai_metrics: $selected_ai_metrics + selected_columns: $selected_columns + excluded_fields: $excluded_fields + skip_llm: $skip_llm + ) { + code + message + version_id + file_name + changed + change_preview + ai_enrichment + model_validation + previous_filters + } +} + +mutation UpdateTeamSettings($team_id: uuid!, $settings: jsonb!) { + update_team_settings(team_id: $team_id, settings: $settings) { + code + message + } +} + +mutation CopyDatasource($datasource_id: uuid!, $target_team_id: uuid!) { + copy_datasource(datasource_id: $datasource_id, target_team_id: $target_team_id) { + id + name + } +} diff --git a/src/graphql/gql/explorations.gql b/src/graphql/gql/explorations.gql index 9ea507d9..707a02d1 100644 --- a/src/graphql/gql/explorations.gql +++ b/src/graphql/gql/explorations.gql @@ -4,9 +4,11 @@ mutation CreateExploration($object: explorations_insert_input!) { } } -mutation GenSQL($exploration_id: uuid!) { - gen_sql(exploration_id: $exploration_id) { +mutation GenSQL($exploration_id: uuid!, $limit: Int) { + gen_sql(exploration_id: $exploration_id, limit: $limit) { result + column_metadata + sql_signature } } diff --git a/src/graphql/gql/schemas.gql b/src/graphql/gql/schemas.gql index 2bf12b76..5120f30f 100644 --- a/src/graphql/gql/schemas.gql +++ b/src/graphql/gql/schemas.gql @@ -45,6 +45,14 @@ query AllDataSchemas( created_at updated_at datasource_id + user_id + checksum + user { + display_name + } + datasource { + name + } } } } diff --git a/src/graphql/gql/versions.gql b/src/graphql/gql/versions.gql index f7f0094f..3bab1fed 100644 --- a/src/graphql/gql/versions.gql +++ b/src/graphql/gql/versions.gql @@ -27,6 +27,12 @@ query versionByBranchId($branch_id: uuid!, $limit: Int, $offset: Int) { name code checksum + user { + display_name + } + datasource { + name + } } } versions_aggregate(where: { branch_id: { _eq: $branch_id } }) { @@ -45,6 +51,9 @@ query CurrentVersion($branch_id: uuid!) { ) { id checksum + user { + display_name + } dataschemas(order_by: { name: asc }) { created_at updated_at @@ -54,6 +63,12 @@ query CurrentVersion($branch_id: uuid!) { name code checksum + user { + display_name + } + datasource { + name + } } } } @@ -65,3 +80,22 @@ subscription VersionsCount($branch_id: uuid!) { } } } + +query FirstDataschemaAppearance($branch_id: uuid!, $name: String!) { + versions( + where: { + branch_id: { _eq: $branch_id } + dataschemas: { name: { _eq: $name } } + } + order_by: { created_at: asc } + limit: 1 + ) { + dataschemas(where: { name: { _eq: $name } }, limit: 1) { + created_at + user_id + user { + display_name + } + } + } +} diff --git a/src/graphql/schemas/hasura.json b/src/graphql/schemas/hasura.json index 4a009b8e..830fb53a 100644 --- a/src/graphql/schemas/hasura.json +++ b/src/graphql/schemas/hasura.json @@ -1,76687 +1 @@ -{ - "__schema": { - "queryType": { - "name": "query_root" - }, - "mutationType": { - "name": "mutation_root" - }, - "subscriptionType": { - "name": "subscription_root" - }, - "types": [ - { - "kind": "SCALAR", - "name": "Boolean", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "description": "Boolean expression to compare columns of type \"Boolean\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CheckConnectionOutput", - "description": null, - "fields": [ - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateTeamOutput", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExportDataModelsOutput", - "description": null, - "fields": [ - { - "name": "download_url", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FetchDatasetOutput", - "description": null, - "fields": [ - { - "name": "annotation", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataSource", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dbType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "external", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hitLimit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastRefreshTime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "progress", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slowQuery", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenSQLOutput", - "description": null, - "fields": [ - { - "name": "result", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenSourceSchemaOutput", - "description": null, - "fields": [ - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "description": "Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InviteTeamMemberOutput", - "description": null, - "fields": [ - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "memberId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PreAggregationPreviewOutput", - "description": null, - "fields": [ - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PreAggregationsOutput", - "description": null, - "fields": [ - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RunSourceQueryOutput", - "description": null, - "fields": [ - { - "name": "result", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SendTestAlertOutput", - "description": null, - "fields": [ - { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "result", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceMetaOutput", - "description": null, - "fields": [ - { - "name": "cubes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceTable", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "schema", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceTablesOutput", - "description": null, - "fields": [ - { - "name": "schema", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "description": "Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ilike", - "description": "does the column match the given case-insensitive pattern", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_iregex", - "description": "does the column match the given POSIX regular expression, case insensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_like", - "description": "does the column match the given pattern", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nilike", - "description": "does the column NOT match the given case-insensitive pattern", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_niregex", - "description": "does the column NOT match the given POSIX regular expression, case insensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nlike", - "description": "does the column NOT match the given pattern", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nregex", - "description": "does the column NOT match the given POSIX regular expression, case sensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nsimilar", - "description": "does the column NOT match the given SQL regular expression", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_regex", - "description": "does the column match the given POSIX regular expression, case sensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_similar", - "description": "does the column match the given SQL regular expression", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": null, - "fields": [ - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRepeatable", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": null, - "fields": [ - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": null, - "fields": [ - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": null, - "fields": [ - { - "name": "defaultValue", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": null, - "fields": [ - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "types", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": null, - "fields": [ - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ENUM", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "access_lists", - "description": "columns and relationships of \"access_lists\"", - "fields": [ - { - "name": "config", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "access_lists_aggregate", - "description": "aggregated selection of \"access_lists\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "access_lists_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "access_lists_aggregate_fields", - "description": "aggregate fields of \"access_lists\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "access_lists_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "access_lists_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_aggregate_order_by", - "description": "order by aggregate values of table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "description": "Boolean expression to filter rows from the table \"access_lists\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "config", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "access_lists_constraint", - "description": "unique or primary key constraints on table \"access_lists\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "access_lists_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_insert_input", - "description": "input type for inserting data into table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "access_lists_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_max_order_by", - "description": "order by max() on columns of table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "access_lists_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_min_order_by", - "description": "order by min() on columns of table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "access_lists_mutation_response", - "description": "response of any mutation on the table \"access_lists\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "description": "on_conflict condition type for table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "description": "Ordering options when selecting data from \"access_lists\".", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_pk_columns_input", - "description": "primary key columns input for table: access_lists", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "access_lists_select_column", - "description": "select columns of table \"access_lists\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_set_input", - "description": "input type for updating data in table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_stream_cursor_input", - "description": "Streaming cursor of the table \"access_lists\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "access_lists_update_column", - "description": "update columns of table \"access_lists\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "access_lists_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "alerts", - "description": "columns and relationships of \"alerts\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locks_config", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_config", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "alerts_aggregate", - "description": "aggregated selection of \"alerts\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "alerts_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "alerts_aggregate_fields", - "description": "aggregate fields of \"alerts\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "alerts_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "alerts_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_order_by", - "description": "order by aggregate values of table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "description": "Boolean expression to filter rows from the table \"alerts\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "alerts_constraint", - "description": "unique or primary key constraints on table \"alerts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "alerts_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "description": "input type for inserting data into table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "alerts_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_max_order_by", - "description": "order by max() on columns of table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "alerts_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_min_order_by", - "description": "order by min() on columns of table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "description": "response of any mutation on the table \"alerts\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "description": "on_conflict condition type for table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "description": "Ordering options when selecting data from \"alerts\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_pk_columns_input", - "description": "primary key columns input for table: alerts", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "alerts_select_column", - "description": "select columns of table \"alerts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locks_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "description": "input type for updating data in table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_input", - "description": "Streaming cursor of the table \"alerts\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locks_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "alerts_update_column", - "description": "update columns of table \"alerts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locks_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "alerts_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_providers", - "description": "columns and relationships of \"auth.account_providers\"", - "fields": [ - { - "name": "account", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "description": "aggregated selection of \"auth.account_providers\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate_fields", - "description": "aggregate fields of \"auth.account_providers\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_order_by", - "description": "order by aggregate values of table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.account_providers\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_account_providers_constraint", - "description": "unique or primary key constraints on table \"auth.account_providers\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_providers_account_id_auth_provider_key", - "description": "unique or primary key constraint on columns \"auth_provider\", \"account_id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_providers_auth_provider_auth_provider_unique_id_key", - "description": "unique or primary key constraint on columns \"auth_provider\", \"auth_provider_unique_id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_providers_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_insert_input", - "description": "input type for inserting data into table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_providers_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_max_order_by", - "description": "order by max() on columns of table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_providers_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_min_order_by", - "description": "order by min() on columns of table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", - "description": "response of any mutation on the table \"auth.account_providers\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_on_conflict", - "description": "on_conflict condition type for table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "description": "Ordering options when selecting data from \"auth.account_providers\".", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_pk_columns_input", - "description": "primary key columns input for table: auth.account_providers", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "description": "select columns of table \"auth.account_providers\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider_unique_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_set_input", - "description": "input type for updating data in table \"auth.account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_account_providers\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "auth_provider_unique_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_account_providers_update_column", - "description": "update columns of table \"auth.account_providers\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_provider_unique_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_roles", - "description": "columns and relationships of \"auth.account_roles\"", - "fields": [ - { - "name": "account", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roleByRole", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", - "description": "aggregated selection of \"auth.account_roles\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate_fields", - "description": "aggregate fields of \"auth.account_roles\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_order_by", - "description": "order by aggregate values of table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.account_roles\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "roleByRole", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_account_roles_constraint", - "description": "unique or primary key constraints on table \"auth.account_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_roles_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_roles_account_id_role_key", - "description": "unique or primary key constraint on columns \"account_id\", \"role\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_insert_input", - "description": "input type for inserting data into table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "roleByRole", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_roles_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_max_order_by", - "description": "order by max() on columns of table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_roles_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_min_order_by", - "description": "order by min() on columns of table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", - "description": "response of any mutation on the table \"auth.account_roles\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_on_conflict", - "description": "on_conflict condition type for table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "description": "Ordering options when selecting data from \"auth.account_roles\".", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "roleByRole", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_pk_columns_input", - "description": "primary key columns input for table: auth.account_roles", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "description": "select columns of table \"auth.account_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_set_input", - "description": "input type for updating data in table \"auth.account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_account_roles\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_account_roles_update_column", - "description": "update columns of table \"auth.account_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_accounts", - "description": "columns and relationships of \"auth.accounts\"", - "fields": [ - { - "name": "account_providers", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_providers_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "custom_register_data", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_role", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_anonymous", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mfa_enabled", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "new_email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otp_secret", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_tokens", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_tokens_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket_expires_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_accounts_aggregate", - "description": "aggregated selection of \"auth.accounts\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_accounts_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bool_and", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp_bool_and", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "bool_or", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp_bool_or", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp_bool_and", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_and_arguments_columns", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp_bool_or", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_or_arguments_columns", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_accounts_aggregate_fields", - "description": "aggregate fields of \"auth.accounts\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_accounts_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_accounts_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_order_by", - "description": "order by aggregate values of table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.accounts\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account_providers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_providers_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "citext_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_anonymous", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mfa_enabled", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Boolean_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "citext_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_tokens", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_tokens_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_accounts_constraint", - "description": "unique or primary key constraints on table \"auth.accounts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "accounts_email_key", - "description": "unique or primary key constraint on columns \"email\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accounts_new_email_key", - "description": "unique or primary key constraint on columns \"new_email\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accounts_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accounts_user_id_key", - "description": "unique or primary key constraint on columns \"user_id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_insert_input", - "description": "input type for inserting data into table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "account_providers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_anonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mfa_enabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_tokens", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_accounts_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "new_email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otp_secret", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket_expires_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_max_order_by", - "description": "order by max() on columns of table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_accounts_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "new_email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otp_secret", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket_expires_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_min_order_by", - "description": "order by min() on columns of table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", - "description": "response of any mutation on the table \"auth.accounts\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "description": "on_conflict condition type for table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "description": "Ordering options when selecting data from \"auth.accounts\".", - "fields": null, - "inputFields": [ - { - "name": "account_providers_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "active", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_anonymous", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mfa_enabled", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_tokens_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_pk_columns_input", - "description": "primary key columns input for table: auth.accounts", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "description": "select columns of table \"auth.accounts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "active", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "custom_register_data", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_anonymous", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mfa_enabled", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "new_email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otp_secret", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket_expires_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_and_arguments_columns", - "description": "select \"auth_accounts_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"auth.accounts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "active", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_anonymous", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mfa_enabled", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_or_arguments_columns", - "description": "select \"auth_accounts_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"auth.accounts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "active", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_anonymous", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mfa_enabled", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_set_input", - "description": "input type for updating data in table \"auth.accounts\"", - "fields": null, - "inputFields": [ - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_anonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mfa_enabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_accounts\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "active", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom_register_data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "is_anonymous", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mfa_enabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "new_email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "otp_secret", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password_hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ticket_expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_accounts_update_column", - "description": "update columns of table \"auth.accounts\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "active", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "custom_register_data", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_anonymous", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mfa_enabled", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "new_email", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otp_secret", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password_hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ticket_expires_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations", - "description": "columns and relationships of \"auth.migrations\"", - "fields": [ - { - "name": "executed_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_aggregate", - "description": "aggregated selection of \"auth.migrations\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_aggregate_fields", - "description": "aggregate fields of \"auth.migrations\"", - "fields": [ - { - "name": "avg", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_avg_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_stddev_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_stddev_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_stddev_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_sum_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_var_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_var_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_variance_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_avg_fields", - "description": "aggregate avg on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.migrations\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "executed_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_migrations_constraint", - "description": "unique or primary key constraints on table \"auth.migrations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "migrations_name_key", - "description": "unique or primary key constraint on columns \"name\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "migrations_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_inc_input", - "description": "input type for incrementing numeric columns in table \"auth.migrations\"", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_insert_input", - "description": "input type for inserting data into table \"auth.migrations\"", - "fields": null, - "inputFields": [ - { - "name": "executed_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "executed_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "executed_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", - "description": "response of any mutation on the table \"auth.migrations\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_on_conflict", - "description": "on_conflict condition type for table \"auth.migrations\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "description": "Ordering options when selecting data from \"auth.migrations\".", - "fields": null, - "inputFields": [ - { - "name": "executed_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_pk_columns_input", - "description": "primary key columns input for table: auth.migrations", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "description": "select columns of table \"auth.migrations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "executed_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_set_input", - "description": "input type for updating data in table \"auth.migrations\"", - "fields": null, - "inputFields": [ - { - "name": "executed_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_migrations\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "executed_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_sum_fields", - "description": "aggregate sum on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_migrations_update_column", - "description": "update columns of table \"auth.migrations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "executed_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_migrations_variance_fields", - "description": "aggregate variance on columns", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_providers", - "description": "columns and relationships of \"auth.providers\"", - "fields": [ - { - "name": "account_providers", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_providers_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_providers_aggregate", - "description": "aggregated selection of \"auth.providers\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_providers_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_providers_aggregate_fields", - "description": "aggregate fields of \"auth.providers\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_providers_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_providers_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.providers\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account_providers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_providers_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_providers_constraint", - "description": "unique or primary key constraints on table \"auth.providers\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "providers_pkey", - "description": "unique or primary key constraint on columns \"provider\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", - "description": "input type for inserting data into table \"auth.providers\"", - "fields": null, - "inputFields": [ - { - "name": "account_providers", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_providers_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_providers_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "description": "response of any mutation on the table \"auth.providers\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"auth.providers\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "description": "on_conflict condition type for table \"auth.providers\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "description": "Ordering options when selecting data from \"auth.providers\".", - "fields": null, - "inputFields": [ - { - "name": "account_providers_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_pk_columns_input", - "description": "primary key columns input for table: auth.providers", - "fields": null, - "inputFields": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_providers_select_column", - "description": "select columns of table \"auth.providers\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "provider", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "description": "input type for updating data in table \"auth.providers\"", - "fields": null, - "inputFields": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_providers\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_providers_update_column", - "description": "update columns of table \"auth.providers\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "provider", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_providers_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "description": "columns and relationships of \"auth.refresh_tokens\"", - "fields": [ - { - "name": "account", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", - "description": "aggregated selection of \"auth.refresh_tokens\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate_fields", - "description": "aggregate fields of \"auth.refresh_tokens\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_aggregate_order_by", - "description": "order by aggregate values of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.refresh_tokens\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_refresh_tokens_constraint", - "description": "unique or primary key constraints on table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "refresh_tokens_pkey", - "description": "unique or primary key constraint on columns \"refresh_token\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_insert_input", - "description": "input type for inserting data into table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_max_order_by", - "description": "order by max() on columns of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "account_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_min_order_by", - "description": "order by min() on columns of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "description": "response of any mutation on the table \"auth.refresh_tokens\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "description": "on_conflict condition type for table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "description": "Ordering options when selecting data from \"auth.refresh_tokens\".", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_pk_columns_input", - "description": "primary key columns input for table: auth.refresh_tokens", - "fields": null, - "inputFields": [ - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "description": "select columns of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "description": "input type for updating data in table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_refresh_tokens\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "account_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "expires_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_refresh_tokens_update_column", - "description": "update columns of table \"auth.refresh_tokens\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "account_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expires_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refresh_token", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_roles", - "description": "columns and relationships of \"auth.roles\"", - "fields": [ - { - "name": "account_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accounts", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accounts_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_roles_aggregate", - "description": "aggregated selection of \"auth.roles\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_roles_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_roles_aggregate_fields", - "description": "aggregate fields of \"auth.roles\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_roles_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_roles_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "description": "Boolean expression to filter rows from the table \"auth.roles\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "account_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "accounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "accounts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_roles_constraint", - "description": "unique or primary key constraints on table \"auth.roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "roles_pkey", - "description": "unique or primary key constraint on columns \"role\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "description": "input type for inserting data into table \"auth.roles\"", - "fields": null, - "inputFields": [ - { - "name": "account_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "accounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_roles_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_roles_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "description": "response of any mutation on the table \"auth.roles\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"auth.roles\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "description": "on_conflict condition type for table \"auth.roles\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "description": "Ordering options when selecting data from \"auth.roles\".", - "fields": null, - "inputFields": [ - { - "name": "account_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "accounts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_pk_columns_input", - "description": "primary key columns input for table: auth.roles", - "fields": null, - "inputFields": [ - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_roles_select_column", - "description": "select columns of table \"auth.roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "description": "input type for updating data in table \"auth.roles\"", - "fields": null, - "inputFields": [ - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_input", - "description": "Streaming cursor of the table \"auth_roles\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "auth_roles_update_column", - "description": "update columns of table \"auth.roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "auth_roles_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses", - "description": "columns and relationships of \"branch_statuses\"", - "fields": [ - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_aggregate", - "description": "aggregated selection of \"branch_statuses\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branch_statuses_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_aggregate_fields", - "description": "aggregate fields of \"branch_statuses\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branch_statuses_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branch_statuses_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "description": "Boolean expression to filter rows from the table \"branch_statuses\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branch_statuses_constraint", - "description": "unique or primary key constraints on table \"branch_statuses\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_statuses_pkey", - "description": "unique or primary key constraint on columns \"status\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branch_statuses_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "active", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archived", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"branch_statuses_enum\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", - "description": "input type for inserting data into table \"branch_statuses\"", - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "description": "response of any mutation on the table \"branch_statuses\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"branch_statuses\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "description": "on_conflict condition type for table \"branch_statuses\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "description": "Ordering options when selecting data from \"branch_statuses\".", - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_pk_columns_input", - "description": "primary key columns input for table: branch_statuses", - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "description": "select columns of table \"branch_statuses\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "description": "input type for updating data in table \"branch_statuses\"", - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_input", - "description": "Streaming cursor of the table \"branch_statuses\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branch_statuses_update_column", - "description": "update columns of table \"branch_statuses\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches", - "description": "columns and relationships of \"branches\"", - "fields": [ - { - "name": "branch_status", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_aggregate", - "description": "aggregated selection of \"branches\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branches_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_aggregate_fields", - "description": "aggregate fields of \"branches\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branches_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "branches_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_order_by", - "description": "order by aggregate values of table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "description": "Boolean expression to filter rows from the table \"branches\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branch_status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_enum_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branches_constraint", - "description": "unique or primary key constraints on table \"branches\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branches_datasource_id_name_key", - "description": "unique or primary key constraint on columns \"datasource_id\", \"name\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "description": "input type for inserting data into table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "branch_status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_max_order_by", - "description": "order by max() on columns of table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_min_order_by", - "description": "order by min() on columns of table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "branches_mutation_response", - "description": "response of any mutation on the table \"branches\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "description": "on_conflict condition type for table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "description": "Ordering options when selecting data from \"branches\".", - "fields": null, - "inputFields": [ - { - "name": "branch_status", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_pk_columns_input", - "description": "primary key columns input for table: branches", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branches_select_column", - "description": "select columns of table \"branches\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "description": "input type for updating data in table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_input", - "description": "Streaming cursor of the table \"branches\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "ENUM", - "name": "branch_statuses_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "branches_update_column", - "description": "update columns of table \"branches\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "branches_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "citext", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "citext_comparison_exp", - "description": "Boolean expression to compare columns of type \"citext\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ilike", - "description": "does the column match the given case-insensitive pattern", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_iregex", - "description": "does the column match the given POSIX regular expression, case insensitive", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_like", - "description": "does the column match the given pattern", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nilike", - "description": "does the column NOT match the given case-insensitive pattern", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_niregex", - "description": "does the column NOT match the given POSIX regular expression, case insensitive", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nlike", - "description": "does the column NOT match the given pattern", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nregex", - "description": "does the column NOT match the given POSIX regular expression, case sensitive", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nsimilar", - "description": "does the column NOT match the given SQL regular expression", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_regex", - "description": "does the column match the given POSIX regular expression, case sensitive", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_similar", - "description": "does the column match the given SQL regular expression", - "type": { - "kind": "SCALAR", - "name": "citext", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "create_events", - "description": "fields of action: \"create_events\"", - "fields": [ - { - "name": "created_at", - "description": "the time at which this action was created", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": "errors related to the invocation", - "args": [], - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "the unique id of an action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "output", - "description": "the output fields of this action", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_create_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "cursor_ordering", - "description": "ordering argument of a cursor", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ASC", - "description": "ascending ordering of the cursor", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DESC", - "description": "descending ordering of the cursor", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards", - "description": "columns and relationships of \"dashboards\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "layout", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_aggregate", - "description": "aggregated selection of \"dashboards\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dashboards_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_aggregate_fields", - "description": "aggregate fields of \"dashboards\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dashboards_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dashboards_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_order_by", - "description": "order by aggregate values of table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "description": "Boolean expression to filter rows from the table \"dashboards\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "layout", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dashboards_constraint", - "description": "unique or primary key constraints on table \"dashboards\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "dashboards_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "layout", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "description": "input type for inserting data into table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_max_order_by", - "description": "order by max() on columns of table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_min_order_by", - "description": "order by min() on columns of table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dashboards_mutation_response", - "description": "response of any mutation on the table \"dashboards\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "description": "on_conflict condition type for table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "description": "Ordering options when selecting data from \"dashboards\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "layout", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_pk_columns_input", - "description": "primary key columns input for table: dashboards", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dashboards_select_column", - "description": "select columns of table \"dashboards\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "layout", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "description": "input type for updating data in table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_input", - "description": "Streaming cursor of the table \"dashboards\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "layout", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dashboards_update_column", - "description": "update columns of table \"dashboards\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "layout", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dashboards_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dataschemas", - "description": "columns and relationships of \"dataschemas\"", - "fields": [ - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "description": "aggregated selection of \"dataschemas\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dataschemas_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dataschemas_aggregate_fields", - "description": "aggregate fields of \"dataschemas\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dataschemas_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "dataschemas_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_order_by", - "description": "order by aggregate values of table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "description": "Boolean expression to filter rows from the table \"dataschemas\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dataschemas_constraint", - "description": "unique or primary key constraints on table \"dataschemas\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "dataschemas_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_insert_input", - "description": "input type for inserting data into table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dataschemas_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_max_order_by", - "description": "order by max() on columns of table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dataschemas_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_min_order_by", - "description": "order by min() on columns of table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "description": "response of any mutation on the table \"dataschemas\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "description": "on_conflict condition type for table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "description": "Ordering options when selecting data from \"dataschemas\".", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_pk_columns_input", - "description": "primary key columns input for table: dataschemas", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dataschemas_select_column", - "description": "select columns of table \"dataschemas\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "checksum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "description": "input type for updating data in table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_input", - "description": "Streaming cursor of the table \"dataschemas\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "dataschemas_update_column", - "description": "update columns of table \"dataschemas\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "checksum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "dataschemas_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "datasources", - "description": "columns and relationships of \"datasources\"", - "fields": [ - { - "name": "branches", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_params", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_params_computed", - "description": "A computed field, executes function \"hide_password\"", - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "datasources_aggregate", - "description": "aggregated selection of \"datasources\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "datasources_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "datasources_aggregate_fields", - "description": "aggregate fields of \"datasources\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "datasources_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "datasources_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_order_by", - "description": "order by aggregate values of table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "description": "Boolean expression to filter rows from the table \"datasources\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branches", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params_computed", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "datasources_constraint", - "description": "unique or primary key constraints on table \"datasources\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "datasources_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "db_params", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "description": "input type for inserting data into table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "branches", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "datasources_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_max_order_by", - "description": "order by max() on columns of table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "datasources_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_min_order_by", - "description": "order by min() on columns of table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "description": "response of any mutation on the table \"datasources\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "description": "on_conflict condition type for table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "description": "Ordering options when selecting data from \"datasources\".", - "fields": null, - "inputFields": [ - { - "name": "branches_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params_computed", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "explorations_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_pk_columns_input", - "description": "primary key columns input for table: datasources", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "datasources_select_column", - "description": "select columns of table \"datasources\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_params", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "description": "input type for updating data in table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_input", - "description": "Streaming cursor of the table \"datasources\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_params", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "db_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "datasources_update_column", - "description": "update columns of table \"datasources\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_params", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "db_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "datasources_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events", - "description": "suitable for Events Analytics", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "device_context", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page_context", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_aggregate", - "description": "aggregated selection of \"events\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "events_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_aggregate_fields", - "description": "aggregate fields of \"events\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "events_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "events_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "description": "Boolean expression to filter rows from the table \"events\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "events_constraint", - "description": "unique or primary key constraints on table \"events\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "events_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_create_input", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "json", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "json", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "json", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_create_mutation_response", - "description": null, - "fields": [ - { - "name": "affected_rows", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_insert_input", - "description": "input type for inserting data into table \"events\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "events_mutation_response", - "description": "response of any mutation on the table \"events\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_on_conflict", - "description": "on_conflict condition type for table \"events\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "description": "Ordering options when selecting data from \"events\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_pk_columns_input", - "description": "primary key columns input for table: events", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "events_select_column", - "description": "select columns of table \"events\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "device_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_set_input", - "description": "input type for updating data in table \"events\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_input", - "description": "Streaming cursor of the table \"events\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "device_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "page_context", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "events_update_column", - "description": "update columns of table \"events\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "device_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page_context", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "events_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations", - "description": "columns and relationships of \"explorations\"", - "fields": [ - { - "name": "alerts", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_settings", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_state", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations_aggregate", - "description": "aggregated selection of \"explorations\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "explorations_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations_aggregate_fields", - "description": "aggregate fields of \"explorations\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "explorations_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "explorations_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_aggregate_order_by", - "description": "order by aggregate values of table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "description": "Boolean expression to filter rows from the table \"explorations\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "alerts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "explorations_constraint", - "description": "unique or primary key constraints on table \"explorations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "explorations_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "description": "input type for inserting data into table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "alerts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_max_order_by", - "description": "order by max() on columns of table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_min_order_by", - "description": "order by min() on columns of table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "explorations_mutation_response", - "description": "response of any mutation on the table \"explorations\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "description": "on_conflict condition type for table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "description": "Ordering options when selecting data from \"explorations\".", - "fields": null, - "inputFields": [ - { - "name": "alerts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinned_items_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_pk_columns_input", - "description": "primary key columns input for table: explorations", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "explorations_select_column", - "description": "select columns of table \"explorations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_settings", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_state", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "description": "input type for updating data in table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_input", - "description": "Streaming cursor of the table \"explorations\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_settings", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "playground_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "explorations_update_column", - "description": "update columns of table \"explorations\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_settings", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "playground_state", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "explorations_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "float8", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "float8_comparison_exp", - "description": "Boolean expression to compare columns of type \"float8\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "json", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "jsonb", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "String", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_cast", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_cast_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_contained_in", - "description": "is the column contained in the given json value", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_contains", - "description": "does the column contain the given json value at the top level", - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_has_key", - "description": "does the string exist as a top-level key in the column", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_has_keys_all", - "description": "do all of these strings exist as top-level keys in the column", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_has_keys_any", - "description": "do any of these strings exist as top-level keys in the column", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles", - "description": "columns and relationships of \"member_roles\"", - "fields": [ - { - "name": "access_list", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_list_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teamRoleByTeamRole", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_role", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "description": "aggregated selection of \"member_roles\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "member_roles_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_aggregate_fields", - "description": "aggregate fields of \"member_roles\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "member_roles_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "member_roles_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_order_by", - "description": "order by aggregate values of table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "description": "Boolean expression to filter rows from the table \"member_roles\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "access_list", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teamRoleByTeamRole", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_role", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_enum_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "member_roles_constraint", - "description": "unique or primary key constraints on table \"member_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "member_roles_member_id_team_role_key", - "description": "unique or primary key constraint on columns \"team_role\", \"member_id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_insert_input", - "description": "input type for inserting data into table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teamRoleByTeamRole", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "access_list_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_max_order_by", - "description": "order by max() on columns of table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "access_list_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_min_order_by", - "description": "order by min() on columns of table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "description": "response of any mutation on the table \"member_roles\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "description": "on_conflict condition type for table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "description": "Ordering options when selecting data from \"member_roles\".", - "fields": null, - "inputFields": [ - { - "name": "access_list", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teamRoleByTeamRole", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_pk_columns_input", - "description": "primary key columns input for table: member_roles", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "member_roles_select_column", - "description": "select columns of table \"member_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "access_list_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "description": "input type for updating data in table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_input", - "description": "Streaming cursor of the table \"member_roles\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "access_list_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_role", - "description": null, - "type": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "member_roles_update_column", - "description": "update columns of table \"member_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "access_list_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_role", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "member_roles_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members", - "description": "columns and relationships of \"members\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_aggregate", - "description": "aggregated selection of \"members\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "members_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_aggregate_fields", - "description": "aggregate fields of \"members\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "members_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "members_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_order_by", - "description": "order by aggregate values of table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "description": "Boolean expression to filter rows from the table \"members\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "members_constraint", - "description": "unique or primary key constraints on table \"members\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "members_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_user_id_team_id_key", - "description": "unique or primary key constraint on columns \"user_id\", \"team_id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "description": "input type for inserting data into table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_max_order_by", - "description": "order by max() on columns of table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_min_order_by", - "description": "order by min() on columns of table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "members_mutation_response", - "description": "response of any mutation on the table \"members\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "description": "on_conflict condition type for table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "description": "Ordering options when selecting data from \"members\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_pk_columns_input", - "description": "primary key columns input for table: members", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "members_select_column", - "description": "select columns of table \"members\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_set_input", - "description": "input type for updating data in table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_input", - "description": "Streaming cursor of the table \"members\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "members_update_column", - "description": "update columns of table \"members\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "members_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "mutation_root", - "description": "mutation root", - "fields": [ - { - "name": "check_connection", - "description": null, - "args": [ - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CheckConnectionOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_events", - "description": null, - "args": [ - { - "name": "objects", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_create_input", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_team", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CreateTeamOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_access_lists", - "description": "delete data from the table: \"access_lists\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_access_lists_by_pk", - "description": "delete single row from the table: \"access_lists\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_alerts", - "description": "delete data from the table: \"alerts\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_alerts_by_pk", - "description": "delete single row from the table: \"alerts\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_account_providers", - "description": "delete data from the table: \"auth.account_providers\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_account_providers_by_pk", - "description": "delete single row from the table: \"auth.account_providers\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_account_roles", - "description": "delete data from the table: \"auth.account_roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_account_roles_by_pk", - "description": "delete single row from the table: \"auth.account_roles\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_accounts", - "description": "delete data from the table: \"auth.accounts\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_accounts_by_pk", - "description": "delete single row from the table: \"auth.accounts\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_migrations", - "description": "delete data from the table: \"auth.migrations\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_migrations_by_pk", - "description": "delete single row from the table: \"auth.migrations\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_providers", - "description": "delete data from the table: \"auth.providers\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_providers_by_pk", - "description": "delete single row from the table: \"auth.providers\"", - "args": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_refresh_tokens", - "description": "delete data from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_refresh_tokens_by_pk", - "description": "delete single row from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_roles", - "description": "delete data from the table: \"auth.roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_auth_roles_by_pk", - "description": "delete single row from the table: \"auth.roles\"", - "args": [ - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_branch_statuses", - "description": "delete data from the table: \"branch_statuses\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_branch_statuses_by_pk", - "description": "delete single row from the table: \"branch_statuses\"", - "args": [ - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_branches", - "description": "delete data from the table: \"branches\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_branches_by_pk", - "description": "delete single row from the table: \"branches\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_dashboards", - "description": "delete data from the table: \"dashboards\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_dashboards_by_pk", - "description": "delete single row from the table: \"dashboards\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_dataschemas", - "description": "delete data from the table: \"dataschemas\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_dataschemas_by_pk", - "description": "delete single row from the table: \"dataschemas\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_datasources", - "description": "delete data from the table: \"datasources\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_datasources_by_pk", - "description": "delete single row from the table: \"datasources\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_events", - "description": "delete data from the table: \"events\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_events_by_pk", - "description": "delete single row from the table: \"events\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_explorations", - "description": "delete data from the table: \"explorations\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_explorations_by_pk", - "description": "delete single row from the table: \"explorations\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_member_roles", - "description": "delete data from the table: \"member_roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_member_roles_by_pk", - "description": "delete single row from the table: \"member_roles\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_members", - "description": "delete data from the table: \"members\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_members_by_pk", - "description": "delete single row from the table: \"members\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_pinned_items", - "description": "delete data from the table: \"pinned_items\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_pinned_items_by_pk", - "description": "delete single row from the table: \"pinned_items\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_reports", - "description": "delete data from the table: \"reports\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_reports_by_pk", - "description": "delete single row from the table: \"reports\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_request_event_logs", - "description": "delete data from the table: \"request_event_logs\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_request_event_logs_by_pk", - "description": "delete single row from the table: \"request_event_logs\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_request_logs", - "description": "delete data from the table: \"request_logs\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_request_logs_by_pk", - "description": "delete single row from the table: \"request_logs\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_sql_credentials", - "description": "delete data from the table: \"sql_credentials\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_sql_credentials_by_pk", - "description": "delete single row from the table: \"sql_credentials\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_team_roles", - "description": "delete data from the table: \"team_roles\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_team_roles_by_pk", - "description": "delete single row from the table: \"team_roles\"", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_teams", - "description": "delete data from the table: \"teams\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_teams_by_pk", - "description": "delete single row from the table: \"teams\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_users", - "description": "delete data from the table: \"users\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_users_by_pk", - "description": "delete single row from the table: \"users\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_versions", - "description": "delete data from the table: \"versions\"", - "args": [ - { - "name": "where", - "description": "filter the rows which have to be deleted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete_versions_by_pk", - "description": "delete single row from the table: \"versions\"", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "export_data_models", - "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ExportDataModelsOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gen_dataschemas", - "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "format", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "overwrite", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tables", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SourceTable", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GenSourceSchemaOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gen_sql", - "description": null, - "args": [ - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GenSQLOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_access_lists", - "description": "insert data into the table: \"access_lists\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_access_lists_one", - "description": "insert a single row into the table: \"access_lists\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_alerts", - "description": "insert data into the table: \"alerts\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_alerts_one", - "description": "insert a single row into the table: \"alerts\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_account_providers", - "description": "insert data into the table: \"auth.account_providers\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_account_providers_one", - "description": "insert a single row into the table: \"auth.account_providers\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_account_roles", - "description": "insert data into the table: \"auth.account_roles\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_account_roles_one", - "description": "insert a single row into the table: \"auth.account_roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_accounts", - "description": "insert data into the table: \"auth.accounts\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_accounts_one", - "description": "insert a single row into the table: \"auth.accounts\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_migrations", - "description": "insert data into the table: \"auth.migrations\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_migrations_one", - "description": "insert a single row into the table: \"auth.migrations\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_providers", - "description": "insert data into the table: \"auth.providers\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_providers_one", - "description": "insert a single row into the table: \"auth.providers\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_refresh_tokens", - "description": "insert data into the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_refresh_tokens_one", - "description": "insert a single row into the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_roles", - "description": "insert data into the table: \"auth.roles\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_auth_roles_one", - "description": "insert a single row into the table: \"auth.roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_branch_statuses", - "description": "insert data into the table: \"branch_statuses\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_branch_statuses_one", - "description": "insert a single row into the table: \"branch_statuses\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_branches", - "description": "insert data into the table: \"branches\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_branches_one", - "description": "insert a single row into the table: \"branches\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_dashboards", - "description": "insert data into the table: \"dashboards\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_dashboards_one", - "description": "insert a single row into the table: \"dashboards\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_dataschemas", - "description": "insert data into the table: \"dataschemas\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_dataschemas_one", - "description": "insert a single row into the table: \"dataschemas\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_datasources", - "description": "insert data into the table: \"datasources\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_datasources_one", - "description": "insert a single row into the table: \"datasources\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_events", - "description": "insert data into the table: \"events\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_events_one", - "description": "insert a single row into the table: \"events\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_explorations", - "description": "insert data into the table: \"explorations\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_explorations_one", - "description": "insert a single row into the table: \"explorations\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_member_roles", - "description": "insert data into the table: \"member_roles\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_member_roles_one", - "description": "insert a single row into the table: \"member_roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_members", - "description": "insert data into the table: \"members\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_members_one", - "description": "insert a single row into the table: \"members\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_pinned_items", - "description": "insert data into the table: \"pinned_items\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_pinned_items_one", - "description": "insert a single row into the table: \"pinned_items\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_reports", - "description": "insert data into the table: \"reports\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_reports_one", - "description": "insert a single row into the table: \"reports\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_request_event_logs", - "description": "insert data into the table: \"request_event_logs\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_request_event_logs_one", - "description": "insert a single row into the table: \"request_event_logs\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_request_logs", - "description": "insert data into the table: \"request_logs\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_request_logs_one", - "description": "insert a single row into the table: \"request_logs\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_sql_credentials", - "description": "insert data into the table: \"sql_credentials\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_sql_credentials_one", - "description": "insert a single row into the table: \"sql_credentials\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_team_roles", - "description": "insert data into the table: \"team_roles\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_team_roles_one", - "description": "insert a single row into the table: \"team_roles\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_teams", - "description": "insert data into the table: \"teams\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_teams_one", - "description": "insert a single row into the table: \"teams\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_users", - "description": "insert data into the table: \"users\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_users_one", - "description": "insert a single row into the table: \"users\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_versions", - "description": "insert data into the table: \"versions\"", - "args": [ - { - "name": "objects", - "description": "the rows to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "insert_versions_one", - "description": "insert a single row into the table: \"versions\"", - "args": [ - { - "name": "object", - "description": "the row to be inserted", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invite_team_member", - "description": null, - "args": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "magicLink", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "role", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teamId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "InviteTeamMemberOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "run_query", - "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "RunSourceQueryOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "send_test_alert", - "description": null, - "args": [ - { - "name": "deliveryConfig", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "json", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "deliveryType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "explorationId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SendTestAlertOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_access_lists", - "description": "update data of the table: \"access_lists\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_access_lists_by_pk", - "description": "update single row of the table: \"access_lists\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_access_lists_many", - "description": "update multiples rows of table: \"access_lists\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_alerts", - "description": "update data of the table: \"alerts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_alerts_by_pk", - "description": "update single row of the table: \"alerts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_alerts_many", - "description": "update multiples rows of table: \"alerts\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_account_providers", - "description": "update data of the table: \"auth.account_providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_account_providers_by_pk", - "description": "update single row of the table: \"auth.account_providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_account_providers_many", - "description": "update multiples rows of table: \"auth.account_providers\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_account_roles", - "description": "update data of the table: \"auth.account_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_account_roles_by_pk", - "description": "update single row of the table: \"auth.account_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_account_roles_many", - "description": "update multiples rows of table: \"auth.account_roles\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_accounts", - "description": "update data of the table: \"auth.accounts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_accounts_by_pk", - "description": "update single row of the table: \"auth.accounts\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_accounts_many", - "description": "update multiples rows of table: \"auth.accounts\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_migrations", - "description": "update data of the table: \"auth.migrations\"", - "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_migrations_by_pk", - "description": "update single row of the table: \"auth.migrations\"", - "args": [ - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_migrations_many", - "description": "update multiples rows of table: \"auth.migrations\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_providers", - "description": "update data of the table: \"auth.providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_providers_by_pk", - "description": "update single row of the table: \"auth.providers\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_providers_many", - "description": "update multiples rows of table: \"auth.providers\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_refresh_tokens", - "description": "update data of the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_refresh_tokens_by_pk", - "description": "update single row of the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_refresh_tokens_many", - "description": "update multiples rows of table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_roles", - "description": "update data of the table: \"auth.roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_roles_by_pk", - "description": "update single row of the table: \"auth.roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_auth_roles_many", - "description": "update multiples rows of table: \"auth.roles\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_branch_statuses", - "description": "update data of the table: \"branch_statuses\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_branch_statuses_by_pk", - "description": "update single row of the table: \"branch_statuses\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_branch_statuses_many", - "description": "update multiples rows of table: \"branch_statuses\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_branches", - "description": "update data of the table: \"branches\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_branches_by_pk", - "description": "update single row of the table: \"branches\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_branches_many", - "description": "update multiples rows of table: \"branches\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_dashboards", - "description": "update data of the table: \"dashboards\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_dashboards_by_pk", - "description": "update single row of the table: \"dashboards\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_dashboards_many", - "description": "update multiples rows of table: \"dashboards\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_dataschemas", - "description": "update data of the table: \"dataschemas\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_dataschemas_by_pk", - "description": "update single row of the table: \"dataschemas\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_dataschemas_many", - "description": "update multiples rows of table: \"dataschemas\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_datasources", - "description": "update data of the table: \"datasources\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_datasources_by_pk", - "description": "update single row of the table: \"datasources\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_datasources_many", - "description": "update multiples rows of table: \"datasources\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_events", - "description": "update data of the table: \"events\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_events_by_pk", - "description": "update single row of the table: \"events\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_events_many", - "description": "update multiples rows of table: \"events\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_explorations", - "description": "update data of the table: \"explorations\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_explorations_by_pk", - "description": "update single row of the table: \"explorations\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_explorations_many", - "description": "update multiples rows of table: \"explorations\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_member_roles", - "description": "update data of the table: \"member_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_member_roles_by_pk", - "description": "update single row of the table: \"member_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_member_roles_many", - "description": "update multiples rows of table: \"member_roles\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_members", - "description": "update data of the table: \"members\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_members_by_pk", - "description": "update single row of the table: \"members\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_members_many", - "description": "update multiples rows of table: \"members\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_pinned_items", - "description": "update data of the table: \"pinned_items\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_pinned_items_by_pk", - "description": "update single row of the table: \"pinned_items\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_pinned_items_many", - "description": "update multiples rows of table: \"pinned_items\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_reports", - "description": "update data of the table: \"reports\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_reports_by_pk", - "description": "update single row of the table: \"reports\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_reports_many", - "description": "update multiples rows of table: \"reports\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_request_event_logs", - "description": "update data of the table: \"request_event_logs\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_request_event_logs_by_pk", - "description": "update single row of the table: \"request_event_logs\"", - "args": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_request_event_logs_many", - "description": "update multiples rows of table: \"request_event_logs\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_request_logs", - "description": "update data of the table: \"request_logs\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_request_logs_by_pk", - "description": "update single row of the table: \"request_logs\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_request_logs_many", - "description": "update multiples rows of table: \"request_logs\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_sql_credentials", - "description": "update data of the table: \"sql_credentials\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_sql_credentials_by_pk", - "description": "update single row of the table: \"sql_credentials\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_sql_credentials_many", - "description": "update multiples rows of table: \"sql_credentials\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_team_roles", - "description": "update data of the table: \"team_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_team_roles_by_pk", - "description": "update single row of the table: \"team_roles\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_team_roles_many", - "description": "update multiples rows of table: \"team_roles\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_teams", - "description": "update data of the table: \"teams\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_teams_by_pk", - "description": "update single row of the table: \"teams\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_teams_many", - "description": "update multiples rows of table: \"teams\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_users", - "description": "update data of the table: \"users\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_users_by_pk", - "description": "update single row of the table: \"users\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_users_many", - "description": "update multiples rows of table: \"users\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_versions", - "description": "update data of the table: \"versions\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions_mutation_response", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_versions_by_pk", - "description": "update single row of the table: \"versions\"", - "args": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pk_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_pk_columns_input", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update_versions_many", - "description": "update multiples rows of table: \"versions\"", - "args": [ - { - "name": "updates", - "description": "updates to execute, in order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_updates", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_mutation_response", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "numeric", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "order_by", - "description": "column ordering options", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "asc", - "description": "in ascending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc_nulls_first", - "description": "in ascending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc_nulls_last", - "description": "in ascending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": "in descending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc_nulls_first", - "description": "in descending order, nulls first", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc_nulls_last", - "description": "in descending order, nulls last", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items", - "description": "columns and relationships of \"pinned_items\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spec", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spec_config", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "description": "aggregated selection of \"pinned_items\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "pinned_items_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_aggregate_fields", - "description": "aggregate fields of \"pinned_items\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "pinned_items_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "pinned_items_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_aggregate_order_by", - "description": "order by aggregate values of table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "description": "Boolean expression to filter rows from the table \"pinned_items\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "pinned_items_constraint", - "description": "unique or primary key constraints on table \"pinned_items\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "pinned_items_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "spec", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_insert_input", - "description": "input type for inserting data into table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_max_order_by", - "description": "order by max() on columns of table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_min_order_by", - "description": "order by min() on columns of table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "pinned_items_mutation_response", - "description": "response of any mutation on the table \"pinned_items\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_on_conflict", - "description": "on_conflict condition type for table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "description": "Ordering options when selecting data from \"pinned_items\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_pk_columns_input", - "description": "primary key columns input for table: pinned_items", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "pinned_items_select_column", - "description": "select columns of table \"pinned_items\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spec", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spec_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_set_input", - "description": "input type for updating data in table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_stream_cursor_input", - "description": "Streaming cursor of the table \"pinned_items\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboard_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "spec_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "pinned_items_update_column", - "description": "update columns of table \"pinned_items\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboard_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spec", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "spec_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "pinned_items_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "query_root", - "description": null, - "fields": [ - { - "name": "access_lists", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_lists_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_lists_by_pk", - "description": "fetch data from the table: \"access_lists\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_by_pk", - "description": "fetch data from the table: \"alerts\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers", - "description": "fetch data from the table: \"auth.account_providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers_by_pk", - "description": "fetch data from the table: \"auth.account_providers\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles", - "description": "fetch data from the table: \"auth.account_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles_by_pk", - "description": "fetch data from the table: \"auth.account_roles\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts", - "description": "fetch data from the table: \"auth.accounts\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts_aggregate", - "description": "fetch aggregated fields from the table: \"auth.accounts\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts_by_pk", - "description": "fetch data from the table: \"auth.accounts\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations", - "description": "fetch data from the table: \"auth.migrations\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations_aggregate", - "description": "fetch aggregated fields from the table: \"auth.migrations\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations_by_pk", - "description": "fetch data from the table: \"auth.migrations\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers", - "description": "fetch data from the table: \"auth.providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers_by_pk", - "description": "fetch data from the table: \"auth.providers\" using primary key columns", - "args": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens", - "description": "fetch data from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens_aggregate", - "description": "fetch aggregated fields from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens_by_pk", - "description": "fetch data from the table: \"auth.refresh_tokens\" using primary key columns", - "args": [ - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles", - "description": "fetch data from the table: \"auth.roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles_by_pk", - "description": "fetch data from the table: \"auth.roles\" using primary key columns", - "args": [ - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses", - "description": "fetch data from the table: \"branch_statuses\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses_aggregate", - "description": "fetch aggregated fields from the table: \"branch_statuses\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses_by_pk", - "description": "fetch data from the table: \"branch_statuses\" using primary key columns", - "args": [ - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_by_pk", - "description": "fetch data from the table: \"branches\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_events", - "description": null, - "args": [ - { - "name": "id", - "description": "the unique id of an action", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "create_events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards_by_pk", - "description": "fetch data from the table: \"dashboards\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_by_pk", - "description": "fetch data from the table: \"dataschemas\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_by_pk", - "description": "fetch data from the table: \"datasources\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "fetch data from the table: \"events\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events_aggregate", - "description": "fetch aggregated fields from the table: \"events\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events_by_pk", - "description": "fetch data from the table: \"events\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_by_pk", - "description": "fetch data from the table: \"explorations\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fetch_dataset", - "description": null, - "args": [ - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FetchDatasetOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fetch_meta", - "description": null, - "args": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceMetaOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fetch_tables", - "description": null, - "args": [ - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceTablesOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_by_pk", - "description": "fetch data from the table: \"member_roles\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_by_pk", - "description": "fetch data from the table: \"members\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_by_pk", - "description": "fetch data from the table: \"pinned_items\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pre_aggregation_preview", - "description": null, - "args": [ - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pre_aggregation_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "table_name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PreAggregationPreviewOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pre_aggregations", - "description": null, - "args": [ - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PreAggregationsOutput", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_by_pk", - "description": "fetch data from the table: \"reports\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs_by_pk", - "description": "fetch data from the table: \"request_event_logs\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_by_pk", - "description": "fetch data from the table: \"request_logs\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_by_pk", - "description": "fetch data from the table: \"sql_credentials\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles", - "description": "fetch data from the table: \"team_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles_aggregate", - "description": "fetch aggregated fields from the table: \"team_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles_by_pk", - "description": "fetch data from the table: \"team_roles\" using primary key columns", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_by_pk", - "description": "fetch data from the table: \"teams\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users", - "description": "fetch data from the table: \"users\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users_aggregate", - "description": "fetch aggregated fields from the table: \"users\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users_by_pk", - "description": "fetch data from the table: \"users\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_by_pk", - "description": "fetch data from the table: \"versions\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports", - "description": "columns and relationships of \"reports\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_aggregate", - "description": "aggregated selection of \"reports\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "reports_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_aggregate_fields", - "description": "aggregate fields of \"reports\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "reports_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "reports_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", - "description": "order by aggregate values of table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "description": "Boolean expression to filter rows from the table \"reports\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "reports_constraint", - "description": "unique or primary key constraints on table \"reports\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "reports_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_insert_input", - "description": "input type for inserting data into table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_max_order_by", - "description": "order by max() on columns of table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_min_order_by", - "description": "order by min() on columns of table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "reports_mutation_response", - "description": "response of any mutation on the table \"reports\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_on_conflict", - "description": "on_conflict condition type for table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "description": "Ordering options when selecting data from \"reports\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_pk_columns_input", - "description": "primary key columns input for table: reports", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "reports_select_column", - "description": "select columns of table \"reports\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "description": "input type for updating data in table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_input", - "description": "Streaming cursor of the table \"reports\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_config", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "delivery_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "exploration_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schedule", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "reports_update_column", - "description": "update columns of table \"reports\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_config", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delivery_type", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exploration_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schedule", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "reports_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs", - "description": "columns and relationships of \"request_event_logs\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key", - "description": null, - "args": [ - { - "name": "path", - "description": "JSON select path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key_md5", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_sql", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queue_prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_log", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_aggregate", - "description": "aggregated selection of \"request_event_logs\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_aggregate_fields", - "description": "aggregate fields of \"request_event_logs\"", - "fields": [ - { - "name": "avg", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_avg_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_stddev_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_stddev_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_stddev_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_sum_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_var_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_var_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_event_logs_variance_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_order_by", - "description": "order by aggregate values of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "avg", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_avg_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_min_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stddev", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stddev_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_pop_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stddev_samp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_samp_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_sum_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "var_pop", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_var_pop_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "var_samp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_var_samp_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "variance", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_variance_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_avg_fields", - "description": "aggregate avg on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_avg_order_by", - "description": "order by avg() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "description": "Boolean expression to filter rows from the table \"request_event_logs\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_log", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "numeric_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "request_event_logs_constraint", - "description": "unique or primary key constraints on table \"request_event_logs\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "request_event_logs_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_at_path_input", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "fields": null, - "inputFields": [ - { - "name": "query", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_elem_input", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "fields": null, - "inputFields": [ - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_key_input", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "fields": null, - "inputFields": [ - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_inc_input", - "description": "input type for incrementing numeric columns in table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_insert_input", - "description": "input type for inserting data into table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_log", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key_md5", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_sql", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queue_prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_max_order_by", - "description": "order by max() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key_md5", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_sql", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queue_prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_min_order_by", - "description": "order by min() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_mutation_response", - "description": "response of any mutation on the table \"request_event_logs\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_on_conflict", - "description": "on_conflict condition type for table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "description": "Ordering options when selecting data from \"request_event_logs\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_log", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_pk_columns_input", - "description": "primary key columns input for table: request_event_logs", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_prepend_input", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "description": "select columns of table \"request_event_logs\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key_md5", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_sql", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queue_prefix", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_set_input", - "description": "input type for updating data in table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_order_by", - "description": "order by stddev() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_pop_order_by", - "description": "order by stddev_pop() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stddev_samp_order_by", - "description": "order by stddev_samp() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stream_cursor_input", - "description": "Streaming cursor of the table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "event", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "jsonb", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_key_md5", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "query_sql", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "queue_prefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_sum_fields", - "description": "aggregate sum on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "numeric", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_sum_order_by", - "description": "order by sum() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "request_event_logs_update_column", - "description": "update columns of table \"request_event_logs\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_key_md5", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query_sql", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queue_prefix", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_append", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_append_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_at_path", - "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_at_path_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_elem", - "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_elem_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_delete_key", - "description": "delete key/value pair or string element. key/value pairs are matched based on their key value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_delete_key_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_inc_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_prepend", - "description": "prepend existing jsonb value of filtered columns with new jsonb value", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_prepend_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_var_pop_order_by", - "description": "order by var_pop() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_var_samp_order_by", - "description": "order by var_samp() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_event_logs_variance_fields", - "description": "aggregate variance on columns", - "fields": [ - { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "time_in_queue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_variance_order_by", - "description": "order by variance() on columns of table \"request_event_logs\"", - "fields": null, - "inputFields": [ - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "time_in_queue", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs", - "description": "columns and relationships of \"request_logs\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_time", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "description": "aggregated selection of \"request_logs\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_aggregate_fields", - "description": "aggregate fields of \"request_logs\"", - "fields": [ - { - "name": "avg", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_avg_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_stddev_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_stddev_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddev_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_stddev_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_sum_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_pop", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_var_pop_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "var_samp", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_var_samp_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "request_logs_variance_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_order_by", - "description": "order by aggregate values of table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_avg_fields", - "description": "aggregate avg on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "description": "Boolean expression to filter rows from the table \"request_logs\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "float8_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_event_logs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_event_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "request_logs_constraint", - "description": "unique or primary key constraints on table \"request_logs\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "request_logs_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_request_id_key", - "description": "unique or primary key constraint on columns \"request_id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "description": "input type for inserting data into table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_event_logs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_time", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_max_order_by", - "description": "order by max() on columns of table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_time", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_min_order_by", - "description": "order by min() on columns of table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_mutation_response", - "description": "response of any mutation on the table \"request_logs\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_on_conflict", - "description": "on_conflict condition type for table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "description": "Ordering options when selecting data from \"request_logs\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_event_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_pk_columns_input", - "description": "primary key columns input for table: request_logs", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "request_logs_select_column", - "description": "select columns of table \"request_logs\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_time", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "description": "input type for updating data in table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_stddev_fields", - "description": "aggregate stddev on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_stddev_pop_fields", - "description": "aggregate stddev_pop on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_input", - "description": "Streaming cursor of the table \"request_logs\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "end_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "start_time", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_sum_fields", - "description": "aggregate sum on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "request_logs_update_column", - "description": "update columns of table \"request_logs\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start_time", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "request_logs_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_var_pop_fields", - "description": "aggregate var_pop on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "request_logs_variance_fields", - "description": "aggregate variance on columns", - "fields": [ - { - "name": "duration", - "description": "A computed field, executes function \"duration\"", - "args": [], - "type": { - "kind": "SCALAR", - "name": "float8", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials", - "description": "columns and relationships of \"sql_credentials\"", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "description": "aggregated selection of \"sql_credentials\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials_aggregate_fields", - "description": "aggregate fields of \"sql_credentials\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "sql_credentials_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "sql_credentials_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_order_by", - "description": "order by aggregate values of table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "description": "Boolean expression to filter rows from the table \"sql_credentials\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sql_credentials_constraint", - "description": "unique or primary key constraints on table \"sql_credentials\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "sql_credentials_datasource_id_user_id_username_key", - "description": "unique or primary key constraint on columns \"user_id\", \"username\", \"datasource_id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_username_key", - "description": "unique or primary key constraint on columns \"username\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_insert_input", - "description": "input type for inserting data into table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_max_order_by", - "description": "order by max() on columns of table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_min_order_by", - "description": "order by min() on columns of table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "sql_credentials_mutation_response", - "description": "response of any mutation on the table \"sql_credentials\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_on_conflict", - "description": "on_conflict condition type for table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "description": "Ordering options when selecting data from \"sql_credentials\".", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_pk_columns_input", - "description": "primary key columns input for table: sql_credentials", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "description": "select columns of table \"sql_credentials\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "description": "input type for updating data in table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_input", - "description": "Streaming cursor of the table \"sql_credentials\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasource_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "password", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "username", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sql_credentials_update_column", - "description": "update columns of table \"sql_credentials\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasource_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "description": null, - "fields": [ - { - "name": "access_lists", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_lists_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_lists_by_pk", - "description": "fetch data from the table: \"access_lists\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_lists_stream", - "description": "fetch data from the table in a streaming manner: \"access_lists\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_by_pk", - "description": "fetch data from the table: \"alerts\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_stream", - "description": "fetch data from the table in a streaming manner: \"alerts\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers", - "description": "fetch data from the table: \"auth.account_providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers_by_pk", - "description": "fetch data from the table: \"auth.account_providers\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_providers_stream", - "description": "fetch data from the table in a streaming manner: \"auth.account_providers\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles", - "description": "fetch data from the table: \"auth.account_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.account_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_account_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles_by_pk", - "description": "fetch data from the table: \"auth.account_roles\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_account_roles_stream", - "description": "fetch data from the table in a streaming manner: \"auth.account_roles\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_account_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_account_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts", - "description": "fetch data from the table: \"auth.accounts\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts_aggregate", - "description": "fetch aggregated fields from the table: \"auth.accounts\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_accounts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts_by_pk", - "description": "fetch data from the table: \"auth.accounts\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_accounts_stream", - "description": "fetch data from the table in a streaming manner: \"auth.accounts\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations", - "description": "fetch data from the table: \"auth.migrations\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations_aggregate", - "description": "fetch aggregated fields from the table: \"auth.migrations\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_migrations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations_by_pk", - "description": "fetch data from the table: \"auth.migrations\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_migrations_stream", - "description": "fetch data from the table in a streaming manner: \"auth.migrations\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_migrations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_migrations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers", - "description": "fetch data from the table: \"auth.providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers_aggregate", - "description": "fetch aggregated fields from the table: \"auth.providers\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_providers_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers_by_pk", - "description": "fetch data from the table: \"auth.providers\" using primary key columns", - "args": [ - { - "name": "provider", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_providers_stream", - "description": "fetch data from the table in a streaming manner: \"auth.providers\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_providers_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_providers", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens", - "description": "fetch data from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens_aggregate", - "description": "fetch aggregated fields from the table: \"auth.refresh_tokens\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_refresh_tokens_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens_by_pk", - "description": "fetch data from the table: \"auth.refresh_tokens\" using primary key columns", - "args": [ - { - "name": "refresh_token", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_refresh_tokens_stream", - "description": "fetch data from the table in a streaming manner: \"auth.refresh_tokens\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_refresh_tokens_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_refresh_tokens", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles", - "description": "fetch data from the table: \"auth.roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles_aggregate", - "description": "fetch aggregated fields from the table: \"auth.roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "auth_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles_by_pk", - "description": "fetch data from the table: \"auth.roles\" using primary key columns", - "args": [ - { - "name": "role", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "auth_roles_stream", - "description": "fetch data from the table in a streaming manner: \"auth.roles\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "auth_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses", - "description": "fetch data from the table: \"branch_statuses\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses_aggregate", - "description": "fetch aggregated fields from the table: \"branch_statuses\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branch_statuses_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses_by_pk", - "description": "fetch data from the table: \"branch_statuses\" using primary key columns", - "args": [ - { - "name": "status", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_statuses_stream", - "description": "fetch data from the table in a streaming manner: \"branch_statuses\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branch_statuses_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branch_statuses", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_by_pk", - "description": "fetch data from the table: \"branches\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_stream", - "description": "fetch data from the table in a streaming manner: \"branches\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create_events", - "description": null, - "args": [ - { - "name": "id", - "description": "the unique id of an action", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "create_events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards_by_pk", - "description": "fetch data from the table: \"dashboards\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards_stream", - "description": "fetch data from the table in a streaming manner: \"dashboards\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_by_pk", - "description": "fetch data from the table: \"dataschemas\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_stream", - "description": "fetch data from the table in a streaming manner: \"dataschemas\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_by_pk", - "description": "fetch data from the table: \"datasources\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_stream", - "description": "fetch data from the table in a streaming manner: \"datasources\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "fetch data from the table: \"events\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events_aggregate", - "description": "fetch aggregated fields from the table: \"events\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events_by_pk", - "description": "fetch data from the table: \"events\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "events", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events_stream", - "description": "fetch data from the table in a streaming manner: \"events\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "events_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "events_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "events", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "explorations_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_by_pk", - "description": "fetch data from the table: \"explorations\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "explorations_stream", - "description": "fetch data from the table in a streaming manner: \"explorations\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "explorations_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "explorations_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "explorations", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_by_pk", - "description": "fetch data from the table: \"member_roles\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_stream", - "description": "fetch data from the table in a streaming manner: \"member_roles\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_by_pk", - "description": "fetch data from the table: \"members\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "members", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_stream", - "description": "fetch data from the table in a streaming manner: \"members\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "pinned_items_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_by_pk", - "description": "fetch data from the table: \"pinned_items\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinned_items_stream", - "description": "fetch data from the table in a streaming manner: \"pinned_items\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "pinned_items_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "pinned_items", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_by_pk", - "description": "fetch data from the table: \"reports\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_stream", - "description": "fetch data from the table in a streaming manner: \"reports\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_event_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs_by_pk", - "description": "fetch data from the table: \"request_event_logs\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_event_logs_stream", - "description": "fetch data from the table in a streaming manner: \"request_event_logs\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_event_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_event_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_by_pk", - "description": "fetch data from the table: \"request_logs\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_stream", - "description": "fetch data from the table in a streaming manner: \"request_logs\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_by_pk", - "description": "fetch data from the table: \"sql_credentials\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_stream", - "description": "fetch data from the table in a streaming manner: \"sql_credentials\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles", - "description": "fetch data from the table: \"team_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles_aggregate", - "description": "fetch aggregated fields from the table: \"team_roles\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles_by_pk", - "description": "fetch data from the table: \"team_roles\" using primary key columns", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team_roles_stream", - "description": "fetch data from the table in a streaming manner: \"team_roles\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_by_pk", - "description": "fetch data from the table: \"teams\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_stream", - "description": "fetch data from the table in a streaming manner: \"teams\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users", - "description": "fetch data from the table: \"users\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users_aggregate", - "description": "fetch aggregated fields from the table: \"users\"", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users_by_pk", - "description": "fetch data from the table: \"users\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "users", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users_stream", - "description": "fetch data from the table in a streaming manner: \"users\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_by_pk", - "description": "fetch data from the table: \"versions\" using primary key columns", - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_stream", - "description": "fetch data from the table in a streaming manner: \"versions\"", - "args": [ - { - "name": "batch_size", - "description": "maximum number of rows returned in a single batch", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "cursor", - "description": "cursor to stream the results returned by the query", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_stream_cursor_input", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_roles", - "description": "columns and relationships of \"team_roles\"", - "fields": [ - { - "name": "member_roles", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member_roles_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "member_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "member_roles_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "member_roles_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_roles_aggregate", - "description": "aggregated selection of \"team_roles\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "team_roles_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_roles_aggregate_fields", - "description": "aggregate fields of \"team_roles\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "team_roles_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "team_roles_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "description": "Boolean expression to filter rows from the table \"team_roles\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "team_roles_constraint", - "description": "unique or primary key constraints on table \"team_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "team_roles_pkey", - "description": "unique or primary key constraint on columns \"name\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "team_roles_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "member", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"team_roles_enum\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_enum", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_insert_input", - "description": "input type for inserting data into table \"team_roles\"", - "fields": null, - "inputFields": [ - { - "name": "member_roles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_roles_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_roles_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "team_roles_mutation_response", - "description": "response of any mutation on the table \"team_roles\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "team_roles", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"team_roles\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_on_conflict", - "description": "on_conflict condition type for table \"team_roles\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "team_roles_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_order_by", - "description": "Ordering options when selecting data from \"team_roles\".", - "fields": null, - "inputFields": [ - { - "name": "member_roles_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "member_roles_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_pk_columns_input", - "description": "primary key columns input for table: team_roles", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "team_roles_select_column", - "description": "select columns of table \"team_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_set_input", - "description": "input type for updating data in table \"team_roles\"", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_stream_cursor_input", - "description": "Streaming cursor of the table \"team_roles\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "team_roles_update_column", - "description": "update columns of table \"team_roles\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "team_roles_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "team_roles_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "team_roles_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "teams", - "description": "columns and relationships of \"teams\"", - "fields": [ - { - "name": "access_lists", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "access_lists_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "access_lists_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "access_lists_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "access_lists_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboards_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dashboards_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dashboards_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dashboards_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "teams_aggregate", - "description": "aggregated selection of \"teams\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "teams_aggregate_fields", - "description": "aggregate fields of \"teams\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "teams_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_aggregate_order_by", - "description": "order by aggregate values of table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "description": "Boolean expression to filter rows from the table \"teams\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "access_lists", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "access_lists_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboards", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboards_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "teams_constraint", - "description": "unique or primary key constraints on table \"teams\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "teams_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_user_id_name_key", - "description": "unique or primary key constraint on columns \"user_id\", \"name\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_insert_input", - "description": "input type for inserting data into table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "access_lists", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboards", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "teams_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_max_order_by", - "description": "order by max() on columns of table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "teams_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_min_order_by", - "description": "order by min() on columns of table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "teams_mutation_response", - "description": "response of any mutation on the table \"teams\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_on_conflict", - "description": "on_conflict condition type for table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "description": "Ordering options when selecting data from \"teams\".", - "fields": null, - "inputFields": [ - { - "name": "access_lists_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "access_lists_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dashboards_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dashboards_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_pk_columns_input", - "description": "primary key columns input for table: teams", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "teams_select_column", - "description": "select columns of table \"teams\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_set_input", - "description": "input type for updating data in table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_stream_cursor_input", - "description": "Streaming cursor of the table \"teams\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "teams_update_column", - "description": "update columns of table \"teams\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "teams_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "timestamp", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "timestamp_comparison_exp", - "description": "Boolean expression to compare columns of type \"timestamp\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamp", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "timestamptz", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "description": "Boolean expression to compare columns of type \"timestamptz\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "users", - "description": "columns and relationships of \"users\"", - "fields": [ - { - "name": "account", - "description": "An object relationship", - "args": [], - "type": { - "kind": "OBJECT", - "name": "auth_accounts", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "alerts_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "alerts_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "alerts_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "alerts_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avatar_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "branches_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasources_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "datasources_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "datasources_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "datasources_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "members_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "members_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "members_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reports_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "reports_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "reports_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "reports_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "request_logs_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "request_logs_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "request_logs_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "request_logs_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sql_credentials_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sql_credentials_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sql_credentials_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "teams_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "teams_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "teams_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "users_aggregate", - "description": "aggregated selection of \"users\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "users_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "users_aggregate_fields", - "description": "aggregate fields of \"users\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "users_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "users_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "description": "Boolean expression to filter rows from the table \"users\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar_url", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "display_name", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teams_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "users_constraint", - "description": "unique or primary key constraints on table \"users\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "users_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_insert_input", - "description": "input type for inserting data into table \"users\"", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "display_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teams", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "users_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "avatar_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "users_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "avatar_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "users_mutation_response", - "description": "response of any mutation on the table \"users\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"users\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_on_conflict", - "description": "on_conflict condition type for table \"users\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "users_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "description": "Ordering options when selecting data from \"users\".", - "fields": null, - "inputFields": [ - { - "name": "account", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "auth_accounts_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "alerts_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "alerts_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar_url", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "datasources_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "datasources_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "display_name", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "members_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reports_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "reports_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "request_logs_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "request_logs_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sql_credentials_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "sql_credentials_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "teams_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "teams_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versions_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_pk_columns_input", - "description": "primary key columns input for table: users", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "users_select_column", - "description": "select columns of table \"users\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "avatar_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display_name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_set_input", - "description": "input type for updating data in table \"users\"", - "fields": null, - "inputFields": [ - { - "name": "avatar_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "display_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_stream_cursor_input", - "description": "Streaming cursor of the table \"users\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "avatar_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "display_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "users_update_column", - "description": "update columns of table \"users\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "avatar_url", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display_name", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "users_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "users_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "uuid", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "description": "Boolean expression to compare columns of type \"uuid\". All fields are combined with logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_eq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_neq", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_nin", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "versions", - "description": "columns and relationships of \"versions\"", - "fields": [ - { - "name": "branch", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "branches", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas", - "description": "An array relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataschemas_aggregate", - "description": "An aggregate relationship", - "args": [ - { - "name": "distinct_on", - "description": "distinct select on columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "dataschemas_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "limit the number of rows returned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "skip the first n rows. Use only with order_by", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by", - "description": "sort the rows by one or more columns", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_order_by", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows returned", - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "dataschemas_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markdown_doc", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "An object relationship", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "users", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "versions_aggregate", - "description": "aggregated selection of \"versions\"", - "fields": [ - { - "name": "aggregate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "versions_aggregate_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_bool_exp", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_bool_exp_count", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_bool_exp_count", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "arguments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "versions_aggregate_fields", - "description": "aggregate fields of \"versions\"", - "fields": [ - { - "name": "count", - "description": null, - "args": [ - { - "name": "columns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_select_column", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "distinct", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "versions_max_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "versions_min_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_aggregate_order_by", - "description": "order by aggregate values of table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "count", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_max_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_min_order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_arr_rel_insert_input", - "description": "input type for inserting array relation for remote table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_insert_input", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "description": "Boolean expression to filter rows from the table \"versions\". All fields are combined with a logical 'AND'.", - "fields": null, - "inputFields": [ - { - "name": "_and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_not", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_bool_exp", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "versions_constraint", - "description": "unique or primary key constraints on table \"versions\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "versions_pkey", - "description": "unique or primary key constraint on columns \"id\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_insert_input", - "description": "input type for inserting data into table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "branch", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_arr_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_obj_rel_insert_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "versions_max_fields", - "description": "aggregate max on columns", - "fields": [ - { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markdown_doc", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_max_order_by", - "description": "order by max() on columns of table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "versions_min_fields", - "description": "aggregate min on columns", - "fields": [ - { - "name": "branch_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "checksum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markdown_doc", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_min_order_by", - "description": "order by min() on columns of table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "versions_mutation_response", - "description": "response of any mutation on the table \"versions\"", - "fields": [ - { - "name": "affected_rows", - "description": "number of rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "versions", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_obj_rel_insert_input", - "description": "input type for inserting object relation for remote table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_insert_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "on_conflict", - "description": "upsert condition", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_on_conflict", - "description": "on_conflict condition type for table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "constraint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_constraint", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "update_columns", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "versions_update_column", - "ofType": null - } - } - } - }, - "defaultValue": "[]" - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_order_by", - "description": "Ordering options when selecting data from \"versions\".", - "fields": null, - "inputFields": [ - { - "name": "branch", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "branches_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dataschemas_aggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "dataschemas_aggregate_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "users_order_by", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_pk_columns_input", - "description": "primary key columns input for table: versions", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "versions_select_column", - "description": "select columns of table \"versions\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "checksum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markdown_doc", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_set_input", - "description": "input type for updating data in table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_stream_cursor_input", - "description": "Streaming cursor of the table \"versions\"", - "fields": null, - "inputFields": [ - { - "name": "initial_value", - "description": "Stream column input with initial value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_stream_cursor_value_input", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ordering", - "description": "cursor ordering", - "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", - "fields": null, - "inputFields": [ - { - "name": "branch_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "checksum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "markdown_doc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "versions_update_column", - "description": "update columns of table \"versions\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "branch_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "checksum", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markdown_doc", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_id", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "versions_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", - "type": { - "kind": "INPUT_OBJECT", - "name": "versions_set_input", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": "filter the rows which have to be updated", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "versions_bool_exp", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - } - ], - "directives": [ - { - "name": "include", - "description": "whether this query should be included", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "skip", - "description": "whether this query should be skipped", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "cached", - "description": "whether this query should be cached (Hasura Cloud only)", - "locations": [ - "QUERY" - ], - "args": [ - { - "name": "ttl", - "description": "measured in seconds", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": "60" - }, - { - "name": "refresh", - "description": "refresh the cache entry", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": "false" - } - ] - } - ] - } -} +{"data":{"__schema":{"queryType":{"name":"query_root"},"mutationType":{"name":"mutation_root"},"subscriptionType":{"name":"subscription_root"},"types":[{"kind":"OBJECT","name":"ArrayCandidateOutput","description":null,"fields":[{"name":"column","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"element_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"suggested_alias","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ArrayJoinInput","description":null,"fields":null,"inputFields":[{"name":"alias","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"column","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","description":"Boolean expression to compare columns of type \"Boolean\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CheckConnectionOutput","description":null,"fields":[{"name":"code","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTeamOutput","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExistingModelInfo","description":null,"fields":[{"name":"file_format","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"file_name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"has_user_content","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"suggested_merge_strategy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"supports_reprofile","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExportDataModelsOutput","description":null,"fields":[{"name":"download_url","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FetchDatasetOutput","description":null,"fields":[{"name":"annotation","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dataSource","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dbType","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"external","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hitLimit","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lastRefreshTime","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"progress","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slowQuery","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Float","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GenSQLOutput","description":null,"fields":[{"name":"result","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GenSourceSchemaOutput","description":null,"fields":[{"name":"code","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","description":"Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InviteTeamMemberOutput","description":null,"fields":[{"name":"code","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"memberId","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PreAggregationPreviewOutput","description":null,"fields":[{"name":"data","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"json","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PreAggregationsOutput","description":null,"fields":[{"name":"data","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"json","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProfileTableOutput","description":null,"fields":[{"name":"array_candidates","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ArrayCandidateOutput","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"columns","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ProfiledColumnOutput","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"existing_model","description":null,"args":[],"type":{"kind":"OBJECT","name":"ExistingModelInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"primary_keys","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"row_count","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sample_size","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sampled","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProfiledColumnOutput","description":null,"fields":[{"name":"column_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"has_values","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lc_values","description":null,"args":[],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"raw_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unique_keys","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unique_values","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RunSourceQueryOutput","description":null,"fields":[{"name":"result","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SendTestAlertOutput","description":null,"fields":[{"name":"error","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"result","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SmartGenOutput","description":null,"fields":[{"name":"changed","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"file_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"version_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SourceMetaOutput","description":null,"fields":[{"name":"cubes","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SourceTable","description":null,"fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"schema","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SourceTablesOutput","description":null,"fields":[{"name":"schema","description":null,"args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"String_comparison_exp","description":"Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_ilike","description":"does the column match the given case-insensitive pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_iregex","description":"does the column match the given POSIX regular expression, case insensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_like","description":"does the column match the given pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nilike","description":"does the column NOT match the given case-insensitive pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_niregex","description":"does the column NOT match the given POSIX regular expression, case insensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nlike","description":"does the column NOT match the given pattern","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nregex","description":"does the column NOT match the given POSIX regular expression, case sensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_nsimilar","description":"does the column NOT match the given SQL regular expression","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_regex","description":"does the column match the given POSIX regular expression, case sensitive","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_similar","description":"does the column match the given SQL regular expression","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTeamSettingsOutput","description":null,"fields":[{"name":"code","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":null,"fields":[{"name":"args","description":null,"args":[],"type":{"kind":"OBJECT","name":"__InputValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isRepeatable","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":null,"fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":null,"fields":[{"name":"args","description":null,"args":[],"type":{"kind":"OBJECT","name":"__InputValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":null,"fields":[{"name":"defaultValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":null,"fields":[{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"directives","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Directive","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":null,"fields":[{"name":"description","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"__EnumValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"OBJECT","name":"__Field","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"OBJECT","name":"__InputValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ENUM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"access_lists","description":"columns and relationships of \"access_lists\"","fields":[{"name":"config","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"access_lists_aggregate","description":"aggregated selection of \"access_lists\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"access_lists_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"access_lists_aggregate_fields","description":"aggregate fields of \"access_lists\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"access_lists_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"access_lists_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_aggregate_order_by","description":"order by aggregate values of table \"access_lists\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"access_lists\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"access_lists_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","description":"Boolean expression to filter rows from the table \"access_lists\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null}}},"defaultValue":null},{"name":"config","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"member_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"member_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"access_lists_constraint","description":"unique or primary key constraints on table \"access_lists\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"access_lists_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_insert_input","description":"input type for inserting data into table \"access_lists\"","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"member_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"access_lists_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_max_order_by","description":"order by max() on columns of table \"access_lists\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"access_lists_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_min_order_by","description":"order by min() on columns of table \"access_lists\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"access_lists_mutation_response","description":"response of any mutation on the table \"access_lists\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"access_lists\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"access_lists_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_on_conflict","description":"on_conflict condition type for table \"access_lists\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_order_by","description":"Ordering options when selecting data from \"access_lists\".","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"member_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_pk_columns_input","description":"primary key columns input for table: access_lists","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"access_lists_select_column","description":"select columns of table \"access_lists\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_set_input","description":"input type for updating data in table \"access_lists\"","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_stream_cursor_input","description":"Streaming cursor of the table \"access_lists\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"access_lists_update_column","description":"update columns of table \"access_lists\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"access_lists_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"access_lists_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"access_lists_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"access_lists_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"alerts","description":"columns and relationships of \"alerts\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_config","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"exploration","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locks_config","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trigger_config","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"alerts_aggregate","description":"aggregated selection of \"alerts\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"alerts_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"alerts_aggregate_fields","description":"aggregate fields of \"alerts\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"alerts_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"alerts_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_aggregate_order_by","description":"order by aggregate values of table \"alerts\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"alerts\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"alerts_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","description":"Boolean expression to filter rows from the table \"alerts\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"alerts_constraint","description":"unique or primary key constraints on table \"alerts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"alerts_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_insert_input","description":"input type for inserting data into table \"alerts\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"alerts_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_max_order_by","description":"order by max() on columns of table \"alerts\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"alerts_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_min_order_by","description":"order by min() on columns of table \"alerts\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"alerts_mutation_response","description":"response of any mutation on the table \"alerts\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_on_conflict","description":"on_conflict condition type for table \"alerts\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_order_by","description":"Ordering options when selecting data from \"alerts\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_pk_columns_input","description":"primary key columns input for table: alerts","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"alerts_select_column","description":"select columns of table \"alerts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"locks_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"trigger_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_set_input","description":"input type for updating data in table \"alerts\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_stream_cursor_input","description":"Streaming cursor of the table \"alerts\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"locks_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"trigger_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"alerts_update_column","description":"update columns of table \"alerts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"locks_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"trigger_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"alerts_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"alerts_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"alerts_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"alerts_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_providers","description":"columns and relationships of \"auth.account_providers\"","fields":[{"name":"account","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_provider","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_provider_unique_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"provider","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_providers_aggregate","description":"aggregated selection of \"auth.account_providers\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_account_providers_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_providers_aggregate_fields","description":"aggregate fields of \"auth.account_providers\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_account_providers_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_account_providers_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_order_by","description":"order by aggregate values of table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","description":"Boolean expression to filter rows from the table \"auth.account_providers\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"provider","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_account_providers_constraint","description":"unique or primary key constraints on table \"auth.account_providers\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_providers_account_id_auth_provider_key","description":"unique or primary key constraint on columns \"auth_provider\", \"account_id\"","isDeprecated":false,"deprecationReason":null},{"name":"account_providers_auth_provider_auth_provider_unique_id_key","description":"unique or primary key constraint on columns \"auth_provider\", \"auth_provider_unique_id\"","isDeprecated":false,"deprecationReason":null},{"name":"account_providers_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_insert_input","description":"input type for inserting data into table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"provider","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_providers_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_providers_max_fields","description":"aggregate max on columns","fields":[{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_provider","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_provider_unique_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_max_order_by","description":"order by max() on columns of table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_providers_min_fields","description":"aggregate min on columns","fields":[{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_provider","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_provider_unique_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_min_order_by","description":"order by min() on columns of table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_providers_mutation_response","description":"response of any mutation on the table \"auth.account_providers\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_on_conflict","description":"on_conflict condition type for table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","description":"Ordering options when selecting data from \"auth.account_providers\".","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"provider","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_providers_order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_pk_columns_input","description":"primary key columns input for table: auth.account_providers","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_account_providers_select_column","description":"select columns of table \"auth.account_providers\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"auth_provider","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"auth_provider_unique_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_set_input","description":"input type for updating data in table \"auth.account_providers\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_stream_cursor_input","description":"Streaming cursor of the table \"auth_account_providers\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"auth_provider","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"auth_provider_unique_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_account_providers_update_column","description":"update columns of table \"auth.account_providers\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"auth_provider","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"auth_provider_unique_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_providers_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_roles","description":"columns and relationships of \"auth.account_roles\"","fields":[{"name":"account","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleByRole","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_roles_aggregate","description":"aggregated selection of \"auth.account_roles\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_account_roles_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_roles_aggregate_fields","description":"aggregate fields of \"auth.account_roles\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_account_roles_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_account_roles_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_order_by","description":"order by aggregate values of table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","description":"Boolean expression to filter rows from the table \"auth.account_roles\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"roleByRole","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_account_roles_constraint","description":"unique or primary key constraints on table \"auth.account_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_roles_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null},{"name":"user_roles_account_id_role_key","description":"unique or primary key constraint on columns \"account_id\", \"role\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_insert_input","description":"input type for inserting data into table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"roleByRole","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_obj_rel_insert_input","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_roles_max_fields","description":"aggregate max on columns","fields":[{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_max_order_by","description":"order by max() on columns of table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_roles_min_fields","description":"aggregate min on columns","fields":[{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_min_order_by","description":"order by min() on columns of table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_account_roles_mutation_response","description":"response of any mutation on the table \"auth.account_roles\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_on_conflict","description":"on_conflict condition type for table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","description":"Ordering options when selecting data from \"auth.account_roles\".","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"roleByRole","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_pk_columns_input","description":"primary key columns input for table: auth.account_roles","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_account_roles_select_column","description":"select columns of table \"auth.account_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"role","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_set_input","description":"input type for updating data in table \"auth.account_roles\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_stream_cursor_input","description":"Streaming cursor of the table \"auth_account_roles\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_account_roles_update_column","description":"update columns of table \"auth.account_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"role","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_account_roles_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_accounts","description":"columns and relationships of \"auth.accounts\"","fields":[{"name":"account_providers","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_providers_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"active","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"custom_register_data","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"default_role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"citext","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_anonymous","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mfa_enabled","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"new_email","description":null,"args":[],"type":{"kind":"SCALAR","name":"citext","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"otp_secret","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"password_hash","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refresh_tokens","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"refresh_tokens_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ticket","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ticket_expires_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"workos_user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_accounts_aggregate","description":"aggregated selection of \"auth.accounts\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_accounts_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"bool_and","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp_bool_and","ofType":null},"defaultValue":null},{"name":"bool_or","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp_bool_or","ofType":null},"defaultValue":null},{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp_bool_and","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_and_arguments_columns","ofType":null}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp_bool_or","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_or_arguments_columns","ofType":null}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_accounts_aggregate_fields","description":"aggregate fields of \"auth.accounts\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_accounts_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_accounts_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_order_by","description":"order by aggregate values of table \"auth.accounts\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"auth.accounts\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","description":"Boolean expression to filter rows from the table \"auth.accounts\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account_providers","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null},{"name":"account_providers_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"account_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"account_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"active","description":null,"type":{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"custom_register_data","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"INPUT_OBJECT","name":"citext_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"is_anonymous","description":null,"type":{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","ofType":null},"defaultValue":null},{"name":"mfa_enabled","description":null,"type":{"kind":"INPUT_OBJECT","name":"Boolean_comparison_exp","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"INPUT_OBJECT","name":"citext_comparison_exp","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"refresh_tokens","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null},{"name":"refresh_tokens_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_accounts_constraint","description":"unique or primary key constraints on table \"auth.accounts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"accounts_email_key","description":"unique or primary key constraint on columns \"email\"","isDeprecated":false,"deprecationReason":null},{"name":"accounts_new_email_key","description":"unique or primary key constraint on columns \"new_email\"","isDeprecated":false,"deprecationReason":null},{"name":"accounts_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null},{"name":"accounts_user_id_key","description":"unique or primary key constraint on columns \"user_id\"","isDeprecated":false,"deprecationReason":null},{"name":"accounts_workos_user_id_unique","description":"unique or primary key constraint on columns \"workos_user_id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"custom_register_data","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_insert_input","description":"input type for inserting data into table \"auth.accounts\"","fields":null,"inputFields":[{"name":"account_providers","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"account_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"active","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"is_anonymous","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"mfa_enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"refresh_tokens","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_accounts_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"default_role","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"citext","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"new_email","description":null,"args":[],"type":{"kind":"SCALAR","name":"citext","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"otp_secret","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"password_hash","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ticket","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ticket_expires_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workos_user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_max_order_by","description":"order by max() on columns of table \"auth.accounts\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_accounts_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"default_role","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"citext","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"new_email","description":null,"args":[],"type":{"kind":"SCALAR","name":"citext","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"otp_secret","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"password_hash","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ticket","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ticket_expires_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workos_user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_min_order_by","description":"order by min() on columns of table \"auth.accounts\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_accounts_mutation_response","description":"response of any mutation on the table \"auth.accounts\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"auth.accounts\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_on_conflict","description":"on_conflict condition type for table \"auth.accounts\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","description":"Ordering options when selecting data from \"auth.accounts\".","fields":null,"inputFields":[{"name":"account_providers_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"account_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"active","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"custom_register_data","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"is_anonymous","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"mfa_enabled","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"refresh_tokens_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_pk_columns_input","description":"primary key columns input for table: auth.accounts","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_accounts_select_column","description":"select columns of table \"auth.accounts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"custom_register_data","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"default_role","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"email","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"is_anonymous","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"mfa_enabled","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"new_email","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"otp_secret","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"password_hash","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"ticket","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"ticket_expires_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"workos_user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_and_arguments_columns","description":"select \"auth_accounts_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"auth.accounts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"is_anonymous","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"mfa_enabled","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"auth_accounts_select_column_auth_accounts_aggregate_bool_exp_bool_or_arguments_columns","description":"select \"auth_accounts_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"auth.accounts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"is_anonymous","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"mfa_enabled","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_set_input","description":"input type for updating data in table \"auth.accounts\"","fields":null,"inputFields":[{"name":"active","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"is_anonymous","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"mfa_enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_stream_cursor_input","description":"Streaming cursor of the table \"auth_accounts\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"active","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"custom_register_data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"default_role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"is_anonymous","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"mfa_enabled","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"new_email","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"otp_secret","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"password_hash","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"ticket","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"ticket_expires_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"workos_user_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_accounts_update_column","description":"update columns of table \"auth.accounts\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"custom_register_data","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"default_role","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"email","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"is_anonymous","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"mfa_enabled","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"new_email","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"otp_secret","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"password_hash","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"ticket","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"ticket_expires_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"workos_user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_accounts_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_providers","description":"columns and relationships of \"auth.providers\"","fields":[{"name":"account_providers","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_providers_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"provider","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_providers_aggregate","description":"aggregated selection of \"auth.providers\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_providers_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_providers_aggregate_fields","description":"aggregate fields of \"auth.providers\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_providers_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_providers_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","description":"Boolean expression to filter rows from the table \"auth.providers\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account_providers","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null},{"name":"account_providers_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"provider","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_providers_constraint","description":"unique or primary key constraints on table \"auth.providers\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"providers_pkey","description":"unique or primary key constraint on columns \"provider\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_insert_input","description":"input type for inserting data into table \"auth.providers\"","fields":null,"inputFields":[{"name":"account_providers","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"provider","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_providers_max_fields","description":"aggregate max on columns","fields":[{"name":"provider","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_providers_min_fields","description":"aggregate min on columns","fields":[{"name":"provider","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_providers_mutation_response","description":"response of any mutation on the table \"auth.providers\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"auth.providers\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_providers_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_on_conflict","description":"on_conflict condition type for table \"auth.providers\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_order_by","description":"Ordering options when selecting data from \"auth.providers\".","fields":null,"inputFields":[{"name":"account_providers_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"provider","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_pk_columns_input","description":"primary key columns input for table: auth.providers","fields":null,"inputFields":[{"name":"provider","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_providers_select_column","description":"select columns of table \"auth.providers\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"provider","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_set_input","description":"input type for updating data in table \"auth.providers\"","fields":null,"inputFields":[{"name":"provider","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_stream_cursor_input","description":"Streaming cursor of the table \"auth_providers\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"provider","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_providers_update_column","description":"update columns of table \"auth.providers\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"provider","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_providers_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_providers_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_refresh_tokens","description":"columns and relationships of \"auth.refresh_tokens\"","fields":[{"name":"account","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"expires_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refresh_token","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_refresh_tokens_aggregate","description":"aggregated selection of \"auth.refresh_tokens\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_refresh_tokens_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_refresh_tokens_aggregate_fields","description":"aggregate fields of \"auth.refresh_tokens\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_refresh_tokens_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_refresh_tokens_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_aggregate_order_by","description":"order by aggregate values of table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","description":"Boolean expression to filter rows from the table \"auth.refresh_tokens\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_refresh_tokens_constraint","description":"unique or primary key constraints on table \"auth.refresh_tokens\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"refresh_tokens_pkey","description":"unique or primary key constraint on columns \"refresh_token\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_insert_input","description":"input type for inserting data into table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_refresh_tokens_max_fields","description":"aggregate max on columns","fields":[{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"expires_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refresh_token","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_max_order_by","description":"order by max() on columns of table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_refresh_tokens_min_fields","description":"aggregate min on columns","fields":[{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"expires_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"refresh_token","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_min_order_by","description":"order by min() on columns of table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_refresh_tokens_mutation_response","description":"response of any mutation on the table \"auth.refresh_tokens\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_on_conflict","description":"on_conflict condition type for table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","description":"Ordering options when selecting data from \"auth.refresh_tokens\".","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null},"defaultValue":null},{"name":"account_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_pk_columns_input","description":"primary key columns input for table: auth.refresh_tokens","fields":null,"inputFields":[{"name":"refresh_token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_refresh_tokens_select_column","description":"select columns of table \"auth.refresh_tokens\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"expires_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"refresh_token","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_set_input","description":"input type for updating data in table \"auth.refresh_tokens\"","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_stream_cursor_input","description":"Streaming cursor of the table \"auth_refresh_tokens\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"account_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"expires_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"refresh_token","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_refresh_tokens_update_column","description":"update columns of table \"auth.refresh_tokens\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"account_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"expires_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"refresh_token","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_roles","description":"columns and relationships of \"auth.roles\"","fields":[{"name":"account_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accounts","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"accounts_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_roles_aggregate","description":"aggregated selection of \"auth.roles\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_roles_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_roles_aggregate_fields","description":"aggregate fields of \"auth.roles\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_roles_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"auth_roles_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","description":"Boolean expression to filter rows from the table \"auth.roles\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"account_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"accounts","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"accounts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_roles_constraint","description":"unique or primary key constraints on table \"auth.roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"roles_pkey","description":"unique or primary key constraint on columns \"role\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_insert_input","description":"input type for inserting data into table \"auth.roles\"","fields":null,"inputFields":[{"name":"account_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"accounts","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_roles_max_fields","description":"aggregate max on columns","fields":[{"name":"role","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_roles_min_fields","description":"aggregate min on columns","fields":[{"name":"role","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"auth_roles_mutation_response","description":"response of any mutation on the table \"auth.roles\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"auth.roles\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_roles_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_on_conflict","description":"on_conflict condition type for table \"auth.roles\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","description":"Ordering options when selecting data from \"auth.roles\".","fields":null,"inputFields":[{"name":"account_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"accounts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_pk_columns_input","description":"primary key columns input for table: auth.roles","fields":null,"inputFields":[{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_roles_select_column","description":"select columns of table \"auth.roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"role","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_set_input","description":"input type for updating data in table \"auth.roles\"","fields":null,"inputFields":[{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_stream_cursor_input","description":"Streaming cursor of the table \"auth_roles\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"auth_roles_update_column","description":"update columns of table \"auth.roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"role","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"auth_roles_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branch_statuses","description":"columns and relationships of \"branch_statuses\"","fields":[{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branch_statuses_aggregate","description":"aggregated selection of \"branch_statuses\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"branch_statuses_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branch_statuses_aggregate_fields","description":"aggregate fields of \"branch_statuses\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"branch_statuses_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"branch_statuses_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","description":"Boolean expression to filter rows from the table \"branch_statuses\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null}}},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"branch_statuses_constraint","description":"unique or primary key constraints on table \"branch_statuses\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"branch_statuses_pkey","description":"unique or primary key constraint on columns \"status\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"branch_statuses_enum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"archived","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"created","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_enum_comparison_exp","description":"Boolean expression to compare columns of type \"branch_statuses_enum\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_insert_input","description":"input type for inserting data into table \"branch_statuses\"","fields":null,"inputFields":[{"name":"status","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branch_statuses_max_fields","description":"aggregate max on columns","fields":[{"name":"status","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branch_statuses_min_fields","description":"aggregate min on columns","fields":[{"name":"status","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branch_statuses_mutation_response","description":"response of any mutation on the table \"branch_statuses\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"branch_statuses\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_on_conflict","description":"on_conflict condition type for table \"branch_statuses\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_order_by","description":"Ordering options when selecting data from \"branch_statuses\".","fields":null,"inputFields":[{"name":"status","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_pk_columns_input","description":"primary key columns input for table: branch_statuses","fields":null,"inputFields":[{"name":"status","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"branch_statuses_select_column","description":"select columns of table \"branch_statuses\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"status","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_set_input","description":"input type for updating data in table \"branch_statuses\"","fields":null,"inputFields":[{"name":"status","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_stream_cursor_input","description":"Streaming cursor of the table \"branch_statuses\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"status","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"branch_statuses_update_column","description":"update columns of table \"branch_statuses\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"status","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branch_statuses_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branches","description":"columns and relationships of \"branches\"","fields":[{"name":"branch_status","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"versions","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"versions_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branches_aggregate","description":"aggregated selection of \"branches\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"branches_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branches_aggregate_fields","description":"aggregate fields of \"branches\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"branches_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"branches_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_aggregate_order_by","description":"order by aggregate values of table \"branches\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"branches\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branches_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_bool_exp","description":"Boolean expression to filter rows from the table \"branches\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null}}},"defaultValue":null},{"name":"branch_status","description":null,"type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"explorations","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"explorations_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"INPUT_OBJECT","name":"branch_statuses_enum_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"versions","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null},{"name":"versions_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_aggregate_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"branches_constraint","description":"unique or primary key constraints on table \"branches\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"branches_datasource_id_name_key","description":"unique or primary key constraint on columns \"datasource_id\", \"name\"","isDeprecated":false,"deprecationReason":null},{"name":"branches_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_insert_input","description":"input type for inserting data into table \"branches\"","fields":null,"inputFields":[{"name":"branch_status","description":null,"type":{"kind":"INPUT_OBJECT","name":"branch_statuses_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"explorations","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"versions","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_arr_rel_insert_input","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branches_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_max_order_by","description":"order by max() on columns of table \"branches\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branches_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_min_order_by","description":"order by min() on columns of table \"branches\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"branches_mutation_response","description":"response of any mutation on the table \"branches\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"branches\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branches_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_on_conflict","description":"on_conflict condition type for table \"branches\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_order_by","description":"Ordering options when selecting data from \"branches\".","fields":null,"inputFields":[{"name":"branch_status","description":null,"type":{"kind":"INPUT_OBJECT","name":"branch_statuses_order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"explorations_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"versions_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_aggregate_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_pk_columns_input","description":"primary key columns input for table: branches","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"branches_select_column","description":"select columns of table \"branches\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"status","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_set_input","description":"input type for updating data in table \"branches\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_stream_cursor_input","description":"Streaming cursor of the table \"branches\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"ENUM","name":"branch_statuses_enum","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"branches_update_column","description":"update columns of table \"branches\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"status","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"branches_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"branches_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"citext","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"citext_comparison_exp","description":"Boolean expression to compare columns of type \"citext\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_ilike","description":"does the column match the given case-insensitive pattern","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"citext","ofType":null}}},"defaultValue":null},{"name":"_iregex","description":"does the column match the given POSIX regular expression, case insensitive","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_like","description":"does the column match the given pattern","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_nilike","description":"does the column NOT match the given case-insensitive pattern","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"citext","ofType":null}}},"defaultValue":null},{"name":"_niregex","description":"does the column NOT match the given POSIX regular expression, case insensitive","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_nlike","description":"does the column NOT match the given pattern","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_nregex","description":"does the column NOT match the given POSIX regular expression, case sensitive","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_nsimilar","description":"does the column NOT match the given SQL regular expression","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_regex","description":"does the column match the given POSIX regular expression, case sensitive","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null},{"name":"_similar","description":"does the column match the given SQL regular expression","type":{"kind":"SCALAR","name":"citext","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"create_events","description":"fields of action: \"create_events\"","fields":[{"name":"created_at","description":"the time at which this action was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"errors related to the invocation","args":[],"type":{"kind":"SCALAR","name":"json","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"the unique id of an action","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"output","description":"the output fields of this action","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events_create_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"cursor_ordering","description":"ordering argument of a cursor","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":"ascending ordering of the cursor","isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":"descending ordering of the cursor","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"dashboards","description":"columns and relationships of \"dashboards\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dashboards_aggregate","description":"aggregated selection of \"dashboards\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"dashboards_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dashboards_aggregate_fields","description":"aggregate fields of \"dashboards\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"dashboards_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"dashboards_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_aggregate_order_by","description":"order by aggregate values of table \"dashboards\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"dashboards\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dashboards_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","description":"Boolean expression to filter rows from the table \"dashboards\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"layout","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"pinned_items","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null},{"name":"pinned_items_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"dashboards_constraint","description":"unique or primary key constraints on table \"dashboards\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"dashboards_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"layout","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_insert_input","description":"input type for inserting data into table \"dashboards\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pinned_items","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dashboards_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_max_order_by","description":"order by max() on columns of table \"dashboards\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dashboards_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_min_order_by","description":"order by min() on columns of table \"dashboards\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dashboards_mutation_response","description":"response of any mutation on the table \"dashboards\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"dashboards\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dashboards_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_on_conflict","description":"on_conflict condition type for table \"dashboards\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_order_by","description":"Ordering options when selecting data from \"dashboards\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"layout","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"pinned_items_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_pk_columns_input","description":"primary key columns input for table: dashboards","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"dashboards_select_column","description":"select columns of table \"dashboards\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"layout","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_set_input","description":"input type for updating data in table \"dashboards\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_stream_cursor_input","description":"Streaming cursor of the table \"dashboards\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"layout","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"dashboards_update_column","description":"update columns of table \"dashboards\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"layout","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dashboards_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"dashboards_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"dashboards_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"dashboards_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dataschemas","description":"columns and relationships of \"dataschemas\"","fields":[{"name":"checksum","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"version","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"versions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"version_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dataschemas_aggregate","description":"aggregated selection of \"dataschemas\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"dataschemas_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dataschemas_aggregate_fields","description":"aggregate fields of \"dataschemas\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"dataschemas_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"dataschemas_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_order_by","description":"order by aggregate values of table \"dataschemas\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"dataschemas\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dataschemas_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","description":"Boolean expression to filter rows from the table \"dataschemas\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null}}},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"version","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"dataschemas_constraint","description":"unique or primary key constraints on table \"dataschemas\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"dataschemas_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_insert_input","description":"input type for inserting data into table \"dataschemas\"","fields":null,"inputFields":[{"name":"checksum","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"version","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dataschemas_max_fields","description":"aggregate max on columns","fields":[{"name":"checksum","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"version_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_max_order_by","description":"order by max() on columns of table \"dataschemas\"","fields":null,"inputFields":[{"name":"checksum","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dataschemas_min_fields","description":"aggregate min on columns","fields":[{"name":"checksum","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"version_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_min_order_by","description":"order by min() on columns of table \"dataschemas\"","fields":null,"inputFields":[{"name":"checksum","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"dataschemas_mutation_response","description":"response of any mutation on the table \"dataschemas\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_on_conflict","description":"on_conflict condition type for table \"dataschemas\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","description":"Ordering options when selecting data from \"dataschemas\".","fields":null,"inputFields":[{"name":"checksum","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"version","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_pk_columns_input","description":"primary key columns input for table: dataschemas","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"dataschemas_select_column","description":"select columns of table \"dataschemas\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"checksum","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"code","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"version_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_set_input","description":"input type for updating data in table \"dataschemas\"","fields":null,"inputFields":[{"name":"checksum","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_stream_cursor_input","description":"Streaming cursor of the table \"dataschemas\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"checksum","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"code","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"version_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"dataschemas_update_column","description":"update columns of table \"dataschemas\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"checksum","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"code","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"version_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"dataschemas_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"dataschemas_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"datasources","description":"columns and relationships of \"datasources\"","fields":[{"name":"branches","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branches_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"db_params","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"db_params_computed","description":"A computed field, executes function \"hide_password\"","args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"db_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"datasources_aggregate","description":"aggregated selection of \"datasources\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"datasources_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"datasources_aggregate_fields","description":"aggregate fields of \"datasources\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"datasources_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"datasources_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_aggregate_order_by","description":"order by aggregate values of table \"datasources\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"datasources\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"datasources_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","description":"Boolean expression to filter rows from the table \"datasources\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null}}},"defaultValue":null},{"name":"branches","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null},{"name":"branches_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"dataschemas","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null},{"name":"dataschemas_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"db_params","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"db_params_computed","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"explorations","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"explorations_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"request_logs","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"request_logs_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"sql_credentials","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null},{"name":"sql_credentials_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"datasources_constraint","description":"unique or primary key constraints on table \"datasources\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"datasources_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"db_params","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_insert_input","description":"input type for inserting data into table \"datasources\"","fields":null,"inputFields":[{"name":"branches","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dataschemas","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"explorations","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_logs","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"sql_credentials","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"datasources_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"db_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_max_order_by","description":"order by max() on columns of table \"datasources\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"datasources_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"db_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_min_order_by","description":"order by min() on columns of table \"datasources\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"datasources_mutation_response","description":"response of any mutation on the table \"datasources\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"datasources\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"datasources_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_on_conflict","description":"on_conflict condition type for table \"datasources\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_order_by","description":"Ordering options when selecting data from \"datasources\".","fields":null,"inputFields":[{"name":"branches_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dataschemas_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"db_params","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"db_params_computed","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"explorations_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_logs_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"sql_credentials_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_pk_columns_input","description":"primary key columns input for table: datasources","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"datasources_select_column","description":"select columns of table \"datasources\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"db_params","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"db_type","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_set_input","description":"input type for updating data in table \"datasources\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_stream_cursor_input","description":"Streaming cursor of the table \"datasources\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"db_params","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"db_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"datasources_update_column","description":"update columns of table \"datasources\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"db_params","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"db_type","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"datasources_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"datasources_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"datasources_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"datasources_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events","description":"suitable for Events Analytics","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"device_context","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"page_context","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events_aggregate","description":"aggregated selection of \"events\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"events_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events_aggregate_fields","description":"aggregate fields of \"events\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"events_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"events_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_bool_exp","description":"Boolean expression to filter rows from the table \"events\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"events_constraint","description":"unique or primary key constraints on table \"events\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"events_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_create_input","description":null,"fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"json","ofType":null}},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"json","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"json","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"json","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events_create_mutation_response","description":null,"fields":[{"name":"affected_rows","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_insert_input","description":"input type for inserting data into table \"events\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"events_mutation_response","description":"response of any mutation on the table \"events\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_on_conflict","description":"on_conflict condition type for table \"events\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_order_by","description":"Ordering options when selecting data from \"events\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_pk_columns_input","description":"primary key columns input for table: events","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"events_select_column","description":"select columns of table \"events\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"data","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"device_context","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"page_context","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_set_input","description":"input type for updating data in table \"events\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_stream_cursor_input","description":"Streaming cursor of the table \"events\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"device_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"page_context","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"events_update_column","description":"update columns of table \"events\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"data","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"device_context","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"page_context","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"events_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"events_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"events_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"events_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"events_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"events_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"events_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"explorations","description":"columns and relationships of \"explorations\"","fields":[{"name":"alerts","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"branch","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"branches","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"branch_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"playground_settings","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"playground_state","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reports","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"explorations_aggregate","description":"aggregated selection of \"explorations\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"explorations_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"explorations_aggregate_fields","description":"aggregate fields of \"explorations\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"explorations_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"explorations_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_aggregate_order_by","description":"order by aggregate values of table \"explorations\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"explorations\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"explorations_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","description":"Boolean expression to filter rows from the table \"explorations\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null}}},"defaultValue":null},{"name":"alerts","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null},{"name":"alerts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"branch","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"pinned_items","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null},{"name":"pinned_items_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"playground_settings","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"reports","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null},{"name":"reports_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"explorations_constraint","description":"unique or primary key constraints on table \"explorations\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"explorations_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"playground_settings","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_insert_input","description":"input type for inserting data into table \"explorations\"","fields":null,"inputFields":[{"name":"alerts","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"branch","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"pinned_items","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"reports","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"explorations_max_fields","description":"aggregate max on columns","fields":[{"name":"branch_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_max_order_by","description":"order by max() on columns of table \"explorations\"","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"explorations_min_fields","description":"aggregate min on columns","fields":[{"name":"branch_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_min_order_by","description":"order by min() on columns of table \"explorations\"","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"explorations_mutation_response","description":"response of any mutation on the table \"explorations\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"explorations\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"explorations_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_on_conflict","description":"on_conflict condition type for table \"explorations\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_order_by","description":"Ordering options when selecting data from \"explorations\".","fields":null,"inputFields":[{"name":"alerts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"branch","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"pinned_items_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"playground_settings","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"reports_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_pk_columns_input","description":"primary key columns input for table: explorations","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"explorations_select_column","description":"select columns of table \"explorations\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"branch_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"playground_settings","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"playground_state","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_set_input","description":"input type for updating data in table \"explorations\"","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_stream_cursor_input","description":"Streaming cursor of the table \"explorations\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"playground_settings","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"playground_state","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"explorations_update_column","description":"update columns of table \"explorations\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"branch_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"playground_settings","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"playground_state","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"explorations_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"explorations_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"explorations_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"explorations_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"float8","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"float8_comparison_exp","description":"Boolean expression to compare columns of type \"float8\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"float8","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"float8","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"float8","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"float8","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"float8","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"float8","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"float8","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"float8","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"json","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"jsonb","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"jsonb_cast_exp","description":null,"fields":null,"inputFields":[{"name":"String","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","description":"Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_cast","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_cast_exp","ofType":null},"defaultValue":null},{"name":"_contained_in","description":"is the column contained in the given json value","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_contains","description":"does the column contain the given json value at the top level","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_has_key","description":"does the string exist as a top-level key in the column","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_has_keys_all","description":"do all of these strings exist as top-level keys in the column","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_has_keys_any","description":"do any of these strings exist as top-level keys in the column","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"member_roles","description":"columns and relationships of \"member_roles\"","fields":[{"name":"access_list","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"access_lists","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"access_list_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"member","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"member_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"teamRoleByTeamRole","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_enum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"member_roles_aggregate","description":"aggregated selection of \"member_roles\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"member_roles_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"member_roles_aggregate_fields","description":"aggregate fields of \"member_roles\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"member_roles_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"member_roles_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_order_by","description":"order by aggregate values of table \"member_roles\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"member_roles\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"member_roles_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","description":"Boolean expression to filter rows from the table \"member_roles\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"access_list","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null},{"name":"access_list_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"member","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"teamRoleByTeamRole","description":null,"type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"team_role","description":null,"type":{"kind":"INPUT_OBJECT","name":"team_roles_enum_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"member_roles_constraint","description":"unique or primary key constraints on table \"member_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"member_roles_member_id_team_role_key","description":"unique or primary key constraint on columns \"team_role\", \"member_id\"","isDeprecated":false,"deprecationReason":null},{"name":"member_roles_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_insert_input","description":"input type for inserting data into table \"member_roles\"","fields":null,"inputFields":[{"name":"access_list","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"access_list_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"member","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"teamRoleByTeamRole","description":null,"type":{"kind":"INPUT_OBJECT","name":"team_roles_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_role","description":null,"type":{"kind":"ENUM","name":"team_roles_enum","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"member_roles_max_fields","description":"aggregate max on columns","fields":[{"name":"access_list_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"member_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_max_order_by","description":"order by max() on columns of table \"member_roles\"","fields":null,"inputFields":[{"name":"access_list_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"member_roles_min_fields","description":"aggregate min on columns","fields":[{"name":"access_list_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"member_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_min_order_by","description":"order by min() on columns of table \"member_roles\"","fields":null,"inputFields":[{"name":"access_list_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"member_roles_mutation_response","description":"response of any mutation on the table \"member_roles\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_on_conflict","description":"on_conflict condition type for table \"member_roles\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_order_by","description":"Ordering options when selecting data from \"member_roles\".","fields":null,"inputFields":[{"name":"access_list","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null},"defaultValue":null},{"name":"access_list_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"member","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"teamRoleByTeamRole","description":null,"type":{"kind":"INPUT_OBJECT","name":"team_roles_order_by","ofType":null},"defaultValue":null},{"name":"team_role","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_pk_columns_input","description":"primary key columns input for table: member_roles","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"member_roles_select_column","description":"select columns of table \"member_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"access_list_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"member_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_role","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_set_input","description":"input type for updating data in table \"member_roles\"","fields":null,"inputFields":[{"name":"access_list_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"team_role","description":null,"type":{"kind":"ENUM","name":"team_roles_enum","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_stream_cursor_input","description":"Streaming cursor of the table \"member_roles\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"access_list_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"member_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"team_role","description":null,"type":{"kind":"ENUM","name":"team_roles_enum","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"member_roles_update_column","description":"update columns of table \"member_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"access_list_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"member_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_role","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"member_roles_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"member_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"members","description":"columns and relationships of \"members\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"members_aggregate","description":"aggregated selection of \"members\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"members_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"members_aggregate_fields","description":"aggregate fields of \"members\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"members_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"members_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_aggregate_order_by","description":"order by aggregate values of table \"members\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"members\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"members_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_bool_exp","description":"Boolean expression to filter rows from the table \"members\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"member_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"member_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"members_constraint","description":"unique or primary key constraints on table \"members\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"members_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null},{"name":"members_user_id_team_id_key","description":"unique or primary key constraint on columns \"user_id\", \"team_id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_insert_input","description":"input type for inserting data into table \"members\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"member_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"members_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_max_order_by","description":"order by max() on columns of table \"members\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"members_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_min_order_by","description":"order by min() on columns of table \"members\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"members_mutation_response","description":"response of any mutation on the table \"members\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"members\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"members_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_on_conflict","description":"on_conflict condition type for table \"members\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_order_by","description":"Ordering options when selecting data from \"members\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"member_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_pk_columns_input","description":"primary key columns input for table: members","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"members_select_column","description":"select columns of table \"members\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_set_input","description":"input type for updating data in table \"members\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_stream_cursor_input","description":"Streaming cursor of the table \"members\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"members_update_column","description":"update columns of table \"members\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"members_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"members_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"mutation_root","description":"mutation root","fields":[{"name":"check_connection","description":null,"args":[{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CheckConnectionOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_events","description":null,"args":[{"name":"objects","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_create_input","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"create_team","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateTeamOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_access_lists","description":"delete data from the table: \"access_lists\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_access_lists_by_pk","description":"delete single row from the table: \"access_lists\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_alerts","description":"delete data from the table: \"alerts\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_alerts_by_pk","description":"delete single row from the table: \"alerts\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_account_providers","description":"delete data from the table: \"auth.account_providers\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_account_providers_by_pk","description":"delete single row from the table: \"auth.account_providers\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_account_roles","description":"delete data from the table: \"auth.account_roles\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_account_roles_by_pk","description":"delete single row from the table: \"auth.account_roles\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_accounts","description":"delete data from the table: \"auth.accounts\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_accounts_by_pk","description":"delete single row from the table: \"auth.accounts\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_providers","description":"delete data from the table: \"auth.providers\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_providers_by_pk","description":"delete single row from the table: \"auth.providers\"","args":[{"name":"provider","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_refresh_tokens","description":"delete data from the table: \"auth.refresh_tokens\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_refresh_tokens_by_pk","description":"delete single row from the table: \"auth.refresh_tokens\"","args":[{"name":"refresh_token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_roles","description":"delete data from the table: \"auth.roles\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_auth_roles_by_pk","description":"delete single row from the table: \"auth.roles\"","args":[{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_branch_statuses","description":"delete data from the table: \"branch_statuses\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_branch_statuses_by_pk","description":"delete single row from the table: \"branch_statuses\"","args":[{"name":"status","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_branches","description":"delete data from the table: \"branches\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_branches_by_pk","description":"delete single row from the table: \"branches\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_dashboards","description":"delete data from the table: \"dashboards\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_dashboards_by_pk","description":"delete single row from the table: \"dashboards\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_dataschemas","description":"delete data from the table: \"dataschemas\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_dataschemas_by_pk","description":"delete single row from the table: \"dataschemas\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_datasources","description":"delete data from the table: \"datasources\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_datasources_by_pk","description":"delete single row from the table: \"datasources\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_events","description":"delete data from the table: \"events\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_events_by_pk","description":"delete single row from the table: \"events\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_explorations","description":"delete data from the table: \"explorations\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_explorations_by_pk","description":"delete single row from the table: \"explorations\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_member_roles","description":"delete data from the table: \"member_roles\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_member_roles_by_pk","description":"delete single row from the table: \"member_roles\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_members","description":"delete data from the table: \"members\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_members_by_pk","description":"delete single row from the table: \"members\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_pinned_items","description":"delete data from the table: \"pinned_items\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_pinned_items_by_pk","description":"delete single row from the table: \"pinned_items\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_reports","description":"delete data from the table: \"reports\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_reports_by_pk","description":"delete single row from the table: \"reports\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_request_event_logs","description":"delete data from the table: \"request_event_logs\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_request_event_logs_by_pk","description":"delete single row from the table: \"request_event_logs\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_request_logs","description":"delete data from the table: \"request_logs\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_request_logs_by_pk","description":"delete single row from the table: \"request_logs\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_sql_credentials","description":"delete data from the table: \"sql_credentials\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_sql_credentials_by_pk","description":"delete single row from the table: \"sql_credentials\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_team_roles","description":"delete data from the table: \"team_roles\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_team_roles_by_pk","description":"delete single row from the table: \"team_roles\"","args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_teams","description":"delete data from the table: \"teams\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_teams_by_pk","description":"delete single row from the table: \"teams\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_users","description":"delete data from the table: \"users\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_users_by_pk","description":"delete single row from the table: \"users\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_versions","description":"delete data from the table: \"versions\"","args":[{"name":"where","description":"filter the rows which have to be deleted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_versions_by_pk","description":"delete single row from the table: \"versions\"","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"export_data_models","description":null,"args":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportDataModelsOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"gen_dataschemas","description":null,"args":[{"name":"branch_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"format","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"overwrite","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"tables","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SourceTable","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"GenSourceSchemaOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"gen_sql","description":null,"args":[{"name":"exploration_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"GenSQLOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_access_lists","description":"insert data into the table: \"access_lists\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"access_lists_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_access_lists_one","description":"insert a single row into the table: \"access_lists\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"access_lists_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_alerts","description":"insert data into the table: \"alerts\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"alerts_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_alerts_one","description":"insert a single row into the table: \"alerts\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"alerts_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_account_providers","description":"insert data into the table: \"auth.account_providers\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_account_providers_one","description":"insert a single row into the table: \"auth.account_providers\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_account_roles","description":"insert data into the table: \"auth.account_roles\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_account_roles_one","description":"insert a single row into the table: \"auth.account_roles\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_accounts","description":"insert data into the table: \"auth.accounts\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_accounts_one","description":"insert a single row into the table: \"auth.accounts\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_providers","description":"insert data into the table: \"auth.providers\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_providers_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_providers_one","description":"insert a single row into the table: \"auth.providers\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_providers_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_refresh_tokens","description":"insert data into the table: \"auth.refresh_tokens\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_refresh_tokens_one","description":"insert a single row into the table: \"auth.refresh_tokens\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_roles","description":"insert data into the table: \"auth.roles\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_auth_roles_one","description":"insert a single row into the table: \"auth.roles\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"auth_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_branch_statuses","description":"insert data into the table: \"branch_statuses\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_branch_statuses_one","description":"insert a single row into the table: \"branch_statuses\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_branches","description":"insert data into the table: \"branches\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branches_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_branches_one","description":"insert a single row into the table: \"branches\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"branches_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_dashboards","description":"insert data into the table: \"dashboards\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dashboards_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_dashboards_one","description":"insert a single row into the table: \"dashboards\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dashboards_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_dataschemas","description":"insert data into the table: \"dataschemas\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dataschemas_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_dataschemas_one","description":"insert a single row into the table: \"dataschemas\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"dataschemas_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_datasources","description":"insert data into the table: \"datasources\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"datasources_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_datasources_one","description":"insert a single row into the table: \"datasources\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"datasources_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_events","description":"insert data into the table: \"events\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"events_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_events_one","description":"insert a single row into the table: \"events\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"events_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_explorations","description":"insert data into the table: \"explorations\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"explorations_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_explorations_one","description":"insert a single row into the table: \"explorations\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"explorations_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_member_roles","description":"insert data into the table: \"member_roles\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"member_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_member_roles_one","description":"insert a single row into the table: \"member_roles\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"member_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_members","description":"insert data into the table: \"members\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"members_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_members_one","description":"insert a single row into the table: \"members\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"members_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_pinned_items","description":"insert data into the table: \"pinned_items\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"pinned_items_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_pinned_items_one","description":"insert a single row into the table: \"pinned_items\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"pinned_items_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_reports","description":"insert data into the table: \"reports\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"reports_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_reports_one","description":"insert a single row into the table: \"reports\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"reports_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_request_event_logs","description":"insert data into the table: \"request_event_logs\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_request_event_logs_one","description":"insert a single row into the table: \"request_event_logs\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_request_logs","description":"insert data into the table: \"request_logs\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_logs_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_request_logs_one","description":"insert a single row into the table: \"request_logs\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_logs_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_sql_credentials","description":"insert data into the table: \"sql_credentials\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_sql_credentials_one","description":"insert a single row into the table: \"sql_credentials\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_team_roles","description":"insert data into the table: \"team_roles\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"team_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_team_roles_one","description":"insert a single row into the table: \"team_roles\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"team_roles_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_teams","description":"insert data into the table: \"teams\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"teams_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_teams_one","description":"insert a single row into the table: \"teams\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"teams_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_users","description":"insert data into the table: \"users\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"users_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_users_one","description":"insert a single row into the table: \"users\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"users_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_versions","description":"insert data into the table: \"versions\"","args":[{"name":"objects","description":"the rows to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"versions_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"insert_versions_one","description":"insert a single row into the table: \"versions\"","args":[{"name":"object","description":"the row to be inserted","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"versions_on_conflict","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"invite_team_member","description":null,"args":[{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"magicLink","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"teamId","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"InviteTeamMemberOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"run_query","description":null,"args":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"query","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RunSourceQueryOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"send_test_alert","description":null,"args":[{"name":"deliveryConfig","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"json","ofType":null}},"defaultValue":null},{"name":"deliveryType","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"explorationId","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SendTestAlertOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"smart_gen_dataschemas","description":null,"args":[{"name":"array_join_columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ArrayJoinInput","ofType":null}},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"max_map_keys","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"merge_strategy","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"table_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"table_schema","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nested_filters","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"NestedFilterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SmartGenOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_access_lists","description":"update data of the table: \"access_lists\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"access_lists_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"access_lists_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"access_lists_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_access_lists_by_pk","description":"update single row of the table: \"access_lists\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"access_lists_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"access_lists_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"access_lists_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"access_lists_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_access_lists_many","description":"update multiples rows of table: \"access_lists\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"access_lists_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_alerts","description":"update data of the table: \"alerts\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"alerts_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"alerts_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"alerts_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_alerts_by_pk","description":"update single row of the table: \"alerts\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"alerts_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"alerts_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"alerts_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"alerts_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_alerts_many","description":"update multiples rows of table: \"alerts\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"alerts_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_account_providers","description":"update data of the table: \"auth.account_providers\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_account_providers_by_pk","description":"update single row of the table: \"auth.account_providers\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_account_providers_many","description":"update multiples rows of table: \"auth.account_providers\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_account_roles","description":"update data of the table: \"auth.account_roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_account_roles_by_pk","description":"update single row of the table: \"auth.account_roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_account_roles_many","description":"update multiples rows of table: \"auth.account_roles\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_accounts","description":"update data of the table: \"auth.accounts\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_accounts_by_pk","description":"update single row of the table: \"auth.accounts\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_accounts_many","description":"update multiples rows of table: \"auth.accounts\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_providers","description":"update data of the table: \"auth.providers\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_providers_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_providers_by_pk","description":"update single row of the table: \"auth.providers\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_providers_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_providers_many","description":"update multiples rows of table: \"auth.providers\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_refresh_tokens","description":"update data of the table: \"auth.refresh_tokens\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_refresh_tokens_by_pk","description":"update single row of the table: \"auth.refresh_tokens\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_refresh_tokens_many","description":"update multiples rows of table: \"auth.refresh_tokens\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_roles","description":"update data of the table: \"auth.roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_roles_by_pk","description":"update single row of the table: \"auth.roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"auth_roles_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_auth_roles_many","description":"update multiples rows of table: \"auth.roles\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_branch_statuses","description":"update data of the table: \"branch_statuses\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_branch_statuses_by_pk","description":"update single row of the table: \"branch_statuses\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_branch_statuses_many","description":"update multiples rows of table: \"branch_statuses\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_branches","description":"update data of the table: \"branches\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"branches_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_branches_by_pk","description":"update single row of the table: \"branches\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"branches_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_branches_many","description":"update multiples rows of table: \"branches\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"branches_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_dashboards","description":"update data of the table: \"dashboards\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"dashboards_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"dashboards_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"dashboards_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dashboards_by_pk","description":"update single row of the table: \"dashboards\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"dashboards_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"dashboards_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"dashboards_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"dashboards_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dashboards_many","description":"update multiples rows of table: \"dashboards\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"dashboards_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_dataschemas","description":"update data of the table: \"dataschemas\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"dataschemas_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dataschemas_by_pk","description":"update single row of the table: \"dataschemas\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"dataschemas_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dataschemas_many","description":"update multiples rows of table: \"dataschemas\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_datasources","description":"update data of the table: \"datasources\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"datasources_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"datasources_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"datasources_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_datasources_by_pk","description":"update single row of the table: \"datasources\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"datasources_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"datasources_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"datasources_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"datasources_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_datasources_many","description":"update multiples rows of table: \"datasources\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"datasources_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_events","description":"update data of the table: \"events\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"events_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"events_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"events_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"events_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"events_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"events_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_events_by_pk","description":"update single row of the table: \"events\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"events_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"events_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"events_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"events_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"events_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"events_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_events_many","description":"update multiples rows of table: \"events\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"events_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_explorations","description":"update data of the table: \"explorations\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"explorations_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"explorations_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"explorations_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_explorations_by_pk","description":"update single row of the table: \"explorations\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"explorations_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"explorations_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"explorations_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"explorations_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_explorations_many","description":"update multiples rows of table: \"explorations\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"explorations_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_member_roles","description":"update data of the table: \"member_roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"member_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_member_roles_by_pk","description":"update single row of the table: \"member_roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"member_roles_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_member_roles_many","description":"update multiples rows of table: \"member_roles\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"member_roles_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_members","description":"update data of the table: \"members\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"members_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_members_by_pk","description":"update single row of the table: \"members\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"members_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_members_many","description":"update multiples rows of table: \"members\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"members_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_pinned_items","description":"update data of the table: \"pinned_items\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"pinned_items_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_pinned_items_by_pk","description":"update single row of the table: \"pinned_items\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"pinned_items_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_pinned_items_many","description":"update multiples rows of table: \"pinned_items\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_reports","description":"update data of the table: \"reports\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"reports_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"reports_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"reports_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"reports_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"reports_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"reports_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_reports_by_pk","description":"update single row of the table: \"reports\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"reports_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"reports_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"reports_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"reports_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"reports_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"reports_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_reports_many","description":"update multiples rows of table: \"reports\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"reports_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_request_event_logs","description":"update data of the table: \"request_event_logs\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_key_input","ofType":null},"defaultValue":null},{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_inc_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_request_event_logs_by_pk","description":"update single row of the table: \"request_event_logs\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_key_input","ofType":null},"defaultValue":null},{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_inc_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_request_event_logs_many","description":"update multiples rows of table: \"request_event_logs\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_request_logs","description":"update data of the table: \"request_logs\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"request_logs_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_request_logs_by_pk","description":"update single row of the table: \"request_logs\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"request_logs_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_request_logs_many","description":"update multiples rows of table: \"request_logs\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"request_logs_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_sql_credentials","description":"update data of the table: \"sql_credentials\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_sql_credentials_by_pk","description":"update single row of the table: \"sql_credentials\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_sql_credentials_many","description":"update multiples rows of table: \"sql_credentials\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_team_roles","description":"update data of the table: \"team_roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"team_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_team_roles_by_pk","description":"update single row of the table: \"team_roles\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"team_roles_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_team_roles_many","description":"update multiples rows of table: \"team_roles\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"team_roles_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_team_settings","description":null,"args":[{"name":"settings","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateTeamSettingsOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_teams","description":"update data of the table: \"teams\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"teams_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"teams_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"teams_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"teams_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"teams_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"teams_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_teams_by_pk","description":"update single row of the table: \"teams\"","args":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"teams_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"teams_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"teams_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"teams_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"teams_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"teams_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_teams_many","description":"update multiples rows of table: \"teams\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"teams_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_users","description":"update data of the table: \"users\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"users_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_users_by_pk","description":"update single row of the table: \"users\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"users_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_users_many","description":"update multiples rows of table: \"users\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"users_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_versions","description":"update data of the table: \"versions\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"versions_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions_mutation_response","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_versions_by_pk","description":"update single row of the table: \"versions\"","args":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"versions_set_input","ofType":null},"defaultValue":null},{"name":"pk_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_pk_columns_input","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_versions_many","description":"update multiples rows of table: \"versions\"","args":[{"name":"updates","description":"updates to execute, in order","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_updates","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"versions_mutation_response","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"numeric","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"numeric_comparison_exp","description":"Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"numeric","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"numeric","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"order_by","description":"column ordering options","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"asc","description":"in ascending order, nulls last","isDeprecated":false,"deprecationReason":null},{"name":"asc_nulls_first","description":"in ascending order, nulls first","isDeprecated":false,"deprecationReason":null},{"name":"asc_nulls_last","description":"in ascending order, nulls last","isDeprecated":false,"deprecationReason":null},{"name":"desc","description":"in descending order, nulls first","isDeprecated":false,"deprecationReason":null},{"name":"desc_nulls_first","description":"in descending order, nulls first","isDeprecated":false,"deprecationReason":null},{"name":"desc_nulls_last","description":"in descending order, nulls last","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"pinned_items","description":"columns and relationships of \"pinned_items\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboard","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboard_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"exploration","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"spec","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"spec_config","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"pinned_items_aggregate","description":"aggregated selection of \"pinned_items\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"pinned_items_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"pinned_items_aggregate_fields","description":"aggregate fields of \"pinned_items\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"pinned_items_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"pinned_items_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_aggregate_order_by","description":"order by aggregate values of table \"pinned_items\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"pinned_items\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"pinned_items_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","description":"Boolean expression to filter rows from the table \"pinned_items\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"dashboard","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"spec","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"pinned_items_constraint","description":"unique or primary key constraints on table \"pinned_items\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"pinned_items_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"spec","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_insert_input","description":"input type for inserting data into table \"pinned_items\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dashboard","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"pinned_items_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dashboard_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_max_order_by","description":"order by max() on columns of table \"pinned_items\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"pinned_items_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dashboard_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_min_order_by","description":"order by min() on columns of table \"pinned_items\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"pinned_items_mutation_response","description":"response of any mutation on the table \"pinned_items\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_on_conflict","description":"on_conflict condition type for table \"pinned_items\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","description":"Ordering options when selecting data from \"pinned_items\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dashboard","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"spec","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_pk_columns_input","description":"primary key columns input for table: pinned_items","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"pinned_items_select_column","description":"select columns of table \"pinned_items\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"dashboard_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"spec","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"spec_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_set_input","description":"input type for updating data in table \"pinned_items\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_stream_cursor_input","description":"Streaming cursor of the table \"pinned_items\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dashboard_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"spec","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"spec_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"pinned_items_update_column","description":"update columns of table \"pinned_items\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"dashboard_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"spec","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"spec_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"pinned_items_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"pinned_items_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"pinned_items_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"query_root","description":null,"fields":[{"name":"access_lists","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"access_lists_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"access_lists_by_pk","description":"fetch data from the table: \"access_lists\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"alerts","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_by_pk","description":"fetch data from the table: \"alerts\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers","description":"fetch data from the table: \"auth.account_providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers_aggregate","description":"fetch aggregated fields from the table: \"auth.account_providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers_by_pk","description":"fetch data from the table: \"auth.account_providers\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles","description":"fetch data from the table: \"auth.account_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles_aggregate","description":"fetch aggregated fields from the table: \"auth.account_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles_by_pk","description":"fetch data from the table: \"auth.account_roles\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts","description":"fetch data from the table: \"auth.accounts\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts_aggregate","description":"fetch aggregated fields from the table: \"auth.accounts\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts_by_pk","description":"fetch data from the table: \"auth.accounts\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers","description":"fetch data from the table: \"auth.providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers_aggregate","description":"fetch aggregated fields from the table: \"auth.providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers_by_pk","description":"fetch data from the table: \"auth.providers\" using primary key columns","args":[{"name":"provider","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens","description":"fetch data from the table: \"auth.refresh_tokens\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens_aggregate","description":"fetch aggregated fields from the table: \"auth.refresh_tokens\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens_by_pk","description":"fetch data from the table: \"auth.refresh_tokens\" using primary key columns","args":[{"name":"refresh_token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles","description":"fetch data from the table: \"auth.roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles_aggregate","description":"fetch aggregated fields from the table: \"auth.roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles_by_pk","description":"fetch data from the table: \"auth.roles\" using primary key columns","args":[{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses","description":"fetch data from the table: \"branch_statuses\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses_aggregate","description":"fetch aggregated fields from the table: \"branch_statuses\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses_by_pk","description":"fetch data from the table: \"branch_statuses\" using primary key columns","args":[{"name":"status","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"branches","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branches_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"branches_by_pk","description":"fetch data from the table: \"branches\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_events","description":null,"args":[{"name":"id","description":"the unique id of an action","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"create_events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards_by_pk","description":"fetch data from the table: \"dashboards\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_by_pk","description":"fetch data from the table: \"dataschemas\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasources","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_by_pk","description":"fetch data from the table: \"datasources\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"events","description":"fetch data from the table: \"events\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"events_aggregate","description":"fetch aggregated fields from the table: \"events\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"events_by_pk","description":"fetch data from the table: \"events\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"explorations","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_by_pk","description":"fetch data from the table: \"explorations\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fetch_dataset","description":null,"args":[{"name":"exploration_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FetchDatasetOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fetch_meta","description":null,"args":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SourceMetaOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fetch_tables","description":null,"args":[{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SourceTablesOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_by_pk","description":"fetch data from the table: \"member_roles\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"members","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"members_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"members_by_pk","description":"fetch data from the table: \"members\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_by_pk","description":"fetch data from the table: \"pinned_items\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pre_aggregation_preview","description":null,"args":[{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"pre_aggregation_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"table_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PreAggregationPreviewOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pre_aggregations","description":null,"args":[{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PreAggregationsOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"profile_table","description":null,"args":[{"name":"branch_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null},{"name":"table_name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"table_schema","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ProfileTableOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reports","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_by_pk","description":"fetch data from the table: \"reports\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs_by_pk","description":"fetch data from the table: \"request_event_logs\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_by_pk","description":"fetch data from the table: \"request_logs\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_by_pk","description":"fetch data from the table: \"sql_credentials\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles","description":"fetch data from the table: \"team_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles_aggregate","description":"fetch aggregated fields from the table: \"team_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles_by_pk","description":"fetch data from the table: \"team_roles\" using primary key columns","args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"teams","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"teams_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"teams_by_pk","description":"fetch data from the table: \"teams\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"users","description":"fetch data from the table: \"users\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"users_aggregate","description":"fetch aggregated fields from the table: \"users\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"users_by_pk","description":"fetch data from the table: \"users\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"versions","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"versions_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"versions_by_pk","description":"fetch data from the table: \"versions\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"reports","description":"columns and relationships of \"reports\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_config","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"exploration","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"reports_aggregate","description":"aggregated selection of \"reports\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"reports_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"reports_aggregate_fields","description":"aggregate fields of \"reports\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"reports_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"reports_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_aggregate_order_by","description":"order by aggregate values of table \"reports\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"reports\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"reports_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_bool_exp","description":"Boolean expression to filter rows from the table \"reports\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"reports_constraint","description":"unique or primary key constraints on table \"reports\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"reports_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_insert_input","description":"input type for inserting data into table \"reports\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"reports_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_max_order_by","description":"order by max() on columns of table \"reports\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"reports_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_min_order_by","description":"order by min() on columns of table \"reports\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"reports_mutation_response","description":"response of any mutation on the table \"reports\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_on_conflict","description":"on_conflict condition type for table \"reports\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_order_by","description":"Ordering options when selecting data from \"reports\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"exploration","description":null,"type":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"team","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_pk_columns_input","description":"primary key columns input for table: reports","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"reports_select_column","description":"select columns of table \"reports\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_set_input","description":"input type for updating data in table \"reports\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_stream_cursor_input","description":"Streaming cursor of the table \"reports\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"delivery_config","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"delivery_type","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"exploration_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"schedule","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"team_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"reports_update_column","description":"update columns of table \"reports\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_config","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"delivery_type","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"exploration_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"schedule","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"reports_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"reports_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"reports_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"reports_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"reports_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"reports_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"reports_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs","description":"columns and relationships of \"request_event_logs\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"event","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_key","description":null,"args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_key_md5","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_sql","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queue_prefix","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_log","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_aggregate","description":"aggregated selection of \"request_event_logs\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_aggregate_fields","description":"aggregate fields of \"request_event_logs\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_event_logs_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_aggregate_order_by","description":"order by aggregate values of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"avg","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_avg_order_by","ofType":null},"defaultValue":null},{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_min_order_by","ofType":null},"defaultValue":null},{"name":"stddev","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_stddev_order_by","ofType":null},"defaultValue":null},{"name":"stddev_pop","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_stddev_pop_order_by","ofType":null},"defaultValue":null},{"name":"stddev_samp","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_stddev_samp_order_by","ofType":null},"defaultValue":null},{"name":"sum","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_sum_order_by","ofType":null},"defaultValue":null},{"name":"var_pop","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_var_pop_order_by","ofType":null},"defaultValue":null},{"name":"var_samp","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_var_samp_order_by","ofType":null},"defaultValue":null},{"name":"variance","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_variance_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"query","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"request_event_logs\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_avg_fields","description":"aggregate avg on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_avg_order_by","description":"order by avg() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","description":"Boolean expression to filter rows from the table \"request_event_logs\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"INPUT_OBJECT","name":"numeric_comparison_exp","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"query","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"request_log","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"INPUT_OBJECT","name":"numeric_comparison_exp","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"request_event_logs_constraint","description":"unique or primary key constraints on table \"request_event_logs\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"request_event_logs_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"query","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"query","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"query","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_inc_input","description":"input type for incrementing numeric columns in table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_insert_input","description":"input type for inserting data into table \"request_event_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_log","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"event","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_key_md5","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_sql","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queue_prefix","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_max_order_by","description":"order by max() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"event","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_key_md5","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query_sql","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queue_prefix","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_min_order_by","description":"order by min() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_mutation_response","description":"response of any mutation on the table \"request_event_logs\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_on_conflict","description":"on_conflict condition type for table \"request_event_logs\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","description":"Ordering options when selecting data from \"request_event_logs\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_log","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_pk_columns_input","description":"primary key columns input for table: request_event_logs","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"query","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"request_event_logs_select_column","description":"select columns of table \"request_event_logs\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"error","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"event","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"path","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query_key","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query_key_md5","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query_sql","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"queue_prefix","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_set_input","description":"input type for updating data in table \"request_event_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_stddev_order_by","description":"order by stddev() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_stddev_pop_order_by","description":"order by stddev_pop() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_stddev_samp_order_by","description":"order by stddev_samp() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_stream_cursor_input","description":"Streaming cursor of the table \"request_event_logs\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"error","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"event","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key","description":null,"type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"query_key_md5","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"query_sql","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"queue_prefix","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"SCALAR","name":"numeric","ofType":null},"defaultValue":null},{"name":"timestamp","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_sum_fields","description":"aggregate sum on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"numeric","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_sum_order_by","description":"order by sum() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"request_event_logs_update_column","description":"update columns of table \"request_event_logs\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"error","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"event","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"path","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query_key","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query_key_md5","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"query_sql","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"queue_prefix","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_delete_key_input","ofType":null},"defaultValue":null},{"name":"_inc","description":"increments the numeric columns with given value of the filtered values","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_inc_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_var_pop_order_by","description":"order by var_pop() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_var_samp_order_by","description":"order by var_samp() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_event_logs_variance_fields","description":"aggregate variance on columns","fields":[{"name":"duration","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time_in_queue","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_event_logs_variance_order_by","description":"order by variance() on columns of table \"request_event_logs\"","fields":null,"inputFields":[{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"time_in_queue","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs","description":"columns and relationships of \"request_logs\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"end_time","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"start_time","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_aggregate","description":"aggregated selection of \"request_logs\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_aggregate_fields","description":"aggregate fields of \"request_logs\"","fields":[{"name":"avg","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_avg_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_stddev_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_stddev_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"stddev_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_stddev_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sum","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_sum_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_pop","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_var_pop_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"var_samp","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_var_samp_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"variance","description":null,"args":[],"type":{"kind":"OBJECT","name":"request_logs_variance_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_order_by","description":"order by aggregate values of table \"request_logs\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"request_logs\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_logs_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_avg_fields","description":"aggregate avg on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","description":"Boolean expression to filter rows from the table \"request_logs\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"INPUT_OBJECT","name":"float8_comparison_exp","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"request_event_logs","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"request_event_logs_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"request_logs_constraint","description":"unique or primary key constraints on table \"request_logs\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"request_logs_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null},{"name":"request_logs_request_id_key","description":"unique or primary key constraint on columns \"request_id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_insert_input","description":"input type for inserting data into table \"request_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_event_logs","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"end_time","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"start_time","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_max_order_by","description":"order by max() on columns of table \"request_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"end_time","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"start_time","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_min_order_by","description":"order by min() on columns of table \"request_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_mutation_response","description":"response of any mutation on the table \"request_logs\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"request_logs\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"request_logs_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_on_conflict","description":"on_conflict condition type for table \"request_logs\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_order_by","description":"Ordering options when selecting data from \"request_logs\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"duration","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"request_event_logs_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_event_logs_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_pk_columns_input","description":"primary key columns input for table: request_logs","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"request_logs_select_column","description":"select columns of table \"request_logs\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"end_time","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"path","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"start_time","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_set_input","description":"input type for updating data in table \"request_logs\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_stddev_fields","description":"aggregate stddev on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_stddev_pop_fields","description":"aggregate stddev_pop on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_stddev_samp_fields","description":"aggregate stddev_samp on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_stream_cursor_input","description":"Streaming cursor of the table \"request_logs\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"end_time","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"path","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"request_id","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"start_time","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_sum_fields","description":"aggregate sum on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"request_logs_update_column","description":"update columns of table \"request_logs\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"end_time","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"path","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"request_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"start_time","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"request_logs_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"request_logs_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_var_pop_fields","description":"aggregate var_pop on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_var_samp_fields","description":"aggregate var_samp on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"request_logs_variance_fields","description":"aggregate variance on columns","fields":[{"name":"duration","description":"A computed field, executes function \"duration\"","args":[],"type":{"kind":"SCALAR","name":"float8","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"sql_credentials","description":"columns and relationships of \"sql_credentials\"","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"password","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"username","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"sql_credentials_aggregate","description":"aggregated selection of \"sql_credentials\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"sql_credentials_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"sql_credentials_aggregate_fields","description":"aggregate fields of \"sql_credentials\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"sql_credentials_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"sql_credentials_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_order_by","description":"order by aggregate values of table \"sql_credentials\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"sql_credentials\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","description":"Boolean expression to filter rows from the table \"sql_credentials\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null}}},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"sql_credentials_constraint","description":"unique or primary key constraints on table \"sql_credentials\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"sql_credentials_datasource_id_user_id_username_key","description":"unique or primary key constraint on columns \"user_id\", \"username\", \"datasource_id\"","isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_username_key","description":"unique or primary key constraint on columns \"username\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_insert_input","description":"input type for inserting data into table \"sql_credentials\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"sql_credentials_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"password","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"username","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_max_order_by","description":"order by max() on columns of table \"sql_credentials\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"sql_credentials_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"password","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"username","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_min_order_by","description":"order by min() on columns of table \"sql_credentials\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"sql_credentials_mutation_response","description":"response of any mutation on the table \"sql_credentials\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_on_conflict","description":"on_conflict condition type for table \"sql_credentials\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","description":"Ordering options when selecting data from \"sql_credentials\".","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"datasource","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_pk_columns_input","description":"primary key columns input for table: sql_credentials","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"sql_credentials_select_column","description":"select columns of table \"sql_credentials\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"password","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"username","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_set_input","description":"input type for updating data in table \"sql_credentials\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_stream_cursor_input","description":"Streaming cursor of the table \"sql_credentials\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"datasource_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"username","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"sql_credentials_update_column","description":"update columns of table \"sql_credentials\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"datasource_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"password","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"username","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"sql_credentials_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"subscription_root","description":null,"fields":[{"name":"access_lists","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"access_lists_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"access_lists_by_pk","description":"fetch data from the table: \"access_lists\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"access_lists","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"access_lists_stream","description":"fetch data from the table in a streaming manner: \"access_lists\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_by_pk","description":"fetch data from the table: \"alerts\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"alerts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_stream","description":"fetch data from the table in a streaming manner: \"alerts\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers","description":"fetch data from the table: \"auth.account_providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers_aggregate","description":"fetch aggregated fields from the table: \"auth.account_providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers_by_pk","description":"fetch data from the table: \"auth.account_providers\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_providers_stream","description":"fetch data from the table in a streaming manner: \"auth.account_providers\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_providers_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles","description":"fetch data from the table: \"auth.account_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles_aggregate","description":"fetch aggregated fields from the table: \"auth.account_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_account_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles_by_pk","description":"fetch data from the table: \"auth.account_roles\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_account_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_account_roles_stream","description":"fetch data from the table in a streaming manner: \"auth.account_roles\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_account_roles_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_account_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_account_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts","description":"fetch data from the table: \"auth.accounts\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts_aggregate","description":"fetch aggregated fields from the table: \"auth.accounts\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_accounts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts_by_pk","description":"fetch data from the table: \"auth.accounts\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_accounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_accounts_stream","description":"fetch data from the table in a streaming manner: \"auth.accounts\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_accounts_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_accounts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers","description":"fetch data from the table: \"auth.providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers_aggregate","description":"fetch aggregated fields from the table: \"auth.providers\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_providers_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers_by_pk","description":"fetch data from the table: \"auth.providers\" using primary key columns","args":[{"name":"provider","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_providers","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_providers_stream","description":"fetch data from the table in a streaming manner: \"auth.providers\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_providers_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_providers_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_providers","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens","description":"fetch data from the table: \"auth.refresh_tokens\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens_aggregate","description":"fetch aggregated fields from the table: \"auth.refresh_tokens\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_refresh_tokens_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens_by_pk","description":"fetch data from the table: \"auth.refresh_tokens\" using primary key columns","args":[{"name":"refresh_token","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_refresh_tokens_stream","description":"fetch data from the table in a streaming manner: \"auth.refresh_tokens\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_refresh_tokens_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_refresh_tokens","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles","description":"fetch data from the table: \"auth.roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles_aggregate","description":"fetch aggregated fields from the table: \"auth.roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"auth_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles_by_pk","description":"fetch data from the table: \"auth.roles\" using primary key columns","args":[{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"auth_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"auth_roles_stream","description":"fetch data from the table in a streaming manner: \"auth.roles\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"auth_roles_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"auth_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"auth_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses","description":"fetch data from the table: \"branch_statuses\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses_aggregate","description":"fetch aggregated fields from the table: \"branch_statuses\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branch_statuses_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses_by_pk","description":"fetch data from the table: \"branch_statuses\" using primary key columns","args":[{"name":"status","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branch_statuses","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"branch_statuses_stream","description":"fetch data from the table in a streaming manner: \"branch_statuses\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branch_statuses_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branch_statuses_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branch_statuses","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branches","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branches_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"branches_by_pk","description":"fetch data from the table: \"branches\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"branches","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"branches_stream","description":"fetch data from the table in a streaming manner: \"branches\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"create_events","description":null,"args":[{"name":"id","description":"the unique id of an action","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"create_events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards_by_pk","description":"fetch data from the table: \"dashboards\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dashboards","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards_stream","description":"fetch data from the table in a streaming manner: \"dashboards\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_by_pk","description":"fetch data from the table: \"dataschemas\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"dataschemas","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_stream","description":"fetch data from the table in a streaming manner: \"dataschemas\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_by_pk","description":"fetch data from the table: \"datasources\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"datasources","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_stream","description":"fetch data from the table in a streaming manner: \"datasources\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"events","description":"fetch data from the table: \"events\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"events_aggregate","description":"fetch aggregated fields from the table: \"events\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"events_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"events_by_pk","description":"fetch data from the table: \"events\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"events","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"events_stream","description":"fetch data from the table in a streaming manner: \"events\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"events_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"events_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"events","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"explorations_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_by_pk","description":"fetch data from the table: \"explorations\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"explorations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"explorations_stream","description":"fetch data from the table in a streaming manner: \"explorations\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"explorations_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"explorations_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"explorations","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_by_pk","description":"fetch data from the table: \"member_roles\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"member_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_stream","description":"fetch data from the table in a streaming manner: \"member_roles\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"members","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"members_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"members_by_pk","description":"fetch data from the table: \"members\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"members","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"members_stream","description":"fetch data from the table in a streaming manner: \"members\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"pinned_items_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_by_pk","description":"fetch data from the table: \"pinned_items\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"pinned_items","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_items_stream","description":"fetch data from the table in a streaming manner: \"pinned_items\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"pinned_items_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"pinned_items_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"pinned_items","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reports","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_by_pk","description":"fetch data from the table: \"reports\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"reports","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reports_stream","description":"fetch data from the table in a streaming manner: \"reports\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_event_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs_by_pk","description":"fetch data from the table: \"request_event_logs\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_event_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_event_logs_stream","description":"fetch data from the table in a streaming manner: \"request_event_logs\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_event_logs_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_event_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_event_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_by_pk","description":"fetch data from the table: \"request_logs\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"request_logs","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_stream","description":"fetch data from the table in a streaming manner: \"request_logs\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_by_pk","description":"fetch data from the table: \"sql_credentials\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"sql_credentials","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_stream","description":"fetch data from the table in a streaming manner: \"sql_credentials\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles","description":"fetch data from the table: \"team_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles_aggregate","description":"fetch aggregated fields from the table: \"team_roles\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles_by_pk","description":"fetch data from the table: \"team_roles\" using primary key columns","args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"team_roles","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_roles_stream","description":"fetch data from the table in a streaming manner: \"team_roles\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"teams","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"teams_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"teams_by_pk","description":"fetch data from the table: \"teams\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"teams","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"teams_stream","description":"fetch data from the table in a streaming manner: \"teams\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"users","description":"fetch data from the table: \"users\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"users_aggregate","description":"fetch aggregated fields from the table: \"users\"","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"users_by_pk","description":"fetch data from the table: \"users\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"users","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"users_stream","description":"fetch data from the table in a streaming manner: \"users\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"versions","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"versions_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"versions_by_pk","description":"fetch data from the table: \"versions\" using primary key columns","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"versions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"versions_stream","description":"fetch data from the table in a streaming manner: \"versions\"","args":[{"name":"batch_size","description":"maximum number of rows returned in a single batch","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"cursor","description":"cursor to stream the results returned by the query","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_stream_cursor_input","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"team_roles","description":"columns and relationships of \"team_roles\"","fields":[{"name":"member_roles","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"member_roles_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"member_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"member_roles_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"member_roles_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"team_roles_aggregate","description":"aggregated selection of \"team_roles\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"team_roles_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"team_roles_aggregate_fields","description":"aggregate fields of \"team_roles\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"team_roles_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"team_roles_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","description":"Boolean expression to filter rows from the table \"team_roles\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null}}},"defaultValue":null},{"name":"member_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_bool_exp","ofType":null},"defaultValue":null},{"name":"member_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"team_roles_constraint","description":"unique or primary key constraints on table \"team_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"team_roles_pkey","description":"unique or primary key constraint on columns \"name\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"team_roles_enum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"admin","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"member","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"owner","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_enum_comparison_exp","description":"Boolean expression to compare columns of type \"team_roles_enum\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"ENUM","name":"team_roles_enum","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_enum","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"ENUM","name":"team_roles_enum","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_enum","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_insert_input","description":"input type for inserting data into table \"team_roles\"","fields":null,"inputFields":[{"name":"member_roles","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"team_roles_max_fields","description":"aggregate max on columns","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"team_roles_min_fields","description":"aggregate min on columns","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"team_roles_mutation_response","description":"response of any mutation on the table \"team_roles\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"team_roles","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"team_roles\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"team_roles_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_on_conflict","description":"on_conflict condition type for table \"team_roles\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"team_roles_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_order_by","description":"Ordering options when selecting data from \"team_roles\".","fields":null,"inputFields":[{"name":"member_roles_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"member_roles_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_pk_columns_input","description":"primary key columns input for table: team_roles","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"team_roles_select_column","description":"select columns of table \"team_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_set_input","description":"input type for updating data in table \"team_roles\"","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_stream_cursor_input","description":"Streaming cursor of the table \"team_roles\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"team_roles_update_column","description":"update columns of table \"team_roles\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"team_roles_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"team_roles_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"team_roles_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"teams","description":"columns and relationships of \"teams\"","fields":[{"name":"access_lists","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"access_lists_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"access_lists_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"access_lists_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"access_lists_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dashboards_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dashboards_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dashboards_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dashboards_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"members","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"members_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reports","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","args":[{"name":"path","description":"JSON select path","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"jsonb","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"teams_aggregate","description":"aggregated selection of \"teams\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"teams_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"teams_aggregate_fields","description":"aggregate fields of \"teams\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"teams_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"teams_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_aggregate_order_by","description":"order by aggregate values of table \"teams\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_append_input","description":"append existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"teams\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"teams_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_bool_exp","description":"Boolean expression to filter rows from the table \"teams\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null}}},"defaultValue":null},{"name":"access_lists","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_bool_exp","ofType":null},"defaultValue":null},{"name":"access_lists_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"alerts","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null},{"name":"alerts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"dashboards","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_bool_exp","ofType":null},"defaultValue":null},{"name":"dashboards_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"datasources","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasources_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"members","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null},{"name":"members_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"reports","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null},{"name":"reports_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"settings","description":null,"type":{"kind":"INPUT_OBJECT","name":"jsonb_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"teams_constraint","description":"unique or primary key constraints on table \"teams\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"teams_name_unique","description":"unique or primary key constraint on columns ","isDeprecated":false,"deprecationReason":null},{"name":"teams_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_delete_at_path_input","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","fields":null,"inputFields":[{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_delete_elem_input","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","fields":null,"inputFields":[{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_delete_key_input","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","fields":null,"inputFields":[{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_insert_input","description":"input type for inserting data into table \"teams\"","fields":null,"inputFields":[{"name":"access_lists","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"alerts","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dashboards","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasources","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"members","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"reports","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"teams_max_fields","description":"aggregate max on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_max_order_by","description":"order by max() on columns of table \"teams\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"teams_min_fields","description":"aggregate min on columns","fields":[{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_min_order_by","description":"order by min() on columns of table \"teams\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"teams_mutation_response","description":"response of any mutation on the table \"teams\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"teams\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"teams_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_on_conflict","description":"on_conflict condition type for table \"teams\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_order_by","description":"Ordering options when selecting data from \"teams\".","fields":null,"inputFields":[{"name":"access_lists_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"access_lists_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"alerts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dashboards_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dashboards_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"datasources_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"members_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"reports_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"settings","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_pk_columns_input","description":"primary key columns input for table: teams","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_prepend_input","description":"prepend existing jsonb value of filtered columns with new jsonb value","fields":null,"inputFields":[{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"teams_select_column","description":"select columns of table \"teams\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_set_input","description":"input type for updating data in table \"teams\"","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_stream_cursor_input","description":"Streaming cursor of the table \"teams\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"settings","description":"Team-level admin configuration (partition, internal_tables)","type":{"kind":"SCALAR","name":"jsonb","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"teams_update_column","description":"update columns of table \"teams\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"teams_updates","description":null,"fields":null,"inputFields":[{"name":"_append","description":"append existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"teams_append_input","ofType":null},"defaultValue":null},{"name":"_delete_at_path","description":"delete the field or element with specified path (for JSON arrays, negative integers count from the end)","type":{"kind":"INPUT_OBJECT","name":"teams_delete_at_path_input","ofType":null},"defaultValue":null},{"name":"_delete_elem","description":"delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array","type":{"kind":"INPUT_OBJECT","name":"teams_delete_elem_input","ofType":null},"defaultValue":null},{"name":"_delete_key","description":"delete key/value pair or string element. key/value pairs are matched based on their key value","type":{"kind":"INPUT_OBJECT","name":"teams_delete_key_input","ofType":null},"defaultValue":null},{"name":"_prepend","description":"prepend existing jsonb value of filtered columns with new jsonb value","type":{"kind":"INPUT_OBJECT","name":"teams_prepend_input","ofType":null},"defaultValue":null},{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"teams_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"timestamptz","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","description":"Boolean expression to compare columns of type \"timestamptz\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"users","description":"columns and relationships of \"users\"","fields":[{"name":"account","description":"An object relationship","args":[],"type":{"kind":"OBJECT","name":"auth_accounts","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"alerts","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"alerts_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"alerts_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"alerts_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"alerts_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"avatar_url","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"branches","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"branches_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"branches_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"datasources_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"datasources_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"datasources_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"datasources_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"display_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"members","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"members_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"members_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"members_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"members_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reports","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"reports_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"reports_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"reports_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"reports_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"request_logs_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"request_logs_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"request_logs_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"request_logs_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"sql_credentials_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"sql_credentials_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"sql_credentials_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"sql_credentials_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"teams","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"teams_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"teams_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"teams_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"teams_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"versions","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"versions_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"users_aggregate","description":"aggregated selection of \"users\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"users_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"users_aggregate_fields","description":"aggregate fields of \"users\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"users_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"users_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_bool_exp","description":"Boolean expression to filter rows from the table \"users\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null}}},"defaultValue":null},{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_bool_exp","ofType":null},"defaultValue":null},{"name":"alerts","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_bool_exp","ofType":null},"defaultValue":null},{"name":"alerts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"avatar_url","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"branches","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null},{"name":"branches_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"dataschemas","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null},{"name":"dataschemas_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"datasources","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_bool_exp","ofType":null},"defaultValue":null},{"name":"datasources_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"display_name","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"members","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_bool_exp","ofType":null},"defaultValue":null},{"name":"members_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"reports","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_bool_exp","ofType":null},"defaultValue":null},{"name":"reports_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"request_logs","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_bool_exp","ofType":null},"defaultValue":null},{"name":"request_logs_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"sql_credentials","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_bool_exp","ofType":null},"defaultValue":null},{"name":"sql_credentials_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"teams","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_bool_exp","ofType":null},"defaultValue":null},{"name":"teams_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"versions","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null},{"name":"versions_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_aggregate_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"users_constraint","description":"unique or primary key constraints on table \"users\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"users_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_insert_input","description":"input type for inserting data into table \"users\"","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"alerts","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"avatar_url","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"branches","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dataschemas","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"datasources","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"display_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"members","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"reports","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"request_logs","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"sql_credentials","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"teams","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"versions","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_arr_rel_insert_input","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"users_max_fields","description":"aggregate max on columns","fields":[{"name":"avatar_url","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"display_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"users_min_fields","description":"aggregate min on columns","fields":[{"name":"avatar_url","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"display_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"users_mutation_response","description":"response of any mutation on the table \"users\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"users\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"users_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_on_conflict","description":"on_conflict condition type for table \"users\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"users_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_order_by","description":"Ordering options when selecting data from \"users\".","fields":null,"inputFields":[{"name":"account","description":null,"type":{"kind":"INPUT_OBJECT","name":"auth_accounts_order_by","ofType":null},"defaultValue":null},{"name":"alerts_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"alerts_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"avatar_url","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"branches_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dataschemas_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"datasources_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"datasources_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"display_name","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"members_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"members_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"reports_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"reports_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"request_logs_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"request_logs_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"sql_credentials_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"sql_credentials_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"teams_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"teams_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"versions_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_aggregate_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_pk_columns_input","description":"primary key columns input for table: users","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"users_select_column","description":"select columns of table \"users\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"avatar_url","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"display_name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_set_input","description":"input type for updating data in table \"users\"","fields":null,"inputFields":[{"name":"avatar_url","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"display_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_stream_cursor_input","description":"Streaming cursor of the table \"users\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"avatar_url","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"display_name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"users_update_column","description":"update columns of table \"users\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"avatar_url","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"display_name","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"users_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"users_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"uuid","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","description":"Boolean expression to compare columns of type \"uuid\". All fields are combined with logical 'AND'.","fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"_gt","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"_gte","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"_in","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}}},"defaultValue":null},{"name":"_is_null","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"_lt","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"_lte","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"_nin","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"versions","description":"columns and relationships of \"versions\"","fields":[{"name":"branch","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"branches","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"branch_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"checksum","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas","description":"An array relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"dataschemas_aggregate","description":"An aggregate relationship","args":[{"name":"distinct_on","description":"distinct select on columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"dataschemas_select_column","ofType":null}}},"defaultValue":null},{"name":"limit","description":"limit the number of rows returned","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"skip the first n rows. Use only with order_by","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"sort the rows by one or more columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"dataschemas_order_by","ofType":null}}},"defaultValue":null},{"name":"where","description":"filter the rows returned","type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"dataschemas_aggregate","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"markdown_doc","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"timestamptz","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"An object relationship","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"users","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"versions_aggregate","description":"aggregated selection of \"versions\"","fields":[{"name":"aggregate","description":null,"args":[],"type":{"kind":"OBJECT","name":"versions_aggregate_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_aggregate_bool_exp","description":null,"fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_aggregate_bool_exp_count","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_aggregate_bool_exp_count","description":null,"fields":null,"inputFields":[{"name":"arguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"filter","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null},{"name":"predicate","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"Int_comparison_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"versions_aggregate_fields","description":"aggregate fields of \"versions\"","fields":[{"name":"count","description":null,"args":[{"name":"columns","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_select_column","ofType":null}}},"defaultValue":null},{"name":"distinct","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max","description":null,"args":[],"type":{"kind":"OBJECT","name":"versions_max_fields","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"min","description":null,"args":[],"type":{"kind":"OBJECT","name":"versions_min_fields","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_aggregate_order_by","description":"order by aggregate values of table \"versions\"","fields":null,"inputFields":[{"name":"count","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"max","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_max_order_by","ofType":null},"defaultValue":null},{"name":"min","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_min_order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_arr_rel_insert_input","description":"input type for inserting array relation for remote table \"versions\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_insert_input","ofType":null}}}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"versions_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_bool_exp","description":"Boolean expression to filter rows from the table \"versions\". All fields are combined with a logical 'AND'.","fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null}}},"defaultValue":null},{"name":"_not","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null}}},"defaultValue":null},{"name":"branch","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_bool_exp","ofType":null},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"dataschemas","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_bool_exp","ofType":null},"defaultValue":null},{"name":"dataschemas_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_bool_exp","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"INPUT_OBJECT","name":"String_comparison_exp","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"INPUT_OBJECT","name":"timestamptz_comparison_exp","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_bool_exp","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"INPUT_OBJECT","name":"uuid_comparison_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"versions_constraint","description":"unique or primary key constraints on table \"versions\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"versions_pkey","description":"unique or primary key constraint on columns \"id\"","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_insert_input","description":"input type for inserting data into table \"versions\"","fields":null,"inputFields":[{"name":"branch","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"dataschemas","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_arr_rel_insert_input","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_obj_rel_insert_input","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"versions_max_fields","description":"aggregate max on columns","fields":[{"name":"branch_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checksum","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"markdown_doc","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_max_order_by","description":"order by max() on columns of table \"versions\"","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"versions_min_fields","description":"aggregate min on columns","fields":[{"name":"branch_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checksum","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"markdown_doc","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"uuid","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_min_order_by","description":"order by min() on columns of table \"versions\"","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"versions_mutation_response","description":"response of any mutation on the table \"versions\"","fields":[{"name":"affected_rows","description":"number of rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"returning","description":"data from the rows affected by the mutation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"versions","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_obj_rel_insert_input","description":"input type for inserting object relation for remote table \"versions\"","fields":null,"inputFields":[{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_insert_input","ofType":null}},"defaultValue":null},{"name":"on_conflict","description":"upsert condition","type":{"kind":"INPUT_OBJECT","name":"versions_on_conflict","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_on_conflict","description":"on_conflict condition type for table \"versions\"","fields":null,"inputFields":[{"name":"constraint","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_constraint","ofType":null}},"defaultValue":null},{"name":"update_columns","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"versions_update_column","ofType":null}}}},"defaultValue":"[]"},{"name":"where","description":null,"type":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_order_by","description":"Ordering options when selecting data from \"versions\".","fields":null,"inputFields":[{"name":"branch","description":null,"type":{"kind":"INPUT_OBJECT","name":"branches_order_by","ofType":null},"defaultValue":null},{"name":"branch_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"dataschemas_aggregate","description":null,"type":{"kind":"INPUT_OBJECT","name":"dataschemas_aggregate_order_by","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null},{"name":"user","description":null,"type":{"kind":"INPUT_OBJECT","name":"users_order_by","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"ENUM","name":"order_by","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_pk_columns_input","description":"primary key columns input for table: versions","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"uuid","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"versions_select_column","description":"select columns of table \"versions\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"branch_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"checksum","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"markdown_doc","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_set_input","description":"input type for updating data in table \"versions\"","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_stream_cursor_input","description":"Streaming cursor of the table \"versions\"","fields":null,"inputFields":[{"name":"initial_value","description":"Stream column input with initial value","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_stream_cursor_value_input","ofType":null}},"defaultValue":null},{"name":"ordering","description":"cursor ordering","type":{"kind":"ENUM","name":"cursor_ordering","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_stream_cursor_value_input","description":"Initial value of the column from where the streaming should start","fields":null,"inputFields":[{"name":"branch_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"checksum","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null},{"name":"markdown_doc","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"updated_at","description":null,"type":{"kind":"SCALAR","name":"timestamptz","ofType":null},"defaultValue":null},{"name":"user_id","description":null,"type":{"kind":"SCALAR","name":"uuid","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"versions_update_column","description":"update columns of table \"versions\"","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"branch_id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"checksum","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"id","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"markdown_doc","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"column name","isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"column name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"versions_updates","description":null,"fields":null,"inputFields":[{"name":"_set","description":"sets the columns of the filtered rows to the given values","type":{"kind":"INPUT_OBJECT","name":"versions_set_input","ofType":null},"defaultValue":null},{"name":"where","description":"filter the rows which have to be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"versions_bool_exp","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"NestedFilterConditionInput","description":null,"fields":null,"inputFields":[{"name":"column","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"values","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"NestedFilterInput","description":null,"fields":null,"inputFields":[{"name":"group","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"filters","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"NestedFilterConditionInput","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null}],"directives":[{"name":"include","description":"whether this query should be included","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"whether this query should be skipped","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"cached","description":"whether this query should be cached (Hasura Cloud only)","locations":["QUERY"],"args":[{"name":"ttl","description":"measured in seconds","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":"60"},{"name":"refresh","description":"refresh the cache entry","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":"false"}]}]}}} \ No newline at end of file diff --git a/src/hooks/__tests__/useFilterParams.test.ts b/src/hooks/__tests__/useFilterParams.test.ts new file mode 100644 index 00000000..41fb8703 --- /dev/null +++ b/src/hooks/__tests__/useFilterParams.test.ts @@ -0,0 +1,176 @@ +import { describe, it, expect } from "vitest"; +import { renderHook } from "@testing-library/react"; + +import type { CubeMember } from "@/types/cube"; + +import useFilterParams from "../useFilterParams"; + +function makeMember(overrides: Partial = {}): CubeMember { + return { + name: "test.field", + title: "Test Field", + shortTitle: "Field", + isVisible: true, + type: "string", + ...overrides, + }; +} + +const emptyPlayground = { + dimensions: [] as string[], + measures: [] as string[], + filters: [] as any[], + timeDimensions: [] as any[], + segments: [] as string[], + order: [] as any[], + timezone: "UTC", + limit: 100, + offset: 0, +}; + +describe("useFilterParams", () => { + it("returns empty requiredParams when no dimensions need selectors", () => { + const availableQueryMembers = { + semantic_events: { + dimensions: { + "semantic_events.event": makeMember({ + name: "semantic_events.event", + }), + }, + measures: {}, + segments: {}, + timeDimensions: {}, + }, + }; + + const { result } = renderHook(() => + useFilterParams({ + availableQueryMembers, + playgroundState: { + ...emptyPlayground, + dimensions: ["semantic_events.event"], + }, + }) + ); + + expect(result.current.requiredParams).toEqual([]); + }); + + it("returns required selectors when resolved dimensions are selected", () => { + const availableQueryMembers = { + semantic_events: { + dimensions: { + "semantic_events.classification_type": makeMember({ + name: "semantic_events.classification_type", + meta: { + nested_lookup_key: true, + known_values: ["Category", "Tag"], + }, + }), + "semantic_events.classification_value": makeMember({ + name: "semantic_events.classification_value", + meta: { resolved_by: "classification_type" }, + }), + }, + measures: {}, + segments: {}, + timeDimensions: {}, + }, + }; + + const { result } = renderHook(() => + useFilterParams({ + availableQueryMembers, + playgroundState: { + ...emptyPlayground, + dimensions: ["semantic_events.classification_value"], + }, + }) + ); + + expect(result.current.requiredParams).toHaveLength(1); + expect(result.current.requiredParams[0].name).toBe( + "semantic_events.classification_type" + ); + }); + + it("handles empty playground state", () => { + const { result } = renderHook(() => + useFilterParams({ + availableQueryMembers: {}, + playgroundState: emptyPlayground, + }) + ); + + expect(result.current.requiredParams).toEqual([]); + }); + + it("handles cubes with no selector dimensions", () => { + const availableQueryMembers = { + orders: { + dimensions: { + "orders.id": makeMember({ name: "orders.id", meta: {} }), + "orders.status": makeMember({ name: "orders.status", meta: {} }), + }, + measures: {}, + segments: {}, + timeDimensions: {}, + }, + }; + + const { result } = renderHook(() => + useFilterParams({ + availableQueryMembers, + playgroundState: { + ...emptyPlayground, + dimensions: ["orders.id", "orders.status"], + }, + }) + ); + + expect(result.current.requiredParams).toEqual([]); + }); + + it("handles multiple cubes with mixed selector and normal dimensions", () => { + const availableQueryMembers = { + orders: { + dimensions: { + "orders.id": makeMember({ name: "orders.id" }), + }, + measures: {}, + segments: {}, + timeDimensions: {}, + }, + semantic_events: { + dimensions: { + "semantic_events.classification_type": makeMember({ + name: "semantic_events.classification_type", + meta: { nested_lookup_key: true, known_values: ["Category"] }, + }), + "semantic_events.classification_value": makeMember({ + name: "semantic_events.classification_value", + meta: { resolved_by: "classification_type" }, + }), + }, + measures: {}, + segments: {}, + timeDimensions: {}, + }, + }; + + const { result } = renderHook(() => + useFilterParams({ + availableQueryMembers, + playgroundState: { + ...emptyPlayground, + dimensions: ["orders.id", "semantic_events.classification_value"], + }, + }) + ); + + expect(result.current.requiredParams).toHaveLength(1); + expect(result.current.requiredParams[0].name).toBe( + "semantic_events.classification_type" + ); + }); +}); diff --git a/src/hooks/__tests__/usePortalAdmin.test.ts b/src/hooks/__tests__/usePortalAdmin.test.ts new file mode 100644 index 00000000..d8034d94 --- /dev/null +++ b/src/hooks/__tests__/usePortalAdmin.test.ts @@ -0,0 +1,50 @@ +import { describe, it, expect, beforeEach } from "vitest"; +import { renderHook, act } from "@testing-library/react"; + +import CurrentUserStore from "@/stores/CurrentUserStore"; + +import usePortalAdmin from "../usePortalAdmin"; + +describe("usePortalAdmin", () => { + beforeEach(() => { + // Reset store to default state + act(() => { + CurrentUserStore.setState({ + currentUser: { teams: [] } as any, + }); + }); + }); + + it("returns true for @snjallgogn.is email", () => { + act(() => { + CurrentUserStore.setState({ + currentUser: { email: "admin@snjallgogn.is", teams: [] } as any, + }); + }); + + const { result } = renderHook(() => usePortalAdmin()); + expect(result.current.isPortalAdmin).toBe(true); + }); + + it("returns false for other email domains", () => { + act(() => { + CurrentUserStore.setState({ + currentUser: { email: "user@example.com", teams: [] } as any, + }); + }); + + const { result } = renderHook(() => usePortalAdmin()); + expect(result.current.isPortalAdmin).toBe(false); + }); + + it("returns false when no email", () => { + act(() => { + CurrentUserStore.setState({ + currentUser: { teams: [] } as any, + }); + }); + + const { result } = renderHook(() => usePortalAdmin()); + expect(result.current.isPortalAdmin).toBe(false); + }); +}); diff --git a/src/hooks/useAllTeamDatasources.ts b/src/hooks/useAllTeamDatasources.ts new file mode 100644 index 00000000..04537b5c --- /dev/null +++ b/src/hooks/useAllTeamDatasources.ts @@ -0,0 +1,78 @@ +import { useMemo } from "react"; + +import { useTeamDataQuery } from "@/graphql/generated"; +import CurrentUserStore from "@/stores/CurrentUserStore"; + +interface TeamDatasource { + id: string; + name: string; + teamId: string; + teamName: string; + dbType: string; +} + +/** + * Fetches datasources from all teams the user belongs to. + * Returns datasources from teams OTHER than the current team. + */ +const useAllTeamDatasources = (): { + datasources: TeamDatasource[]; + loading: boolean; +} => { + const { currentUser, currentTeam } = CurrentUserStore(); + const otherTeams = currentUser.teams.filter((t) => t.id !== currentTeam?.id); + + // Query up to 5 other teams (should be plenty) + const [team0] = useTeamDataQuery({ + variables: { team_id: otherTeams[0]?.id || "" }, + pause: !otherTeams[0]?.id, + }); + const [team1] = useTeamDataQuery({ + variables: { team_id: otherTeams[1]?.id || "" }, + pause: !otherTeams[1]?.id, + }); + const [team2] = useTeamDataQuery({ + variables: { team_id: otherTeams[2]?.id || "" }, + pause: !otherTeams[2]?.id, + }); + const [team3] = useTeamDataQuery({ + variables: { team_id: otherTeams[3]?.id || "" }, + pause: !otherTeams[3]?.id, + }); + const [team4] = useTeamDataQuery({ + variables: { team_id: otherTeams[4]?.id || "" }, + pause: !otherTeams[4]?.id, + }); + + const results = [team0, team1, team2, team3, team4]; + const loading = results.some((r, i) => otherTeams[i]?.id && r.fetching); + + const datasources = useMemo(() => { + const all: TeamDatasource[] = []; + results.forEach((result, i) => { + const team = otherTeams[i]; + if (!team || !result.data?.teams_by_pk?.datasources) return; + result.data.teams_by_pk.datasources.forEach((ds: any) => { + all.push({ + id: ds.id, + name: ds.name, + teamId: team.id, + teamName: team.name, + dbType: ds.db_type, + }); + }); + }); + return all; + }, [ + results[0].data, + results[1].data, + results[2].data, + results[3].data, + results[4].data, + otherTeams, + ]); + + return { datasources, loading }; +}; + +export default useAllTeamDatasources; diff --git a/src/hooks/useAnalyticsQuery.ts b/src/hooks/useAnalyticsQuery.ts index 23a8b17b..015b21ef 100644 --- a/src/hooks/useAnalyticsQuery.ts +++ b/src/hooks/useAnalyticsQuery.ts @@ -22,63 +22,115 @@ const defaultFilterValues = { interface Action { type: | "add" - | "update" + | "addMany" | "update" | "setLimit" | "setOffset" | "setPage" | "setOrder" | "remove" + | "removeMany" | "reset"; [key: string]: any; } -const reducer: Reducer = ( + +const applyAdd = ( state: PlaygroundState, - action: Action -) => { + action: { memberType?: string; value: any; operatorType?: string } +): PlaygroundState => { let { memberType } = action; + let { value } = action; - if (action.type === "add") { - let { value } = action; - - if (memberType !== "filters") { - const [memberName, granularity = null] = action?.value?.split( - /\+/ - ) as string[]; - - if (granularity) { - memberType = "timeDimensions"; - value = { - dimension: memberName, - granularity, - }; - } - - const slice = state[ - memberType as keyof PlaygroundState - ] as unknown as CubeMember[]; - - const isMemberExists = !!slice.find( - (member) => - member.dimension?.name === memberName && - member.granularity === granularity - ); + if (memberType !== "filters") { + const [memberName, granularity = null] = action?.value?.split( + /\+/ + ) as string[]; - if (isMemberExists) { - return state; - } - } else { + if (granularity) { + memberType = "timeDimensions"; value = { - ...action.value, - ...defaultFilterValues[ - action.operatorType as keyof typeof defaultFilterValues - ], + dimension: memberName, + granularity, }; } - const elementsCount = getOr([], memberType, state).length; + const slice = state[ + memberType as keyof PlaygroundState + ] as unknown as CubeMember[]; + + const isMemberExists = !!slice.find( + (member) => + member.dimension?.name === memberName && + member.granularity === granularity + ); + + if (isMemberExists) { + return state; + } + } else { + value = { + ...action.value, + ...defaultFilterValues[ + action.operatorType as keyof typeof defaultFilterValues + ], + }; + } + + const elementsCount = getOr([], memberType, state).length; + + return set([memberType, elementsCount], value, state); +}; + +const applyRemove = ( + state: PlaygroundState, + action: { memberType?: string; value: any; index?: number } +): PlaygroundState => { + let { memberType } = action; + let { index } = action; + const { value } = action; + + if (memberType !== "filters") { + const [memberName, granularity = null] = value?.split(/\+/); + + if (granularity) { + memberType = "timeDimensions"; + const slice = state[memberType as keyof PlaygroundState] as CubeMember[]; + + index = slice.findIndex( + (member: CubeMember) => + member.dimension === memberName && member.granularity === granularity + ); + } else if (index === undefined || index === null) { + const slice = getOr([], memberType, state) as unknown[]; + index = slice.findIndex((member) => member === value); + } + } + + if (index === undefined || index === null || index < 0) { + return state; + } + + return remove([memberType, index], state); +}; + +const reducer: Reducer = ( + state: PlaygroundState, + action: Action +) => { + if (action.type === "add") { + return applyAdd(state, action); + } - return set([memberType, elementsCount], value, state); + if (action.type === "addMany") { + return (action.values || []).reduce( + (acc: PlaygroundState, value: any) => + applyAdd(acc, { + memberType: action.memberType, + value, + operatorType: action.operatorType, + }), + state + ); } if (action.type === "update") { @@ -110,27 +162,20 @@ const reducer: Reducer = ( } if (action.type === "remove") { - let { index } = action; - const { value } = action; - - if (memberType !== "filters") { - const [memberName, granularity = null] = value?.split(/\+/); - - if (granularity) { - memberType = "timeDimensions"; - const slice = state[ - memberType as keyof PlaygroundState - ] as CubeMember[]; - - index = slice.findIndex( - (member: CubeMember) => - member.dimension === memberName && - member.granularity === granularity - ); - } - } + return applyRemove(state, action); + } - return remove([memberType, index], state); + if (action.type === "removeMany") { + return (action.values || []).reduce( + (acc: PlaygroundState, item: { value: any; index?: number }) => + applyRemove(acc, { + memberType: action.memberType, + value: item.value, + // Resolve by name on each step so earlier removals do not shift indices + index: undefined, + }), + state + ); } if (action.type === "reset") { @@ -160,6 +205,13 @@ export const initialState: PlaygroundState = { ...queryState, }; +export const hasPlaygroundSelection = (state: PlaygroundState): boolean => + state.measures.length > 0 || + state.dimensions.length > 0 || + state.filters.length > 0 || + state.timeDimensions.length > 0 || + state.segments.length > 0; + const getName = (member: { name?: string }): any => member.name; const getOperatorType = (member: CubeMember) => @@ -177,6 +229,12 @@ const useAnalyticsQuery = () => { value: toQuery(member), operatorType: getOperatorType(member), }), + addMany: (members: CubeMember[]) => + dispatch({ + type: "addMany", + memberType, + values: members.map(toQuery), + }), remove: (member: CubeMember) => dispatch({ type: "remove", @@ -184,6 +242,15 @@ const useAnalyticsQuery = () => { value: toQuery(member), index: member.index, }), + removeMany: (members: CubeMember[]) => + dispatch({ + type: "removeMany", + memberType, + values: members.map((member) => ({ + value: toQuery(member), + index: member.index, + })), + }), update: (member: CubeMember, newValue: any) => dispatch({ type: "update", diff --git a/src/hooks/useAuth.ts b/src/hooks/useAuth.ts index 39f86445..e2561f64 100644 --- a/src/hooks/useAuth.ts +++ b/src/hooks/useAuth.ts @@ -1,213 +1,76 @@ import AuthTokensStore from "@/stores/AuthTokensStore"; -import type { SignInFormType } from "@/components/SignInForm"; -import type { SignUpFormType } from "@/components/SignUpForm"; -const VITE_GRAPHQL_PLUS_SERVER_URL = - window.GRAPHQL_PLUS_SERVER_URL !== undefined - ? window.GRAPHQL_PLUS_SERVER_URL - : import.meta.env.VITE_GRAPHQL_PLUS_SERVER_URL; - -type Response = { - statusCode?: number; - error?: string; - message?: string; +type TokenResponse = { + accessToken: string; + workosAccessToken?: string | null; + userId: string; + teamId?: string | null; + role: string; }; -type AuthResponse = { - jwt_token: string; - refresh_token: string; - statusCode?: number; - error?: string; - message?: string; - magicLink?: boolean; +type ErrorResponse = { + error: boolean; + code: string; + message: string; }; -export const validateResponse = async (response: any) => { - let data = {}; - - try { - data = await response.json(); - } catch (err) { - if (response.status === 204) { - console.log("HTTP status: ", response.status); - return { - statusCode: response.status, - }; - } +export const fetchToken = async (): Promise => { + const response = await fetch("/auth/token", { + method: "GET", + credentials: "include", + }); - return err; + if (!response.ok) { + return null; } - return data; -}; - -export const fetchRefreshToken = async (refreshToken: string) => { - const response = await fetch( - `${VITE_GRAPHQL_PLUS_SERVER_URL}/auth/token/refresh?refresh_token=${refreshToken}`, - { - method: "GET", - headers: { - "Content-Type": "application/json", - }, - } - ); - - return (await validateResponse(response)) as AuthResponse; + return response.json(); }; export default () => { - const { refreshToken, accessToken, setAuthData } = AuthTokensStore(); - - const login = async (values: SignInFormType) => { - const response = await fetch(`${VITE_GRAPHQL_PLUS_SERVER_URL}/auth/login`, { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - ...values, - cookie: false, - }), - }); - - const res = await validateResponse(response); - - if (res.error) { - return { - error: res.error, - message: res.message, - }; - } - - if (res?.jwt_token && res?.refresh_token) { - setAuthData({ - accessToken: res.jwt_token, - refreshToken: res.refresh_token, - }); - } - - return { - magicLink: res?.magicLink, - }; - }; - - const register = async (values: SignUpFormType) => { - const response = await fetch( - `${VITE_GRAPHQL_PLUS_SERVER_URL}/auth/register`, - { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - ...values, - cookie: false, - }), - } - ); - - const res = await validateResponse(response); - - if (res.error) { - return { - error: res.error, - message: res.message, - }; - } - - setAuthData({ - accessToken: res.jwt_token, - refreshToken: res.refresh_token, - }); - }; - - const logout = async () => { - const response = await fetch( - `${VITE_GRAPHQL_PLUS_SERVER_URL}/auth/logout?refresh_token=${refreshToken}`, - { - method: "POST", - headers: { - "Content-Type": "application/json", - Authorization: `Bearer ${accessToken}`, - }, - body: JSON.stringify({ - all: true, - }), - } - ); + const { setAuthData, cleanTokens } = AuthTokensStore(); - const res = await validateResponse(response); + const signIn = (provider?: string, email?: string) => { + const params = new URLSearchParams(); + if (provider) params.set("provider", provider); + if (email) params.set("email", email); - if (res.error) { - return { - error: res.error, - message: res.message, - }; + const returnTo = window.location.pathname; + if (returnTo && returnTo !== "/signin" && returnTo !== "/signup") { + params.set("return_to", returnTo); } - return res; + window.location.href = `/auth/signin${ + params.toString() ? "?" + params.toString() : "" + }`; }; - const changePass = async (values: any) => { - const response = await fetch( - `${VITE_GRAPHQL_PLUS_SERVER_URL}/auth/change-password`, - { + const signOut = async () => { + try { + await fetch("/auth/signout", { method: "POST", - headers: { - "Content-Type": "application/json", - Authorization: `Bearer ${accessToken}`, - }, - body: JSON.stringify(values), - } - ); - - const res = await validateResponse(response); - - if (res.error) { - return { - error: res.error, - message: res.message, - }; + credentials: "include", + }); + } catch { + // Best effort } - - return res; + cleanTokens(); + window.location.href = "/signin"; }; - const sendMagicLink = async ({ email }: SignUpFormType) => { - const response = await fetch( - `${VITE_GRAPHQL_PLUS_SERVER_URL}/auth/register`, - { - method: "POST", - body: JSON.stringify({ email, cookie: false }), - headers: { - Accept: "application/json", - "Content-Type": "application/json", - }, - } - ); + const refreshAuth = async (): Promise => { + const result = await fetchToken(); + if (!result) return false; - const res = await validateResponse(response); - - if (res.error) { - return { - error: res.error, - message: res.message, - }; - } - - setAuthData({ - accessToken: res.jwt_token, - refreshToken: res.refresh_token, + return setAuthData({ + accessToken: result.accessToken, + workosAccessToken: result.workosAccessToken, }); - - return res; }; return { - login, - register, - logout, - changePass, - sendMagicLink, + signIn, + signOut, + fetchToken: refreshAuth, }; }; diff --git a/src/hooks/useCubeRegistry.ts b/src/hooks/useCubeRegistry.ts new file mode 100644 index 00000000..58e6c55a --- /dev/null +++ b/src/hooks/useCubeRegistry.ts @@ -0,0 +1,37 @@ +import { useRef, useEffect } from "react"; + +import { CubeRegistry } from "@/utils/cubejs-language/registry"; + +export default function useCubeRegistry( + currentMeta: any[], + execQueryMeta: () => void, + datasourceId?: string | null, + branchId?: string | null, + tablesSchema?: Record +) { + const registryRef = useRef(new CubeRegistry()); + + useEffect(() => { + if (currentMeta && currentMeta.length > 0) { + registryRef.current.populate(currentMeta); + } + }, [currentMeta]); + + useEffect(() => { + if (tablesSchema && Object.keys(tablesSchema).length > 0) { + registryRef.current.populateTableColumns(tablesSchema); + } + }, [tablesSchema]); + + const refreshRegistry = () => { + if (datasourceId && branchId) { + registryRef.current.startRefresh(); + execQueryMeta(); + } + }; + + return { + cubeRegistry: registryRef.current, + refreshRegistry, + }; +} diff --git a/src/hooks/useDataSourcesMeta.ts b/src/hooks/useDataSourcesMeta.ts index f4426e81..2005a277 100644 --- a/src/hooks/useDataSourcesMeta.ts +++ b/src/hooks/useDataSourcesMeta.ts @@ -33,6 +33,20 @@ const operators = { { name: "set", title: "is set" }, { name: "notSet", title: "is not set" }, ], + boolean: [ + { name: "equals", title: "equals" }, + { name: "notEquals", title: "does not equal" }, + { name: "set", title: "is set" }, + { name: "notSet", title: "is not set" }, + ], + geo: [ + { name: "contains", title: "contains" }, + { name: "notContains", title: "does not contain" }, + { name: "equals", title: "equals" }, + { name: "notEquals", title: "does not equal" }, + { name: "set", title: "is set" }, + { name: "notSet", title: "is not set" }, + ], }; export const granularities = [ @@ -99,9 +113,9 @@ class Meta { filterOperatorsForMember(memberName: string, memberType: string | string[]) { const member = this.resolveMember(memberName, memberType); - return "type" in member - ? operators[member.type as keyof typeof operators] - : operators.string; + if (!("type" in member)) return operators.string; + const key = member.type as keyof typeof operators; + return operators[key] ?? operators.string; } } diff --git a/src/hooks/useFilterParams.ts b/src/hooks/useFilterParams.ts new file mode 100644 index 00000000..dec0d5c4 --- /dev/null +++ b/src/hooks/useFilterParams.ts @@ -0,0 +1,73 @@ +import { useMemo, useRef } from "react"; +import { getOr } from "unchanged"; + +import { + getRequiredFilterParams, + deduplicateFilterParams, +} from "@/utils/helpers/filterParamsResolver"; +import type { CubeMember } from "@/types/cube"; + +interface Props { + availableQueryMembers: Record< + string, + Record> + >; + playgroundState: Record; +} + +interface FilterParamsResult { + /** All selector dimensions required by currently selected dimensions */ + requiredParams: CubeMember[]; +} + +/** + * Watches the current playground state and available cube metadata to determine + * which selector dimensions (FILTER_PARAMS lookup keys) are required based on + * the selected dimensions. + * + * Uses a stable JSON key to prevent unnecessary re-renders when the computed + * result hasn't actually changed. + */ +export default function useFilterParams({ + availableQueryMembers, + playgroundState, +}: Props): FilterParamsResult { + const prevKeyRef = useRef(""); + const prevResultRef = useRef({ requiredParams: [] }); + + return useMemo(() => { + if (!availableQueryMembers || !playgroundState) { + return { requiredParams: [] }; + } + + // Flatten all available dimensions across all cubes + const allDimensions: Record = {}; + for (const cubeName of Object.keys(availableQueryMembers)) { + const cubeDims = getOr( + {}, + "dimensions", + availableQueryMembers[cubeName] + ) as Record; + Object.assign(allDimensions, cubeDims); + } + + // Get selected dimension names from playground state + const selectedDims: string[] = getOr([], "dimensions", playgroundState); + + // Find required selectors + const requiredParams = deduplicateFilterParams( + getRequiredFilterParams(selectedDims, allDimensions) + ); + + // Stable reference check: only return new object if the result changed + const key = JSON.stringify(requiredParams.map((p) => p.name)); + + if (key === prevKeyRef.current) { + return prevResultRef.current; + } + + prevKeyRef.current = key; + prevResultRef.current = { requiredParams }; + return prevResultRef.current; + }, [availableQueryMembers, playgroundState]); +} diff --git a/src/hooks/useFormatExport.ts b/src/hooks/useFormatExport.ts new file mode 100644 index 00000000..69c0314f --- /dev/null +++ b/src/hooks/useFormatExport.ts @@ -0,0 +1,167 @@ +import { useState, useCallback } from "react"; +import { message } from "antd"; + +import AuthTokensStore from "@/stores/AuthTokensStore"; +import type { PlaygroundState } from "@/types/exploration"; +import type { SortBy } from "@/types/sort"; + +type ExportFormat = "json" | "csv" | "jsonstat" | "arrow"; + +interface UseFormatExportOptions { + datasourceId?: string; + branchId?: string; + query?: PlaygroundState; +} + +const normalizeOrders = (orders: SortBy[]) => { + // Drop the "no order selected" placeholder the query builder emits + // (`emptyCube.emptyKey`). The legacy Cube planner silently ignored the + // unresolvable member; the Tesseract planner rejects it with + // "Cannot resolve: emptyCube", which 500s the query. + return (orders || []) + .filter((cur) => cur.id && cur.id !== "emptyCube.emptyKey") + .reduce( + (acc, cur) => ({ ...acc, [cur.id]: cur.desc ? "desc" : "asc" }), + {} + ); +}; + +const getFileNameFromDisposition = (header: string | null) => { + if (!header) return null; + + const utf8Match = header.match(/filename\*=UTF-8''([^;]+)/i); + if (utf8Match?.[1]) { + return decodeURIComponent(utf8Match[1]); + } + + const quotedMatch = header.match(/filename="([^"]+)"/i); + if (quotedMatch?.[1]) { + return quotedMatch[1]; + } + + const plainMatch = header.match(/filename=([^;]+)/i); + return plainMatch?.[1]?.trim() || null; +}; + +const getDefaultFileName = (format: ExportFormat) => { + const ext = format === "csv" ? "csv" : format === "arrow" ? "arrow" : "json"; + return `query-result.${ext}`; +}; + +const buildLoadRequestBody = (format: ExportFormat, query: PlaygroundState) => { + const body: Record = { + query: { + ...query, + order: normalizeOrders(query?.order || []), + }, + }; + + if (format !== "json") { + body.format = format; + } + + return body; +}; + +async function downloadResponse(response: Response, format: ExportFormat) { + const blob = await response.blob(); + const fileName = + getFileNameFromDisposition(response.headers.get("content-disposition")) || + getDefaultFileName(format); + const url = URL.createObjectURL(blob); + const a = document.createElement("a"); + a.href = url; + a.download = fileName; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + URL.revokeObjectURL(url); +} + +export default function useFormatExport({ + datasourceId, + branchId, + query, +}: UseFormatExportOptions) { + const [isExporting, setIsExporting] = useState(false); + const [error, setError] = useState(null); + + const exportData = useCallback( + async (format: ExportFormat) => { + if (!query || !datasourceId) return; + + setIsExporting(true); + setError(null); + + try { + const token = AuthTokensStore.getState().accessToken; + const headers: Record = { + "Content-Type": "application/json", + "x-hasura-datasource-id": datasourceId, + }; + if (token) headers.Authorization = `Bearer ${token}`; + if (branchId) headers["x-hasura-branch-id"] = branchId; + + const body = buildLoadRequestBody(format, query); + + while (true) { + const response = await fetch("/api/v1/load", { + method: "POST", + headers, + body: JSON.stringify(body), + }); + const contentType = response.headers.get("content-type") || ""; + const isJsonResponse = contentType.includes("application/json"); + + if (!response.ok) { + const errorBody = isJsonResponse + ? await response.json().catch(() => null) + : null; + throw new Error( + errorBody?.message || + errorBody?.error || + `Export failed (${response.status})` + ); + } + + if (isJsonResponse) { + const responseBody = await response.json().catch(() => null); + if (responseBody?.error === "Continue wait") { + continue; + } + + if (format === "json" || format === "jsonstat") { + const jsonBlob = new Blob( + [JSON.stringify(responseBody, null, 2)], + { type: "application/json" } + ); + await downloadResponse( + new Response(jsonBlob, { + headers: response.headers, + }), + format + ); + break; + } + + throw new Error( + responseBody?.message || responseBody?.error || "Export failed" + ); + } + + await downloadResponse(response, format); + break; + } + } catch (err: unknown) { + const msg = err instanceof Error ? err.message : "Export failed"; + setError(msg); + message.error(msg); + } finally { + setIsExporting(false); + } + }, + [datasourceId, branchId, query] + ); + + return { exportData, isExporting, error }; +} diff --git a/src/hooks/useOnboarding.ts b/src/hooks/useOnboarding.ts index 68d76990..db55628a 100644 --- a/src/hooks/useOnboarding.ts +++ b/src/hooks/useOnboarding.ts @@ -309,7 +309,7 @@ export default ({ editId }: Props) => { ...prev.formState.step1, }, }, - branchId: currentBranch.id, + branchId: currentBranch?.id, } as Partial) ); } diff --git a/src/hooks/usePlayground.ts b/src/hooks/usePlayground.ts index 5f4d8644..bdd2a1a7 100644 --- a/src/hooks/usePlayground.ts +++ b/src/hooks/usePlayground.ts @@ -1,7 +1,15 @@ -import { useMemo, useState, useEffect, useReducer } from "react"; +import { + useMemo, + useState, + useEffect, + useReducer, + useCallback, + useRef, +} from "react"; import { useDeepCompareEffect } from "ahooks"; import useDataSourceMeta from "@/hooks/useDataSourcesMeta"; +import useFilterParams from "@/hooks/useFilterParams"; import useAnalyticsQuery, { queryState, initialState, @@ -10,7 +18,6 @@ import useExplorationData from "@/hooks/useExplorationData"; import pickKeys from "@/utils/helpers/pickKeys"; import equals from "@/utils/helpers/equals"; import type { CubeMembers } from "@/types/cube"; -import { getTitle } from "@/utils/helpers/getTitles"; import type { QuerySettings } from "@/types/querySettings"; import type { ExplorationData, @@ -68,7 +75,7 @@ const reducer: Reducer = ( return state; }; -export const getColumns = (selectedQueryMembers: CubeMembers, settings = {}) => +export const getColumns = (selectedQueryMembers: CubeMembers) => [ ...Object.values(selectedQueryMembers.dimensions || {}).map((d) => ({ ...d, @@ -77,7 +84,8 @@ export const getColumns = (selectedQueryMembers: CubeMembers, settings = {}) => ...Object.values(selectedQueryMembers.measures || {}), ].map((c) => ({ id: c.name, - Header: getTitle(settings, c), + Header: c.shortTitle ?? c.title ?? c.name, + fullTitle: c.title ?? c.name, accessor: (row: any) => row[c.name], colId: c.name, type: c.type, @@ -122,6 +130,81 @@ export default ({ meta = [], explorationData, rawSql }: Props) => { playgroundState: currPlaygroundState, }); + const { requiredParams } = useFilterParams({ + availableQueryMembers: availableQueryMembers || {}, + playgroundState: currPlaygroundState, + }); + + // Selector state: tracks chosen value for each FILTER_PARAMS lookup key. + // Selectors are NOT filters — they select which nested structure element to read + // (e.g. classification_type="Category" picks the Category row from the array). + // At query time, selector values are merged into the Cube.js filters array + // since that's how FILTER_PARAMS substitution works under the hood. + const [selectorValues, setSelectorValues] = useState>( + {} + ); + const [selectorDirty, setSelectorDirty] = useState(false); + + const setSelectorValue = useCallback( + (dimensionName: string, value: string) => { + setSelectorValues((prev) => ({ ...prev, [dimensionName]: value })); + setSelectorDirty(true); + }, + [] + ); + + // Auto-initialize selectors with first known value when new ones appear. + // indexOf() requires a real string value — the FILTER_PARAMS fallback (1=1) + // causes a ClickHouse type error, so selectors must always have a value set. + useEffect(() => { + if (requiredParams.length === 0) return; + + setSelectorValues((prev) => { + const next = { ...prev }; + let changed = false; + for (const param of requiredParams) { + if (!(param.name in next)) { + const knownValues = Array.isArray(param.meta?.known_values) + ? param.meta.known_values + : []; + next[param.name] = knownValues[0] || ""; + changed = true; + } + } + return changed ? next : prev; + }); + }, [requiredParams]); + + // Clean up selector values for params that are no longer required + useEffect(() => { + const requiredNames = new Set(requiredParams.map((p) => p.name)); + setSelectorValues((prev) => { + const next: Record = {}; + let changed = false; + for (const [key, val] of Object.entries(prev)) { + if (requiredNames.has(key)) { + next[key] = val; + } else { + changed = true; + } + } + return changed ? next : prev; + }); + }, [requiredParams]); + + // Build the selector filters to merge into the query at execution time + const selectorFilters = useMemo( + () => + requiredParams + .filter((p) => selectorValues[p.name]) + .map((p) => ({ + dimension: p.name, + operator: "equals" as const, + values: [selectorValues[p.name]], + })), + [requiredParams, selectorValues] + ); + const { rows, hitLimit, skippedMembers } = useExplorationData({ explorationResult: dataset, }); @@ -131,8 +214,8 @@ export default ({ meta = [], explorationData, rawSql }: Props) => { return []; } - return getColumns(selectedQueryMembers, settings); - }, [selectedQueryMembers, settings]); + return getColumns(selectedQueryMembers); + }, [selectedQueryMembers]); const explorationState: ExplorationState = useMemo( () => ({ @@ -158,6 +241,7 @@ export default ({ meta = [], explorationData, rawSql }: Props) => { ); const [isQueryChanged, setChangedStatus] = useState(false); + const syncedExplorationIdRef = useRef(); useEffect(() => { const playgroundState = exploration?.playground_state || queryState; @@ -167,25 +251,49 @@ export default ({ meta = [], explorationData, rawSql }: Props) => { pickKeys(queryStateKeys, currPlaygroundState) ); - if (isQueryChanged !== isChanged) { - setChangedStatus(isChanged); + if (isQueryChanged !== (isChanged || selectorDirty)) { + setChangedStatus(isChanged || selectorDirty); } - }, [isQueryChanged, currPlaygroundState, exploration]); + }, [isQueryChanged, currPlaygroundState, exploration, selectorDirty]); + // Hydrate from saved exploration only when opening a (new) exploration — not on + // every refetch, so Apply to Explore / local edits are not overwritten by stale DB state. useEffect(() => { + const id = exploration?.id; const newState = exploration?.playground_state; - if (newState) { - doReset(newState as unknown as PlaygroundState); + if (!id || !newState || syncedExplorationIdRef.current === id) { + return; } - }, [exploration?.playground_state, doReset]); + + doReset(newState as unknown as PlaygroundState); + setSelectorDirty(false); + syncedExplorationIdRef.current = id; + }, [exploration?.id, exploration?.playground_state, doReset]); useEffect(() => { if (!exploration?.id) { doReset(initialState); + syncedExplorationIdRef.current = undefined; } }, [exploration?.id, doReset]); + const clearSelection = useCallback(() => { + doReset({ + measures: [], + dimensions: [], + filters: [], + timeDimensions: [], + segments: [], + order: [], + timezone: "UTC", + limit: 1000, + offset: 0, + }); + setSelectorValues({}); + setSelectorDirty(false); + }, [doReset]); + return { state: explorationState, selectedQueryMembers, @@ -199,8 +307,16 @@ export default ({ meta = [], explorationData, rawSql }: Props) => { setOffset, setPage, setOrderBy, + doReset, }, settings, dispatchSettings, + selectors: { + requiredParams, + selectorValues, + setSelectorValue, + selectorFilters, + }, + clearSelection, }; }; diff --git a/src/hooks/usePortalAdmin.ts b/src/hooks/usePortalAdmin.ts new file mode 100644 index 00000000..17bebd09 --- /dev/null +++ b/src/hooks/usePortalAdmin.ts @@ -0,0 +1,11 @@ +import CurrentUserStore from "@/stores/CurrentUserStore"; + +const PORTAL_ADMIN_DOMAIN = "@snjallgogn.is"; + +export default function usePortalAdmin() { + const { currentUser } = CurrentUserStore(); + const isPortalAdmin = + currentUser?.email?.endsWith(PORTAL_ADMIN_DOMAIN) ?? false; + + return { isPortalAdmin }; +} diff --git a/src/hooks/useSources.ts b/src/hooks/useSources.ts index 6e6b1640..86b56c7b 100644 --- a/src/hooks/useSources.ts +++ b/src/hooks/useSources.ts @@ -1,4 +1,4 @@ -import { useMemo } from "react"; +import { useEffect, useMemo } from "react"; import type { Maybe } from "@/graphql/generated"; import { @@ -10,6 +10,8 @@ import { useUpdateDataSourceMutation, useFetchMetaQuery, useFetchTablesQuery, + useSmartGenDataSchemasMutation, + useUpdateTeamSettingsMutation, } from "@/graphql/generated"; type Params = { @@ -33,6 +35,10 @@ export default ({ params = {} }: Props) => { useGenDataSchemasMutation(); const [runQueryMutation, execRunQueryMutation] = useRunSourceSqlQueryMutation(); + const [smartGenMutation, execSmartGenMutation] = + useSmartGenDataSchemasMutation(); + const [updateTeamSettingsMutation, execUpdateTeamSettingsMutation] = + useUpdateTeamSettingsMutation(); const [metaData, execQueryMeta] = useFetchMetaQuery({ pause: true, @@ -82,6 +88,10 @@ export default ({ params = {} }: Props) => { execRunQueryMutation, genSchemaMutation, execGenSchemaMutation, + smartGenMutation, + execSmartGenMutation, + updateTeamSettingsMutation, + execUpdateTeamSettingsMutation, }, }; }; diff --git a/src/hooks/useTeamSettings.ts b/src/hooks/useTeamSettings.ts new file mode 100644 index 00000000..698eea88 --- /dev/null +++ b/src/hooks/useTeamSettings.ts @@ -0,0 +1,37 @@ +import { useCallback } from "react"; + +import { useUpdateTeamSettingsMutation } from "@/graphql/generated"; +import CurrentUserStore from "@/stores/CurrentUserStore"; +import type { TeamSettings } from "@/types/team"; + +/** + * Hook for reading and updating team settings (partition, internal_tables). + * + * Reads settings from the current team in the Zustand store. + * Updates via the update_team_settings Hasura action. + */ +export default function useTeamSettings() { + const { currentTeam } = CurrentUserStore(); + const [updateResult, execUpdate] = useUpdateTeamSettingsMutation(); + + const settings: TeamSettings = (currentTeam?.settings as TeamSettings) ?? {}; + + const updateSettings = useCallback( + async (newSettings: TeamSettings) => { + if (!currentTeam?.id) return; + return execUpdate({ + team_id: currentTeam.id, + settings: newSettings, + }); + }, + [currentTeam?.id, execUpdate] + ); + + return { + settings, + teamId: currentTeam?.id ?? null, + updating: updateResult.fetching, + updateError: updateResult.error?.message ?? null, + updateSettings, + }; +} diff --git a/src/hooks/useUserData.ts b/src/hooks/useUserData.ts index b952d4b0..ba7093df 100644 --- a/src/hooks/useUserData.ts +++ b/src/hooks/useUserData.ts @@ -1,5 +1,5 @@ import { useDeepCompareEffect } from "ahooks"; -import { useEffect } from "react"; +import { useCallback, useEffect, useState } from "react"; import type { DataSourceCredentials } from "@/components/CredentialsTable"; import type { @@ -18,6 +18,7 @@ import { useTeamDataQuery, } from "@/graphql/generated"; import { dbTiles } from "@/mocks/dataSources"; +import { fetchToken } from "@/hooks/useAuth"; import AuthTokensStore from "@/stores/AuthTokensStore"; import CurrentUserStore, { LAST_TEAM_ID_KEY } from "@/stores/CurrentUserStore"; import type { Alert, RawAlert } from "@/types/alert"; @@ -212,14 +213,52 @@ export default () => { const { currentUser, currentTeam, + loading, setCurrentTeam, setLoading, setUserData, setTeamData, } = CurrentUserStore(); - const { JWTpayload, accessToken } = AuthTokensStore(); + const { JWTpayload, accessToken, setAuthData } = AuthTokensStore(); const userId = JWTpayload?.["x-hasura-user-id"]; - const lastTeamId = localStorage.getItem(LAST_TEAM_ID_KEY); + // Note: lastTeamId is read reactively below, not here, to avoid stale captures. + + // Track whether initial token fetch is in progress + const [tokenFetchDone, setTokenFetchDone] = useState(false); + + // On mount: fetch token from server session (cookie-based auth) + useEffect(() => { + if (!accessToken) { + fetchToken() + .then((result) => { + if (result) { + const authAccepted = setAuthData({ + accessToken: result.accessToken, + workosAccessToken: result.workosAccessToken, + }); + if (!authAccepted) { + window.location.href = SIGNIN; + setTokenFetchDone(true); + return; + } + // Only seed the team from the session if the user hasn't manually + // switched teams (i.e., no existing lastTeamId in localStorage). + // This prevents page reloads from clobbering the user's team choice. + if (result.teamId && !localStorage.getItem(LAST_TEAM_ID_KEY)) { + localStorage.setItem(LAST_TEAM_ID_KEY, result.teamId); + } + } else { + window.location.href = SIGNIN; + } + setTokenFetchDone(true); + }) + .catch(() => { + setTokenFetchDone(true); + }); + } else { + setTokenFetchDone(true); + } + }, []); const [, execCreateTeamMutation] = useCreateTeamMutation(); const [currentUserData, execQueryCurrentUser] = useCurrentUserQuery({ @@ -253,10 +292,10 @@ export default () => { } } - if (!accessToken) { + if (!accessToken && tokenFetchDone) { window.location.href = SIGNIN; } - }, [accessToken, userId, currentTeam?.id]); + }, [accessToken, userId, currentTeam?.id, tokenFetchDone]); useEffect(() => { if (teamData.data) { @@ -300,17 +339,28 @@ export default () => { } }, [currentUser?.id, currentUser?.teams?.length, createTeam]); + // Select the active team once we have the user's team list. + // Priority: localStorage (user's choice) > first team in list. + // Only runs when teams list changes, NOT when currentTeam changes (avoids loop). useEffect(() => { - if (currentUser?.teams?.length) { - if (!lastTeamId) { - setCurrentTeam(currentUser.teams[0].id); - } else { - setCurrentTeam(lastTeamId); - } - } - }, [currentTeam, currentUser.teams, lastTeamId, setCurrentTeam]); + if (!currentUser?.teams?.length) return; + + // Read localStorage at effect-run time (not render time) so we see + // updates from the token fetch or manual team switching. + const savedTeamId = localStorage.getItem(LAST_TEAM_ID_KEY); + const targetId = savedTeamId || currentUser.teams[0].id; + setCurrentTeam(targetId); + }, [currentUser?.teams, setCurrentTeam]); + + const hasTeams = Boolean(currentUser?.teams?.length); + const bootstrapping = + !tokenFetchDone || + (Boolean(accessToken) && !currentUser?.id) || + (hasTeams && !currentTeam?.id) || + loading; return { + bootstrapping, currentUser, queries: { currentUserData, diff --git a/src/layouts/RootLayout.tsx b/src/layouts/RootLayout.tsx index 3f734307..8b42e702 100644 --- a/src/layouts/RootLayout.tsx +++ b/src/layouts/RootLayout.tsx @@ -14,9 +14,8 @@ export type RootLayoutProps = { const themeProvider = { token: { - // fontFamily: 'Gotham Pro, sans-serif', - fontFamily: "Manrope", - colorPrimary: "#470D69", + fontFamily: "Inter, sans-serif", + colorPrimary: "#3f6587", motion: false, }, components: { diff --git a/src/layouts/SettingsLayout/index.tsx b/src/layouts/SettingsLayout/index.tsx index f157df64..03e490fd 100644 --- a/src/layouts/SettingsLayout/index.tsx +++ b/src/layouts/SettingsLayout/index.tsx @@ -4,6 +4,7 @@ import SidebarMenu from "@/components/SidebarMenu"; import type { Location } from "@/hooks/useLocation"; import SidebarLayout from "@/layouts/SidebarLayout"; import type { SidebarMenuItem } from "@/mocks/sidebarMenu"; +import usePortalAdmin from "@/hooks/usePortalAdmin"; import CurrentUserStore from "@/stores/CurrentUserStore"; import { Roles } from "@/types/team"; @@ -33,6 +34,7 @@ const SettingsLayout: React.FC = ({ const { t } = useTranslation(["pages"]); const splitedPath = (location?.pathname || "").split("/"); const { currentTeam } = CurrentUserStore(); + const { isPortalAdmin } = usePortalAdmin(); const isMember = currentTeam?.role === Roles.member; const titleKey = splitedPath?.[2]; const subKey = splitedPath?.[1]; @@ -75,6 +77,27 @@ const SettingsLayout: React.FC = ({ href: "/settings/info", icon: , }, + (isPortalAdmin && { + key: "admin-team-properties", + label: "Team Properties", + href: "/settings/admin/team-properties", + icon: , + }) || + null, + (isPortalAdmin && { + key: "admin-member-properties", + label: "Member Properties", + href: "/settings/admin/member-properties", + icon: , + }) || + null, + (isPortalAdmin && { + key: "admin-query-rules", + label: "Query Rules", + href: "/settings/admin/query-rules", + icon: , + }) || + null, ].filter((item) => !!item?.key); const singalsMenuItems: SidebarMenuItem[] = [ diff --git a/src/mocks/dataSources.tsx b/src/mocks/dataSources.tsx index d3f4183f..21dd2f7a 100644 --- a/src/mocks/dataSources.tsx +++ b/src/mocks/dataSources.tsx @@ -23,6 +23,10 @@ import Materialize from "@/assets/databases/materialize.svg"; import Vertica from "@/assets/databases/vertica.svg"; import Athena from "@/assets/databases/athena.svg"; import Hive from "@/assets/databases/hive.svg"; +import DuckDB from "@/assets/databases/duckdb.svg"; +import Oracle from "@/assets/databases/oracle.svg"; +import SQLite from "@/assets/databases/sqlite.svg"; +import Pinot from "@/assets/databases/pinot.svg"; export const dataSourcesMock: DataSourceInfo[] = [ { @@ -128,7 +132,12 @@ export const dbTiles = [ { name: "Trino", value: "trino", icon: }, { name: "MSSQL", value: "mssql", icon: }, { name: "DRUID", value: "druid", icon: }, - { name: "ElasticSearch", value: "elasticsearch", icon: }, + { + name: "ElasticSearch", + value: "elasticsearch", + icon: , + deprecated: true, + }, { name: "PrestoDB", value: "prestodb", icon: }, { name: "Databricks", value: "databricks-jdbc", icon: }, { name: "Firebolt", value: "firebolt", icon: }, @@ -141,6 +150,10 @@ export const dbTiles = [ { name: "Vertica", value: "vertica", icon: }, { name: "Athena", value: "athena", icon: }, { name: "Hive", value: "hive", icon: }, + { name: "DuckDB", value: "duckdb", icon: }, + { name: "Oracle", value: "oracle", icon: }, + { name: "SQLite", value: "sqlite", icon: }, + { name: "Apache Pinot", value: "pinot", icon: }, ]; export const defaultForm: DataSoureSetupField[] = [ @@ -478,6 +491,16 @@ export const dataSourceForms: Form = { placeholder: "AB12345", type: "text", }, + { + name: "db_params.authMethod", + label: "authentication_method", + type: "radio", + value: "password", + options: [ + { label: "Username/Password", value: "password" }, + { label: "OAuth Token", value: "oauth" }, + ], + }, { name: "db_params.username", label: "username", @@ -486,6 +509,7 @@ export const dataSourceForms: Form = { }, placeholder: "user", type: "text", + dependsOn: { field: "db_params.authMethod", value: "password" }, }, { name: "db_params.password", @@ -495,6 +519,17 @@ export const dataSourceForms: Form = { }, placeholder: "pass", type: "password", + dependsOn: { field: "db_params.authMethod", value: "password" }, + }, + { + name: "db_params.oauthToken", + label: "oauth_token", + rules: { + required: true, + }, + placeholder: "OAuth token", + type: "password", + dependsOn: { field: "db_params.authMethod", value: "oauth" }, }, { name: "db_params.role", @@ -606,6 +641,16 @@ export const dataSourceForms: Form = { }, ], "databricks-jdbc": [ + { + name: "db_params.authMethod", + label: "authentication_method", + type: "radio", + value: "pat", + options: [ + { label: "Personal Access Token", value: "pat" }, + { label: "OAuth Service Principal", value: "oauth" }, + ], + }, { name: "db_params.token", label: "access_token", @@ -613,6 +658,27 @@ export const dataSourceForms: Form = { required: true, }, type: "text", + dependsOn: { field: "db_params.authMethod", value: "pat" }, + }, + { + name: "db_params.oauthClientId", + label: "client_id", + rules: { + required: true, + }, + placeholder: "OAuth Client ID", + type: "text", + dependsOn: { field: "db_params.authMethod", value: "oauth" }, + }, + { + name: "db_params.oauthClientSecret", + label: "client_secret", + rules: { + required: true, + }, + placeholder: "OAuth Client Secret", + type: "password", + dependsOn: { field: "db_params.authMethod", value: "oauth" }, }, { name: "db_params.url", @@ -667,6 +733,104 @@ export const dataSourceForms: Form = { type: "password", }, ], + oracle: [ + { + name: "db_params.host", + label: "host", + rules: { + required: true, + }, + placeholder: "example.com", + type: "text", + }, + { + name: "db_params.port", + label: "port", + rules: { + required: true, + }, + placeholder: "1521", + type: "number", + }, + { + name: "db_params.user", + label: "user", + rules: { + required: true, + }, + placeholder: "db_username", + type: "text", + }, + { + name: "db_params.password", + label: "password", + rules: { + required: true, + }, + placeholder: "db_password", + type: "password", + }, + { + name: "db_params.serviceName", + label: "service_name", + rules: { + required: true, + }, + placeholder: "ORCL", + type: "text", + }, + ], + sqlite: [ + { + name: "db_params.database", + label: "database_file_path", + rules: { + required: true, + }, + placeholder: "/path/to/database.db", + type: "text", + }, + ], + pinot: [ + { + name: "db_params.host", + label: "host", + rules: { + required: true, + }, + placeholder: "example.com", + type: "text", + }, + { + name: "db_params.port", + label: "port", + rules: { + required: true, + }, + placeholder: "8099", + type: "number", + }, + { + name: "db_params.schema", + label: "schema", + rules: { + required: false, + }, + placeholder: "default", + type: "text", + }, + ], + duckdb: [ + { + name: "db_params.database", + label: "database_file_path", + rules: { + required: true, + }, + placeholder: "/path/to/database.duckdb or md:database_name", + type: "text", + }, + ], athena: [ { name: "db_params.awsKey", diff --git a/src/mocks/members.ts b/src/mocks/members.ts index 5a31cbca..f8e5cf8d 100644 --- a/src/mocks/members.ts +++ b/src/mocks/members.ts @@ -2,7 +2,7 @@ export const membersMock = [ { id: "1", displayName: "Ivan Fokeev1", - email: "mail@synmetrix1.com", + email: "mail@fraios.com1.com", role: { id: 1, name: "Owner", @@ -11,7 +11,7 @@ export const membersMock = [ { id: "2", displayName: "Ivan Fokeev2", - email: "mail@synmetrix2.com", + email: "mail@fraios.com2.com", role: { id: 1, name: "Owner", @@ -20,7 +20,7 @@ export const membersMock = [ { id: "3", displayName: "Ivan Fokeev3", - email: "mail@synmetrix3.com", + email: "mail@fraios.com3.com", role: { id: 1, name: "Owner", @@ -29,7 +29,7 @@ export const membersMock = [ { id: "4", displayName: "Ivan Fokeev4", - email: "mail@synmetrix4.com", + email: "mail@fraios.com4.com", role: { id: 1, name: "Owner", @@ -38,7 +38,7 @@ export const membersMock = [ { id: "5", displayName: "Ivan Fokeev5", - email: "mail@synmetrix5.com", + email: "mail@fraios.com5.com", role: { id: 1, name: "Owner", @@ -47,7 +47,7 @@ export const membersMock = [ { id: "6", displayName: "Ivan Fokeev6", - email: "mail@synmetrix6.com", + email: "mail@fraios.com6.com", role: { id: 1, name: "role", diff --git a/src/mocks/request.ts b/src/mocks/request.ts index 35812eec..900b1aff 100644 --- a/src/mocks/request.ts +++ b/src/mocks/request.ts @@ -1,6 +1,6 @@ export const request = { id: "2e0eb16a-b569-45a9-9fc2-0fbbb3b015df-span-1", - path: "/Synmetrixjs/datasources/v1/load", + path: "/fraios/datasources/v1/load", duration: 450, startTime: "2023-06-15 20:08:09.915", endtTime: "2023-06-15 20:08:10.365", diff --git a/src/pages/AdminMemberProperties/index.tsx b/src/pages/AdminMemberProperties/index.tsx new file mode 100644 index 00000000..eba2ef56 --- /dev/null +++ b/src/pages/AdminMemberProperties/index.tsx @@ -0,0 +1,316 @@ +import { useEffect, useState } from "react"; +import { + Card, + Table, + Button, + Modal, + Form, + Input, + Space, + Typography, + Select, + message, + Tag, + Popconfirm, +} from "antd"; +import { useMutation, useQuery } from "urql"; + +import usePortalAdmin from "@/hooks/usePortalAdmin"; +import CurrentUserStore from "@/stores/CurrentUserStore"; + +const { Title, Text } = Typography; + +const LIST_ALL_TEAMS = ` + mutation ListAllTeams($limit: Int, $offset: Int) { + list_all_teams(limit: $limit, offset: $offset) { + teams { + id + name + member_count + } + total + } + } +`; + +const TEAM_MEMBERS_ADMIN = ` + query TeamMembersAdmin($team_id: uuid!) { + members(where: { team_id: { _eq: $team_id } }) { + id + user_id + properties + user { + display_name + account { + email + } + } + member_roles { + team_role + } + } + } +`; + +const UPDATE_MEMBER_PROPERTIES = ` + mutation UpdateMemberProperties($member_id: uuid!, $properties: jsonb!) { + update_member_properties(member_id: $member_id, properties: $properties) { + success + } + } +`; + +interface MemberInfo { + id: string; + user_id: string; + properties: Record; + user: { + display_name: string | null; + account: { email: string } | null; + }; + member_roles: { team_role: string }[]; +} + +interface TeamOption { + id: string; + name: string; + member_count: number; +} + +const AdminMemberProperties: React.FC = () => { + const { isPortalAdmin } = usePortalAdmin(); + const { currentTeam } = CurrentUserStore(); + const [teams, setTeams] = useState([]); + const [selectedTeamId, setSelectedTeamId] = useState(null); + const [editingMember, setEditingMember] = useState(null); + const [modalOpen, setModalOpen] = useState(false); + const [form] = Form.useForm(); + + const [, listTeams] = useMutation(LIST_ALL_TEAMS); + const [, updateProperties] = useMutation(UPDATE_MEMBER_PROPERTIES); + + const [membersResult, reexecuteMembers] = useQuery({ + query: TEAM_MEMBERS_ADMIN, + variables: { team_id: selectedTeamId }, + pause: !selectedTeamId, + }); + + const fetchTeams = async () => { + const res = await listTeams({ limit: 200, offset: 0 }); + const data = res.data?.list_all_teams; + if (data) { + setTeams(data.teams); + } + }; + + useEffect(() => { + if (isPortalAdmin) fetchTeams(); + }, [isPortalAdmin]); + + useEffect(() => { + // Default to the user's active team once team options are available. + // Keep manual selection untouched. + if (selectedTeamId || teams.length === 0) return; + const currentTeamId = currentTeam?.id; + if (currentTeamId && teams.some((team) => team.id === currentTeamId)) { + setSelectedTeamId(currentTeamId); + return; + } + setSelectedTeamId(teams[0].id); + }, [teams, currentTeam?.id, selectedTeamId]); + + if (!isPortalAdmin) { + return ( + + Access denied. Portal admin required. + + ); + } + + const members: MemberInfo[] = membersResult.data?.members || []; + + const handleEdit = (member: MemberInfo) => { + setEditingMember(member); + const props = member.properties || {}; + const entries = Object.entries(props).map(([key, value]) => ({ + key, + value: typeof value === "string" ? value : JSON.stringify(value), + })); + form.setFieldsValue({ + properties: entries.length > 0 ? entries : [{ key: "", value: "" }], + }); + setModalOpen(true); + }; + + const handleSave = async () => { + if (!editingMember) return; + const values = form.getFieldsValue(); + const properties: Record = {}; + (values.properties || []).forEach( + (entry: { key: string; value: string }) => { + if (entry.key) { + properties[entry.key] = entry.value || null; + } + } + ); + + const res = await updateProperties({ + member_id: editingMember.id, + properties, + }); + + if (res.data?.update_member_properties?.success) { + message.success("Member properties updated"); + setModalOpen(false); + reexecuteMembers({ requestPolicy: "network-only" }); + } else { + message.error("Failed to update member properties"); + } + }; + + const columns = [ + { + title: "Name", + key: "name", + render: (_: any, record: MemberInfo) => + record.user?.display_name || + record.user?.account?.email || + record.user_id, + }, + { + title: "Email", + key: "email", + render: (_: any, record: MemberInfo) => + record.user?.account?.email || "-", + }, + { + title: "Role", + key: "role", + render: (_: any, record: MemberInfo) => + record.member_roles?.[0]?.team_role || "unknown", + }, + { + title: "Properties", + key: "properties", + render: (_: any, record: MemberInfo) => { + const props = record.properties || {}; + return ( + + {Object.entries(props).map(([key, value]) => ( + + {key}: {String(value)} + + ))} + + ); + }, + }, + { + title: "Actions", + key: "actions", + render: (_: any, record: MemberInfo) => ( + + ), + }, + ]; + + return ( + + Member Properties + + Manage properties for team members. Properties are used for per-member + data access controls. + + +
+
+ )} + + setModalOpen(false)} + width={600} + > +
+ + {(fields, { add, remove }) => ( + <> + {fields.map(({ key, name, ...restField }) => ( + + + + + + + + remove(name)} + > + + + + ))} + + + )} + + +
+ + ); +}; + +export default AdminMemberProperties; diff --git a/src/pages/AdminQueryRules/index.tsx b/src/pages/AdminQueryRules/index.tsx new file mode 100644 index 00000000..ac1c561f --- /dev/null +++ b/src/pages/AdminQueryRules/index.tsx @@ -0,0 +1,280 @@ +import { useState } from "react"; +import { + Card, + Table, + Button, + Modal, + Form, + Input, + Select, + Space, + Typography, + message, + Popconfirm, +} from "antd"; +import { useMutation, useQuery } from "urql"; + +import usePortalAdmin from "@/hooks/usePortalAdmin"; + +const { Title, Text } = Typography; + +const QUERY_RULES = ` + query QueryRewriteRules { + query_rewrite_rules(order_by: { cube_name: asc }) { + id + cube_name + dimension + property_source + property_key + operator + created_at + updated_at + } + } +`; + +const MANAGE_RULE = ` + mutation ManageQueryRewriteRule( + $action: String! + $id: uuid + $cube_name: String + $dimension: String + $property_source: String + $property_key: String + $operator: String + ) { + manage_query_rewrite_rule( + action: $action + id: $id + cube_name: $cube_name + dimension: $dimension + property_source: $property_source + property_key: $property_key + operator: $operator + ) { + success + rule_id + } + } +`; + +interface Rule { + id: string; + cube_name: string; + dimension: string; + property_source: string; + property_key: string; + operator: string; + created_at: string; + updated_at: string; +} + +const AdminQueryRules: React.FC = () => { + const { isPortalAdmin } = usePortalAdmin(); + const [modalOpen, setModalOpen] = useState(false); + const [editingRule, setEditingRule] = useState(null); + const [form] = Form.useForm(); + + const [rulesResult, reexecuteRules] = useQuery({ query: QUERY_RULES }); + const [, manageRule] = useMutation(MANAGE_RULE); + + if (!isPortalAdmin) { + return ( + + Access denied. Portal admin required. + + ); + } + + const rules: Rule[] = rulesResult.data?.query_rewrite_rules || []; + + const handleAdd = () => { + setEditingRule(null); + form.resetFields(); + form.setFieldsValue({ operator: "equals", property_source: "team" }); + setModalOpen(true); + }; + + const handleEdit = (rule: Rule) => { + setEditingRule(rule); + form.setFieldsValue({ + cube_name: rule.cube_name, + dimension: rule.dimension, + property_source: rule.property_source, + property_key: rule.property_key, + operator: rule.operator, + }); + setModalOpen(true); + }; + + const handleDelete = async (ruleId: string) => { + const res = await manageRule({ action: "delete", id: ruleId }); + if (res.data?.manage_query_rewrite_rule?.success) { + message.success("Rule deleted"); + reexecuteRules({ requestPolicy: "network-only" }); + } else { + message.error("Failed to delete rule"); + } + }; + + const handleSave = async () => { + const values = await form.validateFields(); + + const action = editingRule ? "update" : "create"; + const variables = { + action, + ...(editingRule ? { id: editingRule.id } : {}), + ...values, + }; + + const res = await manageRule(variables); + if (res.data?.manage_query_rewrite_rule?.success) { + message.success(editingRule ? "Rule updated" : "Rule created"); + setModalOpen(false); + reexecuteRules({ requestPolicy: "network-only" }); + } else { + message.error(`Failed to ${action} rule`); + } + }; + + const columns = [ + { + title: "Table", + dataIndex: "cube_name", + key: "cube_name", + }, + { + title: "Column", + dataIndex: "dimension", + key: "dimension", + }, + { + title: "Source", + dataIndex: "property_source", + key: "property_source", + }, + { + title: "Property Key", + dataIndex: "property_key", + key: "property_key", + }, + { + title: "Operator", + dataIndex: "operator", + key: "operator", + }, + { + title: "Actions", + key: "actions", + render: (_: any, record: Rule) => ( + + + handleDelete(record.id)} + > + + + + ), + }, + ]; + + return ( + + +
+ + Query Rewriting Rules + + + Rules map team/member properties to WHERE clause filters on tables. + Any cube using the matching dimension gets filtered. Changes take + effect within 60 seconds. + +
+ +
+ +
+ + setModalOpen(false)} + width={500} + > +
+ + + + + value && value.includes(".") + ? Promise.reject("Use short name only (no dots)") + : Promise.resolve(), + }, + ]} + > + + + + + + +
`${t} teams`, + }} + /> + + setModalOpen(false)} + width={600} + > + + + {(fields, { add, remove }) => ( + <> + {fields.map(({ key, name, ...restField }) => ( + + + + + + + + remove(name)} + > + + + + ))} + + + )} + + + + + ); +}; + +export default AdminTeamProperties; diff --git a/src/pages/Callback/index.module.less b/src/pages/Callback/index.module.less index 1d19715b..72277884 100644 --- a/src/pages/Callback/index.module.less +++ b/src/pages/Callback/index.module.less @@ -1,5 +1,5 @@ .wrapper { svg { - fill: #a31bcb; + fill: #4a7faa; } } diff --git a/src/pages/Callback/index.tsx b/src/pages/Callback/index.tsx index aab4b736..efc8fec2 100644 --- a/src/pages/Callback/index.tsx +++ b/src/pages/Callback/index.tsx @@ -1,57 +1,24 @@ -import { Result } from "antd"; -import { useTranslation } from "react-i18next"; +import { Result, Spin } from "antd"; -import { EXPLORE } from "@/utils/constants/paths"; import BasicLayout from "@/layouts/BasicLayout"; -import AuthTokensStore from "@/stores/AuthTokensStore"; -import Button from "@/components/Button"; -import useLocation from "@/hooks/useLocation"; -import { fetchRefreshToken } from "@/hooks/useAuth"; +import { EXPLORE } from "@/utils/constants/paths"; import s from "./index.module.less"; const Callback: React.FC = () => { - const { t } = useTranslation(["callback"]); - const [error, setError] = useState(false); - const { setAuthData, cleanTokens } = AuthTokensStore(); - const [location, setLocation] = useLocation(); - const { refresh_token } = location.query; - - const onCallback = async () => { - const result = await fetchRefreshToken(refresh_token); - - if (result.error) { - setError(true); - } else { - cleanTokens(); - setAuthData({ - accessToken: result.jwt_token, - refreshToken: result.refresh_token, - }); - setLocation(EXPLORE); - } - }; - useEffect(() => { - onCallback(); + // The auth callback is now handled server-side by the Actions service. + // If the user lands here, redirect to the main app. + window.location.href = EXPLORE; }, []); return ( setLocation(EXPLORE)} - > - {t("action")} - , - ]} + icon={} + title="Authenticating..." + subTitle="Please wait while we complete sign-in." /> ); diff --git a/src/pages/DataSources/index.tsx b/src/pages/DataSources/index.tsx index 87ecacd3..034d12f2 100644 --- a/src/pages/DataSources/index.tsx +++ b/src/pages/DataSources/index.tsx @@ -1,7 +1,16 @@ -import { Col, Dropdown, Row, Space, Spin } from "antd"; +import { + Col, + Dropdown, + Modal as AntModal, + Row, + Select, + Space, + Spin, + message, +} from "antd"; import { SettingOutlined } from "@ant-design/icons"; import { useResponsive } from "ahooks"; -import { useEffect } from "react"; +import { useEffect, useState } from "react"; import { useParams } from "@vitjs/runtime"; import { useTranslation } from "react-i18next"; @@ -13,13 +22,18 @@ import PageHeader from "@/components/PageHeader"; import formatTime from "@/utils/helpers/formatTime"; import DataSourceTag from "@/components/DataSourceTag"; import ConfirmModal from "@/components/ConfirmModal"; -import { useDeleteDataSourceMutation } from "@/graphql/generated"; +import { + useDeleteDataSourceMutation, + useCopyDatasourceMutation, +} from "@/graphql/generated"; import useCheckResponse from "@/hooks/useCheckResponse"; import useLocation from "@/hooks/useLocation"; import useOnboarding from "@/hooks/useOnboarding"; +import usePortalAdmin from "@/hooks/usePortalAdmin"; import CurrentUserStore from "@/stores/CurrentUserStore"; import DataSourceStore from "@/stores/DataSourceStore"; import { Roles } from "@/types/team"; +import type { Team } from "@/types/team"; import type { DataSource, DataSourceInfo, @@ -43,6 +57,10 @@ interface DataSourcesProps { onEdit?: (id: string) => void; onDelete?: (id: string) => void; onGenerate?: (id: string) => void; + onCopyToTeam?: (datasourceId: string, targetTeamId: string) => void; + isPortalAdmin?: boolean; + allTeams?: Team[]; + currentTeamId?: string; } export const DataSources = ({ @@ -58,12 +76,29 @@ export const DataSources = ({ onDelete = () => {}, onFinish = () => {}, onGenerate = () => {}, + onCopyToTeam, + isPortalAdmin = false, + allTeams = [], + currentTeamId, }: DataSourcesProps) => { const { t } = useTranslation(["settings", "pages"]); const [, setLocation] = useLocation(); const { setStep, clean, setIsOnboarding } = DataSourceStore(); const responsive = useResponsive(); + const [copyModalDs, setCopyModalDs] = useState(null); + const [targetTeamId, setTargetTeamId] = useState(null); + + const otherTeams = allTeams.filter((tm) => tm.id !== currentTeamId); + + const handleCopyConfirm = () => { + if (copyModalDs && targetTeamId && onCopyToTeam) { + onCopyToTeam(copyModalDs, targetTeamId); + } + setCopyModalDs(null); + setTargetTeamId(null); + }; + const onOpen = () => { setIsOnboarding(true); setLocation(`${SOURCES}/new`); @@ -103,6 +138,13 @@ export const DataSources = ({ label: t("common:words.edit"), onClick: () => dataSource.id && onEdit(dataSource.id), }, + isPortalAdmin && + otherTeams.length > 0 && { + key: "copy", + label: t("common:words.copy_to_team", "Copy to team"), + onClick: () => + dataSource.id && setCopyModalDs(dataSource.id), + }, { key: "generate", label: t("common:words.generate_models"), @@ -124,7 +166,7 @@ export const DataSources = ({ ), }, - ], + ].filter(Boolean) as any[], }} > @@ -232,13 +274,44 @@ export const DataSources = ({ shadow={false} /> + + {isPortalAdmin && ( + { + setCopyModalDs(null); + setTargetTeamId(null); + }} + okButtonProps={{ disabled: !targetTeamId }} + > +

+ {t( + "settings:data_sources.copy_to_team_description", + "Select the team to copy this datasource connection to:" + )} +

+