gitextract_8t_4q63h/ ├── .bito/ │ └── guidelines/ │ ├── domain-invariants.txt │ ├── repo-truth-and-boundaries.txt │ └── review-posture.txt ├── .bito.yaml ├── .contentful/ │ └── vault-secrets.yaml ├── .eslintrc ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── build.yaml │ ├── check.yaml │ ├── codeql.yaml │ ├── dependabot-approve-and-request-merge.yaml │ ├── main.yaml │ └── release.yaml ├── .gitignore ├── .npmrc ├── .nvmrc ├── AGENTS.md ├── ARCHITECTURE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.json ├── bin/ │ └── contentful-export ├── catalog-info.yaml ├── docs/ │ ├── ADRs/ │ │ ├── 2016-06-20-babel-cjs-build-pipeline.md │ │ ├── 2016-06-20-semantic-release.md │ │ ├── 2024-12-02-typescript-check-only.md │ │ ├── 2025-11-14-circleci-to-github-actions.md │ │ ├── 2026-04-09-cma-v12-node-22-minimum.md │ │ └── README.md │ └── specs/ │ ├── .gitkeep │ └── README.md ├── example-config.json ├── example-config.test.json ├── lib/ │ ├── index.js │ ├── parseOptions.js │ ├── tasks/ │ │ ├── download-assets.js │ │ ├── get-space-data.js │ │ └── init-client.js │ ├── usageParams.js │ └── utils/ │ ├── embargoedAssets.js │ └── headers.js ├── package.json ├── test/ │ ├── integration/ │ │ └── export-lib.test.js │ └── unit/ │ ├── index.test.js │ ├── mocks/ │ │ ├── download-assets.js │ │ └── get-space-data.js │ ├── parseOptions.test.js │ ├── tasks/ │ │ ├── download-assets.test.js │ │ ├── get-space-data.test.js │ │ └── init-client.test.js │ └── utils/ │ ├── embargoedAssets.test.js │ └── headers.test.js ├── tsconfig.json └── types.d.ts